📜  roblox humanoid 死了 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:50.488000             🧑  作者: Mango

代码示例2
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)