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) |