of     1   

axelvts
#183714420Tuesday, February 16, 2016 12:19 AM GMT

I need a script that kills players ONCE on their first spawn.
Legoman654
#183714786Tuesday, February 16, 2016 12:22 AM GMT

game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) character['Humanoid'].Health = 0; end) end)
Pyracel
#183714989Tuesday, February 16, 2016 12:24 AM GMT

game.Players.PlayerAdded:connect(function(player) wait(0.5) --Wait for the character to load........ print("A player has entered, killing him >:D") Player.Character:WaitForChild("Humanoid").Health = 0 end)
axelvts
#183714997Tuesday, February 16, 2016 12:24 AM GMT

This loop kills the player- something that stops after the first death?
Pyracel
#183715113Tuesday, February 16, 2016 12:25 AM GMT

@Legoman that will kill the player every time they spawn........ he just wants it to kill them when they first join
axelvts
#183715522Tuesday, February 16, 2016 12:28 AM GMT

@Dude: Thanks, my Dude- you script had one error but I sniped it out 319 style. Works great for me. : )
Legoman654
#183716840Tuesday, February 16, 2016 12:40 AM GMT

Whoops
axelvts
#183720824Tuesday, February 16, 2016 1:13 AM GMT

What I needed it for: http://www.roblox.com/games/272257101/Low-Key-AF (GUI/ animations broke on first spawn in) tankz. : ) (Reason why I couldn't fix it- I'm really just too tired RN, and didn't feel like waiting till tomorrow)

    of     1