How do I send a model to Server Storage when server starts?

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    I want to achieve that there’s a model in a workspace that contains test purpose items,
    and because of that, I want to send it to server storage when the server starts immediately.

  2. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    I looked but I found nothing that was I looking for.

all you gotta do is make a serverscript with this in it

local m = game.Workspace.yourModelHere
m.Parent = game.ServerStorage
3 Likes

You could combine @TomskiKiller 's code with RunService’s IsStudio function to only send it in storage when you aren’t testing in studio.

if not game:GetService("RunService"):IsStudio() then
    game.Workspace.yourModelHere.Parent = game.ServerStorage
end
1 Like