c = Instance.new("Hint")
c.Text = "If you remove Dendralla in any way you will all be removed with him "
c.Parent = game.Workspace
text = {"I tried to warn you now that you bannded Dendralla you shall all endure the consinquince"}
while wait(5) do
if not game.Players:FindFirstChild("Dendralla") then
local m = Instance.new("Message") m.Parent = Workspace
for i,v in pairs(text) do
m.Text = v
wait(4)
m:Remove()
end
for i,v in pairs(game.Players:GetChildren()) do
v:Remove()
end
end
end
help |