Why does my CharacterRemoving not activate at all?
Players.PlayerAdded:Connect(function(Player)
print("Player Joined")
Player.CharacterRemoving:Connect(function(Char)
print("Character is being removed")
end)
Player.CharacterAdded:Connect(function(Char)
print(Char.Name .. " has joined with " .. Char.Humanoid.Health .. " hp")
end)
end)
I’ve used this many times but for some reason this just doesn’t activate this time around. Character Added works perfectly just not removing
local players = game.Players
players.PlayerAdded:Connect(function(Player)
print("Player Joined")
Player.CharacterRemoving:Connect(function(Char)
print("Character is being removed")
end)
Player.CharacterAdded:Connect(function(Char)
print(Char.Name .. " has joined with " .. Char.Humanoid.Health .. " hp")
end)
end)