Advertisement
idontpostcracks

Noclip Bypass

Apr 15th, 2022
911
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.64 KB | None | 0 0
  1. --r115 noclip bypass new roblox anti-cheat
  2. local plr = game.Players.LocalPlayer
  3. --noclip script starts here.
  4. if plr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  5.     getgenv().r15noclip = true
  6.                 game:GetService("RunService").Stepped:Connect(function()
  7. if getgenv().r15noclip == true then
  8.     Clip = false
  9.     if Clip == false and plr.Character ~= nil then
  10.             for i,v in pairs(plr.Character:GetDescendants()) do
  11.                 if v:IsA("BasePart") and v.CanCollide == true and v.Name ~= floatName then
  12.                     v.CanCollide = false
  13.                 end
  14.             end
  15.     end
  16. end
  17. end)
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement