How to change maxvelocity of Roblox's free model sports car?

https://create.roblox.com/marketplace/asset/6433323089/Sports-Car

This car is almost perfect, its just way too hard to control and goes too fast.

I looked inside it, there’s a module called chassis that seems to control the max velocity through some advanced physics. I tried changing almost every value in there and nothing was affected. But i’m certain the main script calls it and uses it to handle the speed.

I found the solution:
local car = script.Parent
local max = car:FindFirstChild(“MaxSpeed”)
local current = max:FindFirstChild(“Value”)
current.Value = 200

WHAT

was this in the chassis module?

I’m aware this is an old post however I spent a while looking through the scripts for this answer as well as many others probably will too

It’s actually really annoyingly obvious, all the configuration for this model are defined as attributes under the vehicle model

image

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.