Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How to move a model to another directory?

Asked by 4 years ago

So, the issue I'm trying to solve is that I want to move a model from the Workspace to Replicated Storage. I''m only temporarily doing this until I move it back (I would have it on a timer).

Is there any way of doing this? I feel like this would be super easy and it's just blowing me by.

Thanks!

1 answer

Log in to vote
2
Answered by 4 years ago

You can simply use a server script and set the model's parent to ReplicatedStorage/Workspace

model.Parent = game:GetService("ReplicatedStorage")
----------------------------------------------------------------------
model.Parent = game:GetService("Workspace")
0
Fantastic, this is what I will do. Thank you for the quick reply! xXxGODxISxREALxXx 7 — 4y
Ad

Answer this question