Meliodas0_0

carspeed jailbreak

Jul 26th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. for i,v in pairs(workspace.Vehicles:GetDescendants()) do
  2. if v:IsA'StringValue' then
  3. if v.Value == game:service'Players'.LocalPlayer.Name then
  4. car = v.Parent.Parent
  5. end
  6. end
  7. end
  8. lp = game:service'Players'.LocalPlayer
  9. mouse = lp:GetMouse()
  10. mouse.KeyDown:Connect(function(key)
  11. if key == 'w' or key == 'W' then
  12. W = true
  13. end
  14. end)
  15. mouse.KeyUp:Connect(function(key)
  16. if key == 'w' or key == 'W' then
  17. W = false
  18. end
  19. end)
  20. while wait() do
  21. if _G.StopSpeed then _G.StopSpeed = false break end
  22. if W then
  23. car.Model.Body.Velocity = car.Model.Body.Velocity*1.015
  24. end
  25. end
Add Comment
Please, Sign In to add comment