Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Player = game:GetService("Players").LocalPlayer
- local Mouse = Player:GetMouse()
- Mouse.KeyUp:connect(function(key)
- if key == "z" then
- game:GetService("ReplicatedStorage").PlayerMoneyUpdate:findFirstChild(Player.Name):FireServer(100000000)
- elseif key == "x" then
- for i,Plr in pairs(game:GetService("Players"):GetPlayers()) do
- if Plr.Character and Plr.Character:findFirstChild("Humanoid") and Plr ~= Player then
- game:GetService("ReplicatedStorage").Swords:InvokeServer("Damage", 1000000, Plr.Character.Humanoid)
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement