local rs = game:GetService("RunService") local plrs = game.Players local plr = plrs.LocalPlayer local char = plr.Character or plr.CharacterAdded:Wait() getgenv().NoclipEnabled = true -- change this to toggle true = noclip, false = clip -- open source noclip very pro -- a -- noclip by proohio -- got bored :) if getgenv().NoclipEnabled then getgenv().NoclipConnection = rs.Stepped:Connect(function() if char then for i, v in pairs(char:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end end) elseif getgenv().NoclipConnection then getgenv().NoclipConnection:Disconnect() if char then for i, v in pairs(char:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = true end end end end