How to move a model without using PrimaryPart?

Try this:

   Model = Script.Parent -- Make this your model's path
   While true do
      Model:TranslateBy(Vector3.New(0,0,0.1)) -- Change the Vector3 value to match with way you want it to go
   end()

For more info on Model:TranslateBy() :
Model:TranslateBy (roblox.com)

1 Like

Actually, I will just use Pivot. :grinning: