Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. local player=game.Players.LocalPlayer
  2. local mouse = player:GetMouse()
  3.  
  4. local bodythurst=Instance.new("BodyThrust", player.Character.HumanoidRootPart)
  5.  
  6. local speedy=false
  7. mouse.KeyDown:connect(function(key)
  8. if key:byte() == 48 then
  9. bodythurst.force=Vector3.new(0,0,-4000)
  10. end end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement