top = game.Workspace.PandorasBox.Top
Clickdetector = Instance.new ("ClickDetector",top)
function onClick(hit)
if hit.Name == "milliondollarmans" the
top.Transparency = 1
wait(2)
for _,v in pairs(game.Players:GetPlayers()) do
v:Kick()
end
end
end
Clickdetector.MouseClick:Connect(onClick)
|