of     1   

ikoviron
#183538718Saturday, February 13, 2016 10:58 PM GMT

Help, this script doesn't work function onTouch(Part) local Character = Part.Parent local Humanoid = Character:FindFirstChild("Humanoid") if Humanoid then local Parts = Character:GetChildren() for i = 1, #Parts do if Parts[i].className == "Part" then Parts.Anchored = true end end end end script.Parent.Touched:connect(onTouch)
Aethex
#183541284Saturday, February 13, 2016 11:31 PM GMT

"help, this script doesn't work" tells us literally nothing but i can still understand what you want (i think) change the link "Parts.Anchored = true" to "Parts[i].Anchored = true"
ikoviron
#183542031Saturday, February 13, 2016 11:41 PM GMT

Thanks, the script worked. lol
Aethex
#183542296Saturday, February 13, 2016 11:45 PM GMT

meant "line" not "link"

    of     1