I Lost Me Legs



Where to put this script


Put this script on the part that you will touch to remove legs!

Lost Legs


local trapPart = script.Parent
local function onPartTouch(otherPart)
    otherPart:Destroy()
end
trapPart.Touched:Connect(onPartTouch)

Line by Line

Customize