Advertisement
rexscripts

Car Crash Simulator script – (MAX SPEED)

Mar 6th, 2022
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. local findCar = workspace['Cars']:FindFirstChild(game.Players.LocalPlayer.Name.."s_Car")
  2.  
  3. local newSettings = {
  4. ['BoostAmount'] = 30,
  5. ['MaxSpeed'] = 999,
  6. ['Accel'] = 5
  7. }
  8.  
  9. local conf = findCar['Config']
  10. conf.BoostAmount.Value = newSettings['BoostAmount']
  11. conf.MaxSpeed.Value = newSettings['MaxSpeed']
  12. conf.Accel.Value = newSettings['Accel']
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement