Advertisement
Gillranveer12

Noclip Script (No Gui Or Keybind!)

Jul 11th, 2023
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.00 KB | None | 0 0
  1. local Players, Player = game:GetService("Players"), game:GetService("Players").LocalPlayer -- im trying something new with my coding
  2. getgenv().FuckYouSkid = true
  3. getgenv().NoPlatformNoclip = false -- the patched platformnoclip unpatched thanks to the two lines below credits to Panda
  4. getgenv().CanCollide = true -- basic everyday noclip
  5.  
  6. if setfflag then
  7.     setfflag("HumanoidParallelRemoveNoPhysics", "False") -- thank you panda your hot UwU
  8.     setfflag("HumanoidParallelRemoveNoPhysicsNoSimulate2", "False")
  9. end
  10.  
  11. game:GetService("RunService").Stepped:Connect(
  12.     function()
  13.         if getgenv().FuckYouSkid then
  14.             for i, v in pairs(Player.Character:GetChildren()) do
  15.                 if v:IsA("BasePart") and getgenv().CanCollide then
  16.                     v.CanCollide = false-- boring old CanCollide Right?
  17.                 elseif v:IsA("Humanoid") and getgenv().NoPlatformNoclip then
  18.                     v:ChangeState(11) -- sexy
  19.                 end
  20.             end
  21.         end
  22.     end
  23. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement