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.
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