Advertisement
Altair_Studios

[ROBLOX] [FE] Noclip Script

Nov 3rd, 2018
20,308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. --I do not own this script
  2. local noclip = true
  3. char = game.Players.LocalPlayer.Character
  4. while true do
  5. if noclip == true then
  6. for _,v in pairs(char:children()) do
  7. pcall(function()
  8. if v.className == "Part" then
  9. v.CanCollide = false
  10. end
  11. end)
  12. end
  13. end
  14. game:service("RunService").Stepped:wait()
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement