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.
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.
- Are you using
script
orlocalscript
- 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.
- Local, i wasent sure.
- 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
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.
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â.
Make sure this is set to true.
wait() should not affect any action that is going through server-sided scripts am I not correct?
Is the thing you want to move named âModelâ?