Advertisement
C-H-4-0-S

Supergui

Apr 25th, 2024
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.77 KB | None | 0 0
  1. local Library = loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
  2.  
  3. local Window = Library:NewWindow("Arams Scripts")
  4.  
  5. local Cheats = Window:NewSection("Player")
  6.  
  7. Cheats:CreateButton("Speed Toggle", function()
  8. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 125
  9. end)
  10.  
  11. Cheats:CreateButton("Speed Untoggle", function()
  12. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  13. end)
  14.  
  15. Cheats:CreateButton("JumpPower Toggle", function()
  16. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 250
  17. end)
  18.  
  19. Cheats:CreateButton("JumpPower Untoggle", function()
  20. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  21. end)
  22.  
  23. Cheats:CreateButton("God Mode", function()
  24. -- when you reset make sure to re-execute this or just make this execute in a loop
  25. for i,v in next, game:GetService("Players").LocalPlayer.Character:GetDescendants() do
  26. if v:IsA("BasePart") and v.Name ~="HumanoidRootPart" then
  27. game:GetService("RunService").Heartbeat:connect(function()
  28. v.Velocity = Vector3.new(-30,0,0)
  29. end)
  30. end
  31. end
  32.  
  33. local player = game.Players.LocalPlayer
  34. local character1 = player.Character
  35. local mouse = player:GetMouse()
  36.  
  37. local fakebody = Instance.new("Part", character1)
  38. fakebody.Transparency = 1
  39. fakebody.Anchored = true
  40. fakebody.CanCollide = false
  41. fakebody.Position = character1.Head.Position
  42. fakebody.Name = "FPart"
  43. wait()
  44.  
  45. _G.ReanimationType = "PDeath" --PDeath, Fling, Simple
  46. _G.Velocity = Vector3.new(36,0,0)
  47. _G.FlingBlock = false
  48. _G.FlingBlockTransparency = 1
  49. _G.HighlightFlingBlock = true
  50. _G.FlingBlockPosition = "FPart"
  51. _G.HighlightFlingBlockColor = Color3.fromRGB(255,0,0)
  52.  
  53. loadstring(game:HttpGet("https://raw.githubusercontent.com/GelatekWasTaken/Reanimation.lua/main/Main/Main.lua"))()
  54. end)
  55.  
  56. Cheats:CreateButton("InfJump", function()
  57. local InfiniteJumpEnabled = true
  58. game:GetService("UserInputService").JumpRequest:connect(function()
  59. if InfiniteJumpEnabled then
  60. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  61. end
  62. end)
  63. end)
  64.  
  65. Cheats:CreateButton("Settings Gui", function()
  66. loadstring(game:HttpGet("https://pastebin.com/raw/RD5xCK6k"))()
  67. end)
  68.  
  69. local Cheats = Window:NewSection("Antifling")
  70.  
  71. Cheats:CreateButton("Antifling by aram", function()
  72. loadstring(game:HttpGet("https://raw.githubusercontent.com/Anklh/Antifling-By-aram/main/Antifling%20By%20Aram"))()
  73. end)
  74.  
  75. local Cheats = Window:NewSection("Guis")
  76.  
  77.  
  78. Cheats:CreateButton("Fling Button", function()
  79. loadstring(game:HttpGet("https://pastebin.com/raw/zRPwmamu"))()
  80. end)
  81.  
  82. Cheats:CreateButton("Ghosthub", function()
  83. loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-Ghost-Hub-9730"))()
  84. end)
  85.  
  86. Cheats:CreateButton("illusion", function()
  87. loadstring(game:HttpGet("https://raw.githubusercontent.com/0Ben1/fe/main/obf_11l7Y131YqJjZ31QmV5L8pI23V02b3191sEg26E75472Wl78Vi8870jRv5txZyL1.lua.txt"))()
  88. end)
  89.  
  90. Cheats:CreateButton("Fly gui", function()
  91. loadstring(game:HttpGet("https://pastefy.app/M0N30XXG/raw"))();
  92.  
  93. Cheats:CreateButton("Noclip", function()
  94. loadstring(game:HttpGet("https://pastebin.com/raw/B5xRxTnk",true))()
  95. end)
  96.  
  97. local Cheats = Window:NewSection("Guis 2")
  98.  
  99. Cheats:CreateButton("Scriptmaster v3", function()
  100. loadstring(game:HttpGet("https://pastebin.com/raw/gBPEUrer"))()
  101. end)
  102.  
  103. Cheats:CreateButton("Swordgui", function()
  104. loadstring(game:HttpGet("https://pastebin.com/raw/G3qXczEb"))()
  105. end)
  106.  
  107. local Cheats = Window:NewSection("Visual")
  108.  
  109. Cheats:CreateButton("Rainbow Chat", function()
  110. loadstring(game:HttpGet("https://pastebin.com/raw/Xuf6hvJW"))()
  111. end)
  112.  
  113. local Cheats = Window:NewSection("Seeable")
  114.  
  115. Cheats:CreateButton("Head Movement", function()
  116. loadstring(game:HttpGet("https://pastebin.com/raw/GTiddvZc"))()
  117. end)
  118.  
  119.  
  120.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement