Hello I was tasked with making an AI racing car but its not working at all on a simpler scale it works fine but when the code is added to a complex model it dos not move
here is the code
local seat = script.Parent.DriveSeat
script.Parent.body.Touched:Connect(function(hitturn)
if hitturn.Name == “Turn” then
print(“Turn”)
seat.Steer = 1
wait(1.45)
seat.Steer = 0
end
end)
I have been trying I made a network for the car but for the model I have it will not work for an y other model it will work except the one I want it to work on