Advertisement
exploit43262

Untitled

Jul 23rd, 2022
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.89 KB | None | 0 0
  1. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/Maxgat5/UiLib/main/lua')))()
  2. local w = library:CreateWindow("Toy Clicking Simulator")
  3. local b = w:CreateFolder("AutoFarm")
  4. local h = w:CreateFolder("Rebirth")
  5. local f = w:CreateFolder("Shop")
  6. local g = w:CreateFolder("Egg")
  7. local e = w:CreateFolder("Mix")
  8. local u = w:CreateFolder("Credits")
  9. local can = true
  10. local SelectedRebirth = "1"
  11. local SelectedSuperRebirth = "1"
  12. local SelectedEgg = "Free Egg"
  13.  
  14. Rebirth = {}
  15. SuperRebirth = {}
  16. Eggs = {}
  17.  
  18. for i,v in pairs(game:GetService("Workspace")["__Map"]:GetDescendants()) do
  19. if v.ClassName == "Folder" then
  20. if v.Name == "Eggs" then
  21. for i,v1 in pairs(v:GetChildren()) do
  22. if v1.ClassName == "Model" then
  23. if not table.find(Eggs,v1.Name) then
  24. table.insert(Eggs,v1.Name)
  25. end
  26. end
  27. end
  28. end
  29. end
  30. end
  31.  
  32. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui.Frames.Rebirth.Container.List:GetChildren()) do
  33. if v.ClassName ~= "UIGridLayout" then
  34. Rebirth[i] = v.Name
  35. end
  36. end
  37.  
  38. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui.Frames.Rebirth.SRContainer.List:GetChildren()) do
  39. if v.ClassName ~= "UIGridLayout" then
  40. SuperRebirth[i] = v.Name
  41. end
  42. end
  43.  
  44. b:Toggle("AutoClicker",function(bool)
  45. shared.toggle = bool
  46. AutoClicker = bool
  47. end)
  48.  
  49. h:Toggle("AutoRebirth",function(bool)
  50. shared.toggle = bool
  51. AutoRebirth = bool
  52. end)
  53.  
  54. h:Dropdown("Select Rebirth",Rebirth,true,function(mob)
  55. SelectedRebirth = mob
  56. end)
  57.  
  58. h:Toggle("AutoSuperRebirth",function(bool)
  59. shared.toggle = bool
  60. AutoSuperRebirth = bool
  61. end)
  62.  
  63. h:Dropdown("Select Super Rebirth",SuperRebirth,true,function(mob)
  64. SelectedSuperRebirth = mob
  65. end)
  66.  
  67. f:Toggle("Gem Upgrade",function(bool)
  68. shared.toggle = bool
  69. AutoRUpgrade = bool
  70. end)
  71.  
  72. f:Toggle("Super Upgrade",function(bool)
  73. shared.toggle = bool
  74. AutoSRUpgrade = bool
  75. end)
  76.  
  77. g:Dropdown("Select Egg",Eggs,true,function(mob)
  78. SelectedEgg = mob
  79. end)
  80.  
  81. g:Toggle("Open Egg",function(bool)
  82. shared.toggle = bool
  83. OpenEgg = bool
  84. end)
  85.  
  86. g:Button("Tp Egg",function()
  87. for i,v in pairs(game.Workspace:GetDescendants()) do
  88. if v.Name == SelectedEgg then
  89. for i,v1 in pairs(v:GetChildren()) do
  90. if v1.ClassName == "MeshPart" then
  91. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v1.CFrame.Position + Vector3.new(0,0,0))
  92. end
  93. end
  94. end
  95. end
  96. end)
  97.  
  98. e:Toggle("BypassJumpCD",function(bool)
  99. shared.toggle = bool
  100. BypassJumpCD = bool
  101. end)
  102.  
  103. e:Toggle("Craft All",function(bool)
  104. shared.toggle = bool
  105. CraftAll = bool
  106. end)
  107.  
  108. e:Toggle("AntiAfk",function(bool)
  109. shared.toggle = bool
  110. AntiAfk = bool
  111. end)
  112. --Credits
  113. u:Button("maxgat5#8395",function()
  114. setclipboard("Trigzzy#8305")
  115. end)
  116.  
  117. u:Button("Discord Server",function()
  118. setclipboard("https://discord.gg/96DKrytwnY")
  119. end)
  120.  
  121. while wait() do
  122. spawn(function()
  123. if OpenEgg == true then
  124. game:GetService("ReplicatedStorage").Knit.Services.EggService.RF.OpenEgg:InvokeServer(tostring(SelectedEgg),false)
  125. end
  126. end)
  127.  
  128. spawn(function()
  129. if AutoRUpgrade == true then
  130. for i,v in pairs(game:GetService("Players").LocalPlayer.Upgrades.GemUpgrades:GetChildren()) do
  131. game:GetService("ReplicatedStorage").Knit.Services.UpgradeService.RF.BuyUpgrade:InvokeServer(v.Name)
  132. end
  133. end
  134. end)
  135.  
  136. spawn(function()
  137. if AutoSRUpgrade == true then
  138. for i,v in pairs(game:GetService("Players").LocalPlayer.Upgrades.SuperUpgrades:GetChildren()) do
  139. game:GetService("ReplicatedStorage").Knit.Services.UpgradeService.RF.BuySRUpgrade:InvokeServer(v.Name)
  140. end
  141. end
  142. end)
  143.  
  144. spawn(function()
  145. if CraftAll == true then
  146. game:GetService("ReplicatedStorage").Knit.Services.PetService.RF.CraftAllPets:InvokeServer()
  147. end
  148. end)
  149.  
  150. spawn(function()
  151. if AutoClicker == true then
  152. game:GetService("ReplicatedStorage").Knit.Services.ClickService.RF.Click:InvokeServer()
  153. end
  154. end)
  155.  
  156. spawn(function()
  157. if AutoRebirth == true then
  158. game:GetService("ReplicatedStorage").Knit.Services.RebirthService.RF.AttemptRebirth:InvokeServer(tonumber(SelectedRebirth))
  159. end
  160. end)
  161.  
  162. spawn(function()
  163. if AutoSuperRebirth== true then
  164. game:GetService("ReplicatedStorage").Knit.Services.RebirthService.RF.AttemptRebirth:InvokeServer(tonumber(SelectedSuperRebirth))
  165. end
  166. end)
  167.  
  168. spawn(function()
  169. if BypassJumpCD == true then
  170. if can == true then
  171. can = false
  172. for i,v in pairs(getgc()) do
  173. if type(v) == 'function' and getfenv(v).script == game:GetService("Players").LocalPlayer.PlayerScripts.KnitClient.Modules.DoubleJump then
  174. pcall(function()
  175. if debug.getconstant(v,7) == 'wait'then
  176. debug.setconstant(v,7,'print')
  177. end
  178. if debug.getconstant(v,21) == 'wait'then
  179. debug.setconstant(v,21,'print')
  180. end
  181. if debug.getconstant(v,16) == 'wait'then
  182. debug.setconstant(v,16,'print')
  183. end
  184. end)
  185. end
  186. end
  187. end
  188. else
  189. if can == false then
  190. can = true
  191. for i,v in pairs(getgc()) do
  192. if type(v) == 'function' and getfenv(v).script == game:GetService("Players").LocalPlayer.PlayerScripts.KnitClient.Modules.DoubleJump then
  193. pcall(function()
  194. if debug.getconstant(v,7) == 'print'then
  195. debug.setconstant(v,7,'wait')
  196. end
  197. if debug.getconstant(v,21) == 'print'then
  198. debug.setconstant(v,21,'wait')
  199. end
  200. if debug.getconstant(v,16) == 'print'then
  201. debug.setconstant(v,16,'wait')
  202. end
  203. end)
  204. end
  205. end
  206. end
  207. end
  208. end)
  209.  
  210. spawn(function()
  211. if AntiAfk == true then
  212. local bb=game:service'VirtualUser'
  213. bb:CaptureController()
  214. bb:ClickButton2(Vector2.new())
  215. end
  216. end)
  217. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement