plem

ROBLOX NOCLIP SCRIPT LUA [2]

May 3rd, 2020
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.49 KB | None | 0 0
  1. if _G.Noclip == nil or not _G.Noclip.Connected then
  2.     lp = game:service'Players'.LocalPlayer
  3.     _G.Noclip = game:service'RunService'.Stepped:Connect(function()
  4.         lp.Character.Head.CanCollide = false
  5.         lp.Character.LowerTorso.CanCollide = false
  6.         lp.Character.UpperTorso.CanCollide = false
  7.         lp.Character.HumanoidRootPart.CanCollide = false
  8.         if lp.Character:FindFirstChild'Badge' then
  9.             lp.Character.Badge.CanCollide = false
  10.         end
  11. end)
  12. end
Add Comment
Please, Sign In to add comment