It is not working for me
p = game.Players.LocalPlayer.Character:GetChildren() game.Players.LocalPlayer.Character:GetChildren() do p.CanCollide = true end
It is only the torso that collides, try this:
player = game.Players.LocalPlayer while true do —whatever loop you want player.Character.Torso.CanCollide = false wait(1) player.Character.Torso.CanCollide = true wait(1) end
Basically change the canCollide property of Torso. You dont need to chabge the other stuff