Advertisement
Totalxterror

Egg Clicker DMG GUI

Jul 4th, 2021 (edited)
1,037
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.28 KB | None | 0 0
  1. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
  2.  
  3. local w = library:CreateWindow("Egg Clicker") -- Creates the window
  4.  
  5. -------------------------------------------------------------------------------------------------------------------
  6.  
  7. local b = w:CreateFolder("Functions") -- Creates the folder(U will put here your buttons,etc)
  8.  
  9. b:Toggle("Remove Dmg Notification",function(bool)
  10.     shared.toggle = bool
  11. end)
  12.  
  13. spawn(function()
  14.     while wait() do
  15.         if shared.toggle then
  16.             game:GetService("Players").LocalPlayer.PlayerGui.MainUI.Splash:Destroy()
  17.             game:GetService("Players").LocalPlayer.PlayerGui.MainUI.Hit:Destroy()
  18.         end
  19.     end
  20. end)
  21.  
  22. -- -------------------------------------------------------------------------------------------
  23. -- Abilitys
  24.  
  25. local b = w:CreateFolder("Abilitys") -- Creates the folder(U will put here your buttons,etc)
  26.  
  27. b:Toggle("Power Strike",function(booAl)
  28.     shared.toggle = booAl
  29. end)
  30.  
  31. spawn(function()
  32.     while wait(6) do
  33.         if shared.toggleA1 then
  34.         local oh1 = "Power Strike"
  35.         game:GetService("ReplicatedStorage").Events.Skill.Activate:FireServer(oh1)
  36.         end
  37.     end
  38. end)
  39.  
  40. b:Toggle("Gold Touch",function(boolAA1)
  41.     shared.toggleAA1 = boolAA1
  42. end)
  43.  
  44. spawn(function()
  45.     while wait(31) do
  46.         if shared.toggleAA1 then
  47.         local oh1 = "Gold Touch"
  48.         game:GetService("ReplicatedStorage").Events.Skill.Activate:FireServer(oh1)
  49.         end
  50.     end
  51. end)
  52.  
  53. b:Toggle("Fury",function(boolA2)
  54.     shared.toggleA2 = boolA2
  55. end)
  56.  
  57. spawn(function()
  58.     while wait(31) do
  59.         if shared.toggleA2 then
  60.         local oh1 = "Fury"
  61.         game:GetService("ReplicatedStorage").Events.Skill.Activate:FireServer(oh1)
  62.         end
  63.     end
  64. end)
  65.  
  66. b:Toggle("Rally",function(boolA3)
  67.     shared.toggleA3 = boolA3
  68. end)
  69.  
  70. spawn(function()
  71.     while wait(31) do
  72.         if shared.toggleA3 then
  73.         local oh1 = "Rally"
  74.         game:GetService("ReplicatedStorage").Events.Skill.Activate:FireServer(oh1)
  75.         end
  76.     end
  77. end)
  78.  
  79. ---------------------------------------------------------------------------------------------------------
  80.  
  81. -- Levels
  82.  
  83. local b = w:CreateFolder("Store") -- Creates the folder(U will put here your buttons,etc)
  84.  
  85. b:Toggle("Level",function(boolSS1)
  86.     shared.toggleSS1 = boolSS1
  87. end)
  88.  
  89. spawn(function()
  90.     while wait() do
  91.         if shared.toggleSS1 then
  92.         local oh1 = "Level"
  93.         game:GetService("ReplicatedStorage").Events.Store.Level:FireServer(oh1)
  94.         end
  95.     end
  96. end)
  97.  
  98. b:Toggle("Power Strike",function(boolc)
  99.     shared.togglec = boolc
  100. end)
  101.  
  102. spawn(function()
  103.     while wait() do
  104.         if shared.togglec then
  105.         local oh1 = "Power Strike"
  106.         game:GetService("ReplicatedStorage").Events.Store.Skill:FireServer(oh1)
  107.         end
  108.     end
  109. end)
  110.  
  111. b:Toggle("Gold Touch",function(boolS1)
  112.     shared.toggleS1 = boolS1
  113. end)
  114.  
  115. spawn(function()
  116.     while wait() do
  117.         if shared.toggleS1 then
  118.         local oh1 = "Gold Touch"
  119.         game:GetService("ReplicatedStorage").Events.Store.Skill:FireServer(oh1)
  120.         end
  121.     end
  122. end)
  123.  
  124. b:Toggle("Fury",function(boolS2)
  125.     shared.toggleS2 = boolS2
  126. end)
  127.  
  128. spawn(function()
  129.     while wait() do
  130.         if shared.toggleS2 then
  131.         local oh1 = "Fury"
  132.         game:GetService("ReplicatedStorage").Events.Store.Skill:FireServer(oh1)
  133.         end
  134.     end
  135. end)
  136.  
  137. b:Toggle("Rally",function(boolS3)
  138.     shared.toggleS3 = boolS3
  139. end)
  140.  
  141. spawn(function()
  142.     while wait() do
  143.         if shared.toggleS3 then
  144.         local oh1 = "Rally"
  145.         game:GetService("ReplicatedStorage").Events.Store.Skill:FireServer(oh1)
  146.         end
  147.     end
  148. end)
  149.  
  150. b:Toggle("Barrage",function(boolS4)
  151.     shared.toggleS4 = boolS4
  152. end)
  153.  
  154. spawn(function()
  155.     while wait() do
  156.         if shared.toggleS4 then
  157.         local oh1 = "Barrage"
  158.         game:GetService("ReplicatedStorage").Events.Store.Skill:FireServer(oh1)
  159.         end
  160.     end
  161. end)
  162.  
  163. ----------------------------------------------------------------------------------------
  164.  
  165. -- Credits
  166.  
  167. local b = w:CreateFolder("Credits") -- Creates the folder(U will put here your buttons,etc)
  168. b:Toggle("Scripts: Total",function(boolCred1)
  169.     shared.toggleCred1 = boolCred1
  170. end)
  171.  
  172. spawn(function()
  173.     while wait(1) do
  174.         if shared.toggleCred1 then
  175.             print("Nub")
  176.         end
  177.     end
  178. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement