Advertisement
DanOnScripts

CAMERA NOCLIP

May 31st, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. if not game:IsLoaded() then
  2. game.Loaded:wait()
  3. end
  4.  
  5. local Players = game:GetService("Players")
  6. local LocalPlayer = Players.LocalPlayer
  7. local PopperClient = LocalPlayer:WaitForChild("PlayerScripts").PlayerModule.CameraModule.ZoomController.Popper
  8.  
  9. for i, v in next, getgc() do
  10. if getfenv(v).script == PopperClient and typeof(v) == "function" then
  11. for i2, v2 in next, debug.getconstants(v) do
  12. if tonumber(v2) == 0.25 then
  13. debug.setconstant(v, i2, 0)
  14. elseif tonumber(v2) == 0 then
  15. debug.setconstant(v, i2, 0.25)
  16. end
  17. end
  18. end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement