Quick Switching vehicle physics (Drift racing / Grip racing)

Hi! Probably wont find any help but does anyone have any resources/addons i can read that might help me, i have a drift server setup but i want to implement grip/street racing as well. whats the best way for me to have it so when players enter a street race their car switches to grip driving not drift. thanks

Create two events:

AddEventHandler('ApplyStreetPhysics', function()
  -- trigger relevant natives
end)

AddEventHandler('ApplyDriftPhysics', function()
  -- trigger relevant natives
end)

When the player enters a street race, add TriggerEvent('ApplyDrictPhysics') or the other one to the executing code.

1 Like