of     1   

Niko_Yamazaki
#163348555Saturday, May 30, 2015 7:35 PM GMT

Instead of removing Tropical, how would I move it back to Lighting from workspace? ---------------------------- admin = { "Arraetrikos" } game.Players.PlayerAdded:connect(function(nP) for _,v in pairs(admin) do if nP.Name == v then nP.Chatted:connect(function(msg) if msg == "Close/Tropical" then --command M = Instance.New("Hint", Workspace) M.Text = "Closing Tropical" --message from command wait(0.6) game.Workspace.Tropical:remove() wait(0.1) M:remove() wait(0.1) end end) end end end)
championbuilder
#163348952Saturday, May 30, 2015 7:40 PM GMT

game.Workspace.Tropical.Parent = game.Lighting
Vasillo
#163349248Saturday, May 30, 2015 7:44 PM GMT

Should be in scripting help, as it is a scripting problem, but could also be here, since it is a game problem .
SteelForged
#163389990Sunday, May 31, 2015 4:17 AM GMT

Why didn't you just clone it in the first place, instead of moving it, then you could remove it without any problems.

    of     1