📜  取消锚定部分 roblox 脚本 - 任何代码示例

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

代码示例1
// Put this on a part

script.Parent.Touched:Connect(function(moo)
    if moo.Parent:findFirstChild("Humanoid") then
        script.Parent.Anchor = false
    end
)