Answers for "roblox player died"

CSS
4

roblox player died

game:GetService('Players').PlayerAdded:Connect(function(player)
	player.CharacterAdded:Connect(function(character)
		character:WaitForChild("Humanoid").Died:Connect(function()
			print(player.Name .. " has died!")
		end)
	end)
end)
Posted by: Guest on January-13-2021

Browse Popular Code Answers by Language