of     1   

JiggIypuffs
#156963385Sunday, March 01, 2015 4:07 AM GMT

Can someone help me make a kick-on-death script, That shows a Gui-on-death aswell? Thanks. ~Forum Jigglypuff
JiggIypuffs
#156986996Sunday, March 01, 2015 3:00 PM GMT

b1 ~Forum Jigglypuff
InternInternetIdiot
#156989170Sunday, March 01, 2015 3:46 PM GMT

That is the single most messed up thing I've ever heard of Made this on the spot so :/ Local script in the backpack while true do if script.Parent.Parent.Character.Humanoid.Health == 0 then script.Parent.Parent:remove() end wait(3) end I'm blue I'm in need of a guy, If I were green I would die, I repeat I would die, I got more apple pie, Bacon I fry.
JiggIypuffs
#157018139Sunday, March 01, 2015 10:22 PM GMT

while true do if script.Parent.Parent.Character.Humanoid.Health == 0 then script.Parent.Parent:Destroy() end wait(3) end Destroy is better than remove. I'll reply if it works in a sec. ~Forum Jigglypuff
chimmihc
#157018434Sunday, March 01, 2015 10:26 PM GMT

game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(char) char:WaitForChild("Humanoid").Died:connect(function() -- show Gui wait(3) player:Kick() end) end) end)

    of     1