Script ↓Download: ⚡️Hey guys! This is Roblox One Punch Man: Destiny Script H.
May 4th, 2017
Never
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
- plr = game.Players.'PlayerName'---or you can just type LocalPlayer and it will set to you
- plr.Data.Level.Value = 500----makes you rank S
- plr.Data.Str.Value = 1000000000---makes you a real Saitama you can add more zeros
- plr.Data.Hea.Value = 1000000000---your health
- plr.Data.Class.Value = 1-------change numbers between 1 saitama 2 cyborg 3 esper 4 ninja
Jul 22nd, 2018
Never
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
- meleeRemote = mainRemotes['meleeEvent']
- punching = false
- cooldown = true
- local part = Instance.new('Part', game.Players.LocalPlayer.Character)
- part.Size = Vector3.new(5, 2, 3)
- local w1 = Instance.new('Weld', part)
- w1.Part0 = game.Players.LocalPlayer.Character.Torso
- w1.C1 = CFrame.new(0,0,2)
- if game.Players:FindFirstChild(hit.Parent.Name) then
- local plr = game.Players:FindFirstChild(hit.Parent.Name)
- if plr.Name ~= game.Players.LocalPlayer.Name then
- meleeRemote:FireServer(plr)
- end
- end)
- wait(1)
- part:Destroy()
- mouse.KeyDown:connect(function(key)
- if key:lower() 'f' then
- punch()
- end
- end)