Move Model from ServerStorage to Workspace

How would I move a MODEL from Server Storage to Workspace?

I already have using:

local ServerStorage = game:GetService("ServerStorage")
local Model = ServerStorage.Model

Model.Parent = workspace

Also, Devfourm is about helping you work out things so am not sure why you are being so rude.

1 Like

i’m not being rude, but you shouldn’t ask for scripts on the devforum…
it tells you that when you create a topic
if you do write some script, add it to your post

that script would work, by the way.

  1. Are you using script or localscript
  2. Where is the script

Still it’s probably a simple solution which am not sure about, meaning writing up to 5 line for me to help me work out a script isnt too hard.

  1. Local, i wasent sure.
  2. PlayerGui

Why ask for a script if you can write it yourself? at least try before you ask for help

Use a Script inside ServerScriptService

localscripts can’t access ServerStorage

Alright, cheers, ill try it out.

local ServerStorage = game:GetService("ServerStorage")
local Model = ServerStorage.Model

Model.Parent = workspace

put this in a script in ServerScriptService

1 Like

She wasnt being rude to you. She gave you a fact that everyone should know before posting a post.
Next time you’re asking for help, you should include your script[s] in your first post.

1 Like

Would be great if you could be kind to all of users that require help.
This forum is not about arguing with each other or telling them to “Do it themselves” straight away, there are users that want and will help no matter the problem. (not to mention that this script and its solution was simple) If you are not one of them you might just want to ignore the post.

I have, but still the same results, it doesnt come up in workspace.

Do you use normal script that i told you to use?
Also, is it in ServerScriptService?

yeah i did

ignore this

Could you eventually screenshot / record the problem? As it works fine for me.

local ServerStorage = game:GetService("ServerStorage")
local Model = ServerStorage:FindFirstChild("MyModel")

task.wait(5) -- just to wait a little, maybe this would help
local clone = Model:Clone()
clone.Parent = workspace

Tip: don’t name objects in exisiting classes’ names, such as ‘Part’.
image

Make sure this is set to true.

1 Like

wait() should not affect any action that is going through server-sided scripts am I not correct?

image

Is the thing you want to move named “Model”?