Advertisement
Guest User

dfsdfsd

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.    end
  5. end)
  6. local Plr = game:GetService("Players").LocalPlayer
  7. local Mouse = Plr:GetMouse()
  8.  
  9. Mouse.Button1Down:connect(function()
  10. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  11. if not Mouse.Target then return end
  12. Mouse.Target:Destroy()
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement