Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if noclip == true then
- noclip = false
- NoclipButton.Text = "Noclip: On"
- game:GetService('RunService').Stepped:connect(function()
- game.Players.LocalPlayer.Character.Torso.CanCollide = noclip
- game.Players.LocalPlayer.Character.Head.CanCollide = noclip
- game.Players.LocalPlayer.Character.Torso.Changed:connect(function()
- game.Players.LocalPlayer.Character.Torso.CanCollide = noclip
- game.Players.LocalPlayer.Character.Head.CanCollide = noclip
- end)
- end)
- elseif noclip == false then
- noclip = true
- NoclipButton.Text = "Noclip: Off"
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement