Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. local vehicles = Workspace.Vehicles:getChildren()
  2. for i=1,#vehicles do
  3. if vehicles[i]:findFirstChild'owner' then
  4. if vehicles[i].owner.Value == game:GetService'Players'.LocalPlayer.Name then -- Found your vehicle
  5. vehicle = vehicles[i] -- Declares vehicle variable to your vehicle
  6. vehStats = vehicle.Handling -- Declares vehStats variable to vehicle stats folder
  7. vehStats.MaxSpeed.Value = 1000
  8. vehStats.Torque.Value = 110000
  9. vehStats.SteeringRadiusConstant.Value = 1200000000000
  10. end
  11. end
  12. end
  13. FOR CYBERCAR ONLY
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement