Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local vehicles = Workspace.Vehicles:getChildren()
- for i=1,#vehicles do
- if vehicles[i]:findFirstChild'owner' then
- if vehicles[i].owner.Value == game:GetService'Players'.LocalPlayer.Name then -- Found your vehicle
- vehicle = vehicles[i] -- Declares vehicle variable to your vehicle
- vehStats = vehicle.Handling -- Declares vehStats variable to vehicle stats folder
- vehStats.MaxSpeed.Value = 100000
- vehStats.Torque.Value = 100000
- vehStats.SteeringRadiusConstant.Value = 120000000
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement