Basically, the thing I want is a working vehicle- where the seat and everything works so it can navigate around without bugging out. I made a vehicle model and added on a VehicleSeat
to the model, however, the vehicle does NOT move and my character glitches out like this.. I worked on a Script to disable the issue, like possibly to anchor
the humanoid
to the VehicleSeat
and this is what I got:
local.character.anchor = (VehicleSeat01) wait(500000000000000000000000000000) -- Or an infinite number to block disable at all. repeat -- Just incase for some odd reason the user takes 5000000000000000000000 seconds in a Jeep. I am a weird idiot, huh? :) end
Thank you for you guys' help, it means alot to me. :)
EDIT: I FIXED THE ISSUE, HAD TO UNANCHOR THE VEHICLESEAT
Hm. Not sure that's the best solution. If you really wanted it to pause forever, you could use
wait(math.huge); -- in lua, math.huge = +infinity
I don't know what you're trying to accomplish though. Could you elaborate on what "local.character.anchor = (VehicleSeat01)" is supposed to do? Thank.