miguelscripts

JAILBREAK SPEED SCRIPT FOR SPEED

Feb 9th, 2025
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. -- I DO NOT OWN THIS SCRIPT
  2.  
  3. ---By:Unknown
  4. dir = 0
  5. gs = game.GetService
  6. gs(game,"RunService").RenderStepped:connect(function()
  7. for i,v in next,workspace.Vehicles:children() do
  8. if v.Name ~= "Heli" then
  9. if v:FindFirstChild("Engine") then
  10. local bf,cf = v.Engine:FindFirstChild("NewForce"),v:GetPrimaryPartCFrame().lookVector
  11. if not bf then
  12. bf = v.Engine:FindFirstChild("BodyForce") or v.Engine:FindFirstChild("VectorForce")
  13. if bf then
  14. bf = bf:Clone()
  15. bf.Parent = v.Engine
  16. bf.Name = "NewForce"
  17. end
  18. end
  19. if bf then
  20. local fa = 1
  21. if v.Name:lower():find("bike") then fa = .3 elseif v.Name:lower():find("bugg") then fa = .5 end
  22. if v.Seat.PlayerName.Value ~= game:GetService("Players").LocalPlayer.Name then fa = 0 end
  23. bf.Force = Vector3.new(cf.X*300000*dir*fa,0,cf.Z*300000*dir*fa)
  24. end
  25. end
  26. end
  27. end
  28. end)
  29. val = {
  30. {Enum.KeyCode.W,1};
  31. {Enum.KeyCode.S,-1};
  32. }
  33. uis = gs(game,"UserInputService")
  34. chk = function(k)
  35. for i,v in next,val do
  36. if v[1]==k.KeyCode then
  37. return v[2]
  38. end
  39. end
  40. end
  41. uis.InputBegan:connect(function(k)
  42. dir = chk(k) or dir
  43. end)
  44. uis.InputEnded:connect(function(k)
  45. if chk(k) == dir then
  46. dir = 0
  47. end
  48. end)
Advertisement
Add Comment
Please, Sign In to add comment