Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can i make the character go through objects?

Asked by
Echtic 128
5 years ago

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?

1 answer

Log in to vote
0
Answered by 5 years ago

hope this helps, make it a GUI if you want,

something like,

script.parent.MouseButton1Down:ConnectFunction()

01noclip = false
02game:GetService('RunService').Stepped:connect(function()
03if noclip then
04game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
05end
06end)
07plr = game.Players.LocalPlayer
08mouse = plr:GetMouse()
09mouse.KeyDown:connect(function(key)
10 
11if key == "e" then
12noclip = not noclip
13game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
14end
15end)
16print('Loaded')
17print('Press "E" to noclip')

end)

Ad

Answer this question