📜  当有东西碰到 lua 时杀死玩家 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:21.798000             🧑  作者: Mango

代码示例1
function onTouched(Obj)
    local h = Obj.Parent:FindFirstChild("Humanoid")
    if h then
        h.Health = 0
    end
end

script.Parent.Touched:Connect(onTouched)