Advertisement
NUKAE

Make your car go fast! vehcile sim roblox

Jan 22nd, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. veh = nil
  2. for i,v in pairs(game.Workspace.Vehicles:GetChildren()) do
  3. if v:IsA("Model") then
  4. if v.owner.Value == game.Players.LocalPlayer.Name then
  5. veh = v
  6. end
  7. end
  8. end
  9.  
  10. if veh then
  11. han = veh.Handling
  12. han.MaxSpeed.Value = 10000
  13. han.Torque.Value = 20000
  14. han.SteeringRadiusConstant.Value = 12000
  15. han.FrictionOffroad.Value = 200
  16. han.FrictionRoad.Value = 200
  17. else
  18. print("Unable to find your vehicle!")
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement