Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --r115 noclip bypass new roblox anti-cheat
- local plr = game.Players.LocalPlayer
- --noclip script starts here.
- if plr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
- getgenv().r15noclip = true
- game:GetService("RunService").Stepped:Connect(function()
- if getgenv().r15noclip == true then
- Clip = false
- if Clip == false and plr.Character ~= nil then
- for i,v in pairs(plr.Character:GetDescendants()) do
- if v:IsA("BasePart") and v.CanCollide == true and v.Name ~= floatName then
- v.CanCollide = false
- end
- end
- end
- end
- end)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement