MaxproGlitcher

blur coregui

Jul 3rd, 2026
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. local RunService = game:GetService("RunService")
  2. local GuiService = game:GetService("GuiService")
  3. local Players = game:GetService("Players")
  4.  
  5. local LocalPlayer = Players.LocalPlayer
  6. local Pause = false
  7. local Origin
  8.  
  9. RunService.RenderStepped:Connect(function()
  10. local Character = LocalPlayer.Character
  11. local RootPart = Character:FindFirstChild("HumanoidRootPart")
  12.  
  13. if RootPart then
  14. if GuiService.MenuIsOpen then
  15. if not Origin then
  16. Origin = RootPart.CFrame
  17. end
  18.  
  19. RootPart.AssemblyLinearVelocity = Vector3.new(0, 2147483648, 0)
  20.  
  21. if not Pause then
  22. Pause = true
  23. end
  24. else
  25. if Pause then
  26. RootPart.AssemblyLinearVelocity = Vector3.zero
  27. if Origin then
  28. RootPart.CFrame = Origin
  29. end
  30.  
  31. Origin = nil
  32. Pause = false
  33. end
  34. end
  35. end
  36. end)
Advertisement
Add Comment
Please, Sign In to add comment