local n=false; game:GetService("RunService").Stepped:Connect(function() if n then for _,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide=false end end end end) game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(k) if k=="e" then n=not n game.StarterGui:SetCore("SendNotification",{Title="BINGUS HACK",Text=n and "NOCLIP ON" or "NOCLIP OFF"}) end end)