Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to stop vehicle going backwards?

Asked by 3 years ago

I'm not sure whether this is script related or not, but would anyone have an idea how to stop a VehicleSeat going backwards?

My apologies if this isn't script related.

0
y'know, by making it go forwards. sngnn 274 — 3y

1 answer

Log in to vote
0
Answered by 3 years ago

Well Sir, you can either Group the seat to the vehicle and then go into your vehicle model and Select the seat and anchor it. By doing that it wont anchor the car but anchor the seat out to the moving model. Or you can create A local script under the model in workspace And use this script: local EntireModel = workspace.Model:GetChildren()

for i,v in pairs(EntireModel) do if v:IsA("BasePart") then v.Anchored = true end

Ad

Answer this question