When I run the script, I get an error where it says that: Drive Seat is not a valid member of Model
wait(0.1) local m = script.Parent.Parent.Parent.SS.Motor local carSeat = script.Parent.Parent.Parent.Parent.Parent.Parent.DriveSeat --error script.Parent.MouseClick:connect(function(p) if m.DesiredAngle == 0 then m.DesiredAngle = -1 script.Parent.Parent.DoorOpen:Play() carSeat.Doors.RL.Value = true elseif m.DesiredAngle == -1 then m.DesiredAngle = 0 while m.CurrentAngle < 0 do wait() end script.Parent.Parent.DoorClose:Play() carSeat.Doors.RL.Value = false end end)