PapierLP

Clicking Champions

Aug 18th, 2020
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/preztel/AzureLibrary/master/uilib.lua", true))()
  2.  
  3. local AutoTab = Library:CreateTab("Auto Misc","Mikes Geheime Cheat Sachen", true)
  4.  
  5. AutoTab:CreateToggle("Click", function(arg) --the (arg) is if the checkbox is toggled or not
  6. if arg then
  7. _G.Basic = true
  8. while wait(0) and _G.Basic do
  9. game:GetService("ReplicatedStorage").Events.Server.RegisterClick:InvokeServer()
  10.  
  11.  
  12. end
  13. else
  14. _G.Basic = false
  15. end
  16. end)
  17. AutoTab:CreateToggle("15 Qi", function(arg) --the (arg) is if the checkbox is toggled or not
  18. if arg then
  19. _G.Basic = true
  20. while wait(0) and _G.Basic do
  21. local args = {
  22. [1] = 1.5e+19
  23. }
  24.  
  25. game:GetService("ReplicatedStorage").Events.Server.RequestRebirth:InvokeServer(unpack(args))
  26.  
  27.  
  28.  
  29. end
  30. else
  31. _G.Basic = false
  32. end
  33. end)
  34. AutoTab:CreateToggle("EquipBest", function(arg) --the (arg) is if the checkbox is toggled or not
  35. if arg then
  36. _G.Basic = true
  37. while wait(0) and _G.Basic do
  38. game:GetService("ReplicatedStorage").Events.Server.RequestEquipBest:InvokeServer()
  39.  
  40.  
  41. end
  42. else
  43. _G.Basic = false
  44. end
  45. end)
  46. AutoTab:CreateToggle("Auto Super Rebirth", function(arg) --the (arg) is if the checkbox is toggled or not
  47. if arg then
  48. _G.Basic = true
  49. while wait(0) and _G.Basic do
  50. game:GetService("ReplicatedStorage").Events.Server.SuperRebirth:InvokeServer()
  51.  
  52.  
  53.  
  54. end
  55. else
  56. _G.Basic = false
  57. end
  58. end)
  59. local AutoTab = Library:CreateTab("Auto Buy Potion","Mikes Geheime Cheat Sachen", true)
  60. AutoTab:CreateToggle("x2 Clicks", function(arg) --the (arg) is if the checkbox is toggled or not
  61. if arg then
  62. _G.Basic = true
  63. while wait(0) and _G.Basic do
  64. local args = {
  65. [1] = "Click Boost"
  66. }
  67.  
  68. game:GetService("ReplicatedStorage").Events.Server.PotionBuy:InvokeServer(unpack(args))
  69.  
  70. end
  71. else
  72. _G.Basic = false
  73. end
  74. end)
  75. AutoTab:CreateToggle("x5 Clicks", function(arg) --the (arg) is if the checkbox is toggled or not
  76. if arg then
  77. _G.Basic = true
  78. while wait(0) and _G.Basic do
  79. local args = {
  80. [1] = "Mega Click"
  81. }
  82.  
  83. game:GetService("ReplicatedStorage").Events.Server.PotionBuy:InvokeServer(unpack(args))
  84.  
  85.  
  86. end
  87. else
  88. _G.Basic = false
  89. end
  90. end)
  91. AutoTab:CreateToggle("x10 Clicks", function(arg) --the (arg) is if the checkbox is toggled or not
  92. if arg then
  93. _G.Basic = true
  94. while wait(0) and _G.Basic do
  95. local args = {
  96. [1] = "Insane Click"
  97. }
  98.  
  99. game:GetService("ReplicatedStorage").Events.Server.PotionBuy:InvokeServer(unpack(args))
  100.  
  101.  
  102.  
  103. end
  104. else
  105. _G.Basic = false
  106. end
  107. end)
  108. AutoTab:CreateToggle("x3 Shiny Chance", function(arg) --the (arg) is if the checkbox is toggled or not
  109. if arg then
  110. _G.Basic = true
  111. while wait(0) and _G.Basic do
  112. local args = {
  113. [1] = "Shiny Boost"
  114. }
  115.  
  116. game:GetService("ReplicatedStorage").Events.Server.PotionBuy:InvokeServer(unpack(args))
  117.  
  118.  
  119.  
  120.  
  121. end
  122. else
  123. _G.Basic = false
  124. end
  125. end)
Add Comment
Please, Sign In to add comment