Advertisement
Guest User

rdffsd

a guest
Jul 22nd, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. game:GetService("UserInputService").InputBegan:Connect(function(key, typing)
  2.    if key.KeyCode == Enum.KeyCode.R then
  3.        game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  4. elseif game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 10
  5.    end
  6. end)
  7. local Plr = game:GetService("Players").LocalPlayer
  8. local Mouse = Plr:GetMouse()
  9.  
  10. Mouse.Button1Down:connect(function()
  11. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  12. if not Mouse.Target then return end
  13. Mouse.Target:Destroy()
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement