Im trying to teleport a car using :MoveTo() and when i do it... It teleports the care out of game.ServerStorage and into workspace, but when its in workspace the wheels fall off. Anyone know why?
Okay thanks
From what your saying, I'm guessing you didn't use :MakeJoints()
, so here is a example.
local car = game.ServerStorage.CarNameExample -- Car directory local clone = car:Clone() -- Duplicate the car, if you want it for further use. clone:MakeJoints() -- If it's unanchored, it'll fall apart without this. clone.Parent = game.Workspace -- Change's the Clone's parent.