Advertisement
Honansik

X100 Clicks Clicker Madness GUI Script

Apr 5th, 2022
2,006
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 10.79 KB | None | 0 0
  1. getgenv().autoClick = false
  2. getgenv().autoRebirths = false
  3. getgenv().buyEggs = false
  4. getgenv().unlockAutoRebirth = false
  5. getgenv().unlockPetStorage = false
  6. getgenv().unlockVIP = false
  7. getgenv().unlockSpeed = false
  8. getgenv().unlockExplosiveCursors = false
  9. getgenv().unlockPets = false
  10. getgenv().autoRespawn = false
  11. getgenv().enabledSit = false
  12. getgenv().enabledRedGems = false
  13.  
  14. local p =  game.Players.LocalPlayer.Name
  15. local remotePath = game:GetService("ReplicatedStorage").Aero.AeroRemoteServices
  16. local clickMod = require(game:GetService("Players")[p].PlayerScripts.Aero.Controllers.UI.Click)
  17.  
  18. function doClick()
  19.    while getgenv().autoClick == true do  -- or while _G.autotap do
  20.            clickMod:Click()
  21.             wait()
  22.           end
  23.    end
  24. function autoRebirth(rebirthAmount)
  25.        while getgenv().autoRebirths == true do  -- or while _G.Rebirth do
  26.                   remotePath.RebirthService.BuyRebirths:FireServer(rebirthAmount)
  27.                    wait()
  28.                end
  29.           end
  30. function doBuyEggs(eggType)
  31.            while getgenv().buyEggs == true do
  32.                if not getgenv().buyEggs then
  33.                    break end
  34.                remotePath.EggService.Purchase:FireServer(eggType)
  35.                wait()              
  36.             end
  37.       end
  38. function GetExplosiveCusors()
  39. while getgenv().ExplosiveCursors == true do
  40.        clickMod:_tapToAttack()
  41.        wait()
  42.        end
  43.    end
  44. function GetSprint()
  45.    while getgenv().increaseSpeed == true do
  46.        p.Character.Humanoid.WalkSpeed = 32
  47.        wait()
  48.    end
  49. end
  50. function GetVIP()
  51.    local gamepassMod = require(game:GetService("ReplicatedStorage").Aero.Shared.Gamepasses)
  52.    gamepassMod.HasPassOtherwisePrompt = function()
  53.        return
  54.        true end
  55.    end
  56. function GetInfiniteCapacity()
  57.        local petMod = require(game:GetService("Players")[p].PlayerScripts.Aero.Controllers.UI.Pets)
  58.            setconstant(petMod.CalculatePetCapacity, 7, 10000000000000000000000) --25 to 10000000000
  59.    end
  60. function getCurrentPlayerPOS()
  61.        local plyr = game.Players.LocalPlayer
  62.            if plyr.Character then
  63.         return plyr.Character.HumanoidRootPart.Position
  64.        end
  65.        return false
  66.    end
  67.  
  68.   function teleportTO(placeCFrame)
  69.        local plyr = game.Players.LocalPlayer
  70.            if plyr.Character then
  71.                plyr.Character.HumanoidRootPart.CFrame = placeCFrame
  72.        end
  73.    end
  74.  
  75.    function teleportWorld(world)
  76.        if game:GetService("Workspace").Worlds:FindFirstChild(world) then
  77.            teleportTO(game:GetService("Workspace").Worlds[world].Teleport.CFrame)
  78.        end
  79.    end
  80.  
  81.    function teleport_to_gem()
  82.        local plyr = game.Players.LocalPlayer
  83.        if plyr.Character then
  84.        plyr.Character.HumanoidRootPart.CFrame = CFrame.new(549, 32, -175)
  85.        end
  86.    end
  87.    function teleport_to_board()
  88.        local plyr = game.Players.LocalPlayer
  89.        if plyr.Character then
  90.            plyr.Character.HumanoidRootPart.CFrame = CFrame.new(797,9,-262)
  91.        end
  92.    end
  93.  
  94. function doRespawn()
  95.    while getgenv().autoRespawn == true do
  96.            while wait() do
  97.            game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(549, 32, -175)
  98.        wait()
  99.        end
  100.    end
  101. end
  102.  
  103. function doSit()
  104.        while getgenv().enabledSit == true do
  105.            if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Humanoid") then
  106.                game:GetService("Players").LocalPlayer.Character.Humanoid.Sit = true
  107.            end
  108.            if getgenv().enabledSit == false then
  109.                game:GetService("Players").LocalPlayer.Character.Humanoid.Sit = false
  110.            end
  111.        end
  112.    end
  113.  
  114. _character = game:GetService("Players").LocalPlayer.Character
  115. _humanoidRP = game:GetService("Players").LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
  116.  
  117. function teleportRedGems()
  118.      for i, v in pairs(game:GetService("Workspace"):GetChildren()) do
  119.                    if _character and _humanoidRP and v:FindFirstChild("HumanoidRootPart")  then
  120.                _humanoidRP.CFrame = v:FindFirstChild("HumanoidRootPart").CFrame
  121.                    end
  122.                end
  123.            end
  124.  
  125. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
  126.  
  127. local w = library:CreateWindow("Clicker Madness GUI")
  128.  
  129. local b = w:CreateFolder("Auto Click&Rebirth")
  130.  
  131. local c = w:CreateFolder("Gamepasses")
  132.  
  133. local e  = w:CreateFolder("Upgrades")
  134.  
  135. local f = w:CreateFolder("Worlds Teleport")
  136.  
  137. local g = w:CreateFolder("Extras")
  138.  
  139.  
  140. b:DestroyGui()
  141. b:ColorPicker("ColorPicker", Color3.fromRGB(255,0,0),function(color) --Default color
  142.    print(color)
  143. end)
  144.  
  145. b:Toggle("Auto Click",function(bool)
  146.    getgenv().autoClick = bool
  147.    print("Auto Click is: ", bool)
  148.    if bool then
  149.            doClick()
  150.    end
  151. end)
  152.  
  153. local selectedRebirth
  154. b:Dropdown("Rebirth Amount",{"1", "10","100","1000","10000","100000","1000000","10000000","100000000","1000000000","10000000000","100000000000","1000000000000","10000000000000", "100000000000000", "1000000000000000","10000000000000000","100000000000000000", "1000000000000000000", "10000000000000000000","100000000000000000000","1000000000000000000000", "10000000000000000000000","100000000000000000000000", "1000000000000000000000000", "10000000000000000000000000","100000000000000000000000000","1000000000000000000000000000", "10000000000000000000000000000","100000000000000000000000000000", "1000000000000000000000000000000","10000000000000000000000000000000","100000000000000000000000000000000","1000000000000000000000000000000000","10000000000000000000000000000000000","100000000000000000000000000000000000","1000000000000000000000000000000000000","10000000000000000000000000000000000000","100000000000000000000000000000000000000","1000000000000000000000000000000000000000","10000000000000000000000000000000000000000","100000000000000000000000000000000000000000","1000000000000000000000000000000000000000000","10000000000000000000000000000000000000000000","100000000000000000000000000000000000000000000","1000000000000000000000000000000000000000000000","10000000000000000000000000000000000000000000000","100000000000000000000000000000000000000000000000","1000000000000000000000000000000000000000000000000","10000000000000000000000000000000000000000000000000","100000000000000000000000000000000000000000000000000","1000000000000000000000000000000000000000000000000000","10000000000000000000000000000000000000000000000000000","1000000000000000000000000000000000000000000000000000000","10000000000000000000000000000000000000000000000000000000","100000000000000000000000000000000000000000000000000000000","100000000000000000000000000000000000000000000000000000000","1000000000000000000000000000000000000000000000000000000000"},true,function(value) --true/false, replaces the current title "Dropdown" with the option that t
  155.    selectedRebirth = value
  156.    print(value)
  157. end)
  158.  
  159. b:Toggle("Auto Rebirth",function(bool)
  160.    getgenv().autoRebirths = bool
  161.     print("Auto Rebirth is: ", bool)
  162.     if bool and selectedRebirth then
  163.             autoRebirth(selectedRebirth)
  164.     end
  165. end)
  166.  
  167. c:Toggle("VIP", function(bool)
  168.      getgenv().unlockVIP = bool
  169.     print("Unlock VIP: ", bool)
  170.     if bool then
  171.       GetVIP()
  172.     end
  173. end)
  174. c:Toggle("Sprint", function(bool)
  175.    getgenv().unlockSpeed = bool
  176.        print("Sprint is:", bool)
  177.        if bool then
  178.            GetSprint()
  179.        end
  180.    end)
  181. c:Toggle("Explosive Cursors",  function(bool)
  182.    getgenv().unlockExplosiveCursors = bool
  183.    print("Explosive Cursors is:", bool)
  184.        if bool then
  185.           GetExplosiveCusors()
  186.        end
  187. end)
  188. c:Toggle("Unlimited Pets",function(bool)
  189.    getgenv().unlockPets = bool
  190.    print("Unlimited Pets,", bool)
  191.    if bool then
  192.        GetInfiniteCapacity()
  193.        end
  194. end)
  195. c:Toggle("Auto Rebirth", function(bool)
  196.    getgenv().unlockAutoRebirth = bool
  197.    print("Unlock AutoRebirth is: ", bool)
  198.        if bool then
  199.        GetVIP()
  200.    end
  201. end)
  202.  
  203. e:Slider("WalkSpeed",{
  204.    min = 16; -- min value of the slider
  205.    max = 1000; -- max value of the slider
  206.    precise = true; -- max 2 decimals
  207. },function(value)
  208.    game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = value
  209. end)
  210. e:Slider("JumpPower",{
  211.    min = 50; -- min value of the slider
  212.    max = 2000; -- max value of the slider
  213.    precise = true; -- max 2 decimals
  214. },function(value)
  215.    game.Players.LocalPlayer.Character.Humanoid.JumpPower = value
  216. end)
  217. e:Slider("Gravity",{
  218.    min = 0;
  219.    max = 196.6;
  220.    precise = true;
  221. }, function(value)
  222.    game:GetService("Workspace").Gravity = value
  223. end)
  224. local selectedWorld
  225.  
  226. f:Dropdown("Worlds",{"Desert","Winter","Lava","Toxic","Ocean", "Candy", "Space", "Forest", "City", "Blocks", "Future", "Infinity", "Moon", "Fire","Dominus", "Storm"},true,function(value) --true/false, replaces the current title "Dropdown" with the option that t
  227.    selectedWorld = value
  228.    print(value)
  229. end)
  230. f:Button("Teleport Selected",function()
  231.    if selectedWorld then
  232.        teleportWorld(selectedWorld)
  233.    end
  234. end)
  235. g:Toggle("Respawn Gem", function(bool)
  236.    getgenv().autoRespawn = bool
  237.    print("Respawn Gem is:", bool)
  238.    if bool then
  239.    doRespawn()
  240.    end
  241. end)
  242. g:Button("Gem Location", function()
  243.    teleport_to_gem()
  244. end)
  245. g:Button("Keyboard Location", function()
  246.    teleport_to_board()
  247. end)
  248.  
  249. g:Button("Dxcord:gg/r25dBN7XZC", function()
  250.    print('Please type it out in the browser.')
  251. end)
  252.  
  253. h:Slider("Hipheight",{
  254.    min = 2.64;
  255.    max = 100;
  256. }, function(value)
  257.    game:GetService("Players").p.Character.Humanoid.HipHeight = value
  258. end)
  259. g:Toggle("Sit", function(bool)
  260.    getgenv().enabledSit = bool
  261.    print("Sit is set to:", bool)
  262.    if bool then
  263.        doSit()
  264.    end
  265. end)
  266. g:Toggle("Teleport Red Gems", function(bool)
  267.    getgenv().tpRedGems = bool
  268.    print("Teleport Red Gems is:", bool)
  269.    if bool then
  270.        teleportRedGems()
  271.    end
  272. end)
  273. --[[b:Label("Pretty Useless NGL",{
  274.    TextSize = 25; -- Self Explaining
  275.    TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
  276.    BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
  277.    
  278. })
  279.  
  280. b:Button("Button",function()
  281.    print("Elym Winning")
  282. end)
  283.  
  284. b:Toggle("Toggle",function(bool)
  285.    shared.toggle = bool
  286.    print(shared.toggle)
  287. end)
  288.  
  289. b:Slider("Slider",{
  290.    min = 10; -- min value of the slider
  291.    max = 50; -- max value of the slider
  292.    precise = true; -- max 2 decimals
  293. },function(value)
  294.    print(value)
  295. end)
  296.  
  297. b:Dropdown("Dropdown",{"A","B","C"},true,function(mob) --true/false, replaces the current title "Dropdown" with the option that t
  298.    print(mob)
  299. end)
  300.  
  301. b:Bind("Bind",Enum.KeyCode.C,function() --Default bind
  302.    print("Yes")
  303. end)
  304.  
  305. b:ColorPicker("ColorPicker",Color3.fromRGB(255,0,0),function(color) --Default color
  306.    print(color)
  307. end)
  308.  
  309. b:Box("Box","number",function(value) -- "number" or "string"
  310.    print(value)
  311. end)
  312. --]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement