For an example, a map changer, how would I do that? I want to display a model from SS and recall it so it is visible to people
This is really simple. You just need the method :Clone() or changing of the Parent. You may connect this to chatting or buttons. I'll show it to you with the following script.
function InsertModelFromSS (modelname) if game.ServerStorage:FindFirstChild (modelname) then game.ServerStorage[modelname]:Clone ().Parent = workspace end end game.Players.PlayerAdded:connect (function (plr) plr.Chatted:connect (function (msg) InsertModelFromSS(msg) end) end) Cd = Instance.new ("ClickDetector", workspace.Baseplate) Cd.MouseClick:connect (function(plr) game.ServerStorage:GetChildren ()[math.random(1, #game.ServerStorage:GetChildren)]:Clone().Parent = workspace end)
If you have any questions, feel free to ask.