I have tried setting the CanCollide property of every single part of the r15 character to false, but the UpperTorso and LowerTorso's CanCollide properties keep getting reverted to true like they are locked, is there a way to unlock them or perhaps if there isn't is there another way to turn all of the character collisions off?
hope this helps, make it a GUI if you want,
something like,
script.parent.MouseButton1Down:ConnectFunction()
noclip = false game:GetService('RunService').Stepped:connect(function() if noclip then game.Players.LocalPlayer.Character.Humanoid:ChangeState(11) end end) plr = game.Players.LocalPlayer mouse = plr:GetMouse() mouse.KeyDown:connect(function(key) if key == "e" then noclip = not noclip game.Players.LocalPlayer.Character.Humanoid:ChangeState(11) end end) print('Loaded') print('Press "E" to noclip')
end)