null
nil
-
false
0
DIE
true
-
false
Script
--clockwork
bin = script.Parent
function onButton1Down(mouse)
local player = game.Players.LocalPlayer
if player == nil then return end
player.Character.Humanoid.Health=0
mouse.Icon = "rbxasset://textures\\ArrowCursor.png"
end
function onSelected(mouse)
mouse.Icon = "rbxasset://textures\\ArrowCursor.png"
mouse.Button1Down:connect(function() onButton1Down(mouse) end)
end
bin.Selected:connect(onSelected)
true