📌  相关文章
📜  如何在 roblox studio 2020 中添加杀戮砖 - 无论代码示例

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

代码示例1
script.Parent.Touched:Connect(function(hit)
    if hit.Parent:FindFirstChild("Humanoid") then
        hit.Parent.Humanoid.Health = 0
    end
end)