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!
You can simply use a server script and set the model's parent to ReplicatedStorage/Workspace
1 | model.Parent = game:GetService( "ReplicatedStorage" ) |
2 | ---------------------------------------------------------------------- |
3 | model.Parent = game:GetService( "Workspace" ) |