How would you make a car?

I am trying to figure out how to make a car
I cant figure out how I would make one.
I’ve tried tutorials and none of them work!

Can anyone suggest a tutorial to me or just how to do it in general?

4 Likes

I made a car and it works perfectly, I followed this tutorial, took me 20 minutes and it works perfectly

2 Likes

I created the car and yes it works but I have a question on it
As you can notice it doesn’t just move straight forward I have to turn and go backwards and stuff to make it actually move. Why is this and how do I fix it

video:

2 Likes

Can I see the script please? It may be a problem there

1 Like

Also a quick tip, if you want to add somewhat fo an acceleration, set the Chassis’s density to 4.5, if you put it higher it’s gonna be wobbly

1 Like

My chassis does not have a density option i think.
Also heres the code

local carModel = script.Parent

local seat =carModel.VehicleSeat

local backLeft = carModel["Back Left"]
local backRight = carModel["Back Right"]

local frontLeft = carModel["Front Left"]
local frontRight = carModel["Front Right"]

local steerAngle = 30
local speed = 60


seat:GetPropertyChangedSignal('Steer'):Connect(function()
	frontLeft.PartB.SteeringConstraint.TargetAngle = steerAngle * seat.Steer
	frontRight.PartB.SteeringConstraint.TargetAngle = steerAngle * seat.Steer
end)


seat:GetPropertyChangedSignal('Throttle'):Connect(function()
	frontLeft.Part.WheelConstraint.AngularVelocity = speed * seat.Steer
	frontRight.Part.WheelConstraint.AngularVelocity = speed * -seat.Steer
	
	backLeft.Part.WheelConstraint.AngularVelocity = speed * seat.Steer
	backRight.Part.WheelConstraint.AngularVelocity = speed * -seat.Steer
end)
2 Likes

@FroDev1002 Watch this Video How to make a car in blender

2 Likes

Why would I need to make it in blender?

watch the video to know @FroDev1002

I don’t know what could be wrong with your script sorry, also every part has a density option, go to CustomPhisicalProperties enable it and then there’s the Density

also why did you do carModel[“Model”] instead of carModel.Model?

1 Like

Its beyond long.
Can you please explain to me why I would make it blender so I dont have to look through the whole video

1 Like

Do you think you could give me the your car model that way I can find out what’s wrong?

1 Like

I’m not sure, I will try, but basically my car model is the one from the video, everything is the same (except for the names which I changed)

1 Like

Its worth a shot.
I got to figure it out somehow

1 Like

I think that you can make it in Blender because it can have the advantage of having less parts but still keep its complexity, and also you won’t need 1000 welds

1 Like

Ok, give me a few minutes and I will send it to you

2 Likes

The first thing that is impossible is that you are making a car in roblox studio. It is necessary in blender and roblox studio. You can make a car, but it is difficult. Keep in blender, it is easier for you.

1 Like

https://create.roblox.com/marketplace/asset/12472426016/ECVBztgdfsvabfcadfvHJKFczf?pageNumber=1&pagePosition=1&keyword=

No actually, the only thing you need is a good tutorial and nothing more, I Crater one by knowing nothing in 20 minutes