RC Car Prototype

Hello, I have just set up my RC car for roblox called Lowenherz. There are 3 other RC cars. I used @sleitnick’s How to Rig A Car tutorial and my crappy old RC car chassis. But now it is much more better. More traction, actual moving wheels, and suspension!
Here is Lowenherz

Here is a video of the RC car in action:

Car model: Re-Volt mod

And here is a demo place for it in action:

8 Likes

It’s really cool. I would like it better if the cam followed the car.

Wow! That looks so cool! Maybe add like a camera above it so it follows the car?

Yeah but I’m not too sure on how to code that.

You need to set the camera position. Maybe copy the script from the player character?

I don’t think that will work? Not

I ran into an interesting problem. For some reason the regenerate script on these cars duplicate by the amount of players. How do I stop that?

model = game.Workspace.Exceed – Change “Compressor” to the name of your model.
new = model:clone()
enabled = true
game.ReplicatedStorage.ExceedRemotes.RegenExceed.OnServerEvent:Connect(function()
if enabled then
script.Parent[“Car Ignition Startup”]:Play()
enabled = false
model:remove()
wait(0.3) – This is how long it will take to regen
model = new:clone()
model.Parent = game.Workspace
model:MakeJoints()
wait(5) – This is how long it will take for the regen button to be enabled after being used
enabled = true
end
end)

Here is an example if you want to go further:
example.rbxl (71.2 KB)