SkyGutter-GMG

Pop it Fidget Simulator

Aug 7th, 2021 (edited)
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.12 KB | None | 0 0
  1. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/Maxgat5/UiLib/main/lua')))()
  2. local w = library:CreateWindow("SUBSCRIBE TO Roblox EXPLOITS!")
  3. local b = w:CreateFolder("AutoFarm-SUBSCRIBE")
  4. local f = w:CreateFolder("AutoBuy-TO")
  5. local e = w:CreateFolder("Mix-Roblox EXPLOITS")
  6. local u = w:CreateFolder("Credits|Roblox EXPLOITS|")
  7. SelectedEgg = "Basic Egg"
  8. Eggs = {}
  9. for i,v in pairs(game:GetService("Workspace").GameMap.Areas.Eggs:GetChildren()) do
  10. table.insert(Eggs,v.Name)
  11. end
  12.  
  13. b:Toggle("AutoClicker",function(bool)
  14. shared.toggle = bool
  15. AutoClicker = bool
  16. end)
  17.  
  18. b:Toggle("AutoSell",function(bool)
  19. shared.toggle = bool
  20. AutoSell = bool
  21. end)
  22.  
  23. b:Toggle("AutoCollectGems",function(bool)
  24. shared.toggle = bool
  25. AutoCollectGems = bool
  26. end)
  27.  
  28. f:Toggle("PopIt",function(bool)
  29. shared.toggle = bool
  30. PopIt = bool
  31. end)
  32.  
  33. f:Toggle("Backpack",function(bool)
  34. shared.toggle = bool
  35. Backpack = bool
  36. end)
  37.  
  38. f:Dropdown("Select Egg",Eggs,true,function(a)
  39. SelectedEgg = a
  40. end)
  41.  
  42. f:Toggle("Buy Egg",function(bool)
  43. shared.toggle = bool
  44. BuyEgg = bool
  45. end)
  46.  
  47. f:Button("Tp Egg",function()
  48. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").GameMap.Areas.Eggs[SelectedEgg].Part.CFrame.Position + Vector3.new(0,0,0))
  49. end)
  50.  
  51. f:Toggle("Rebirth",function(bool)
  52. shared.toggle = bool
  53. Rebirth = bool
  54. end)
  55.  
  56. e:Toggle("AntiAfk",function(bool)
  57. shared.toggle = bool
  58. AntiAfk = bool
  59. end)
  60.  
  61. e:Toggle("Huge PopIt",function(bool)
  62. shared.toggle = bool
  63. HugePopIt = bool
  64. end)
  65.  
  66. e:Button("Collect Chests",function()
  67. for i,v in pairs(game:GetService("Workspace").Chests:GetDescendants()) do
  68. if v.Name == "TouchInterest" then
  69. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0)
  70. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1)
  71. end
  72. end
  73. end)
  74.  
  75. u:Button("Maker",function()
  76. setclipboard("(Fxnd) フォンドは神です#0001")
  77. end)
  78.  
  79. u:Button("DubstepGutter_OFFICIAL#6948",function()
  80. setclipboard("DubstepGutter_OFFICIAL#6948")
  81. end)
  82.  
  83. u:Button("Discord Server",function()
  84. setclipboard("https://discord.gg/yJubNzYy")
  85. end)
  86.  
  87. game:GetService('RunService').Stepped:connect(function()
  88. if BuyEgg == true then
  89. game:GetService("ReplicatedStorage").Remotes.OpenEgg:InvokeServer(workspace.GameMap.Areas.Eggs[SelectedEgg])
  90. end
  91.  
  92. if AutoClicker == true then
  93. game:GetService("ReplicatedStorage").Remotes.UsePopIt:FireServer()
  94. end
  95.  
  96. if PopIt == true then
  97. save = {}
  98. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.StuffShop.ShopFrame.CoinShopFrame.ScrollingFrame:GetDescendants()) do
  99. if v.ClassName == "ImageLabel" then
  100. if v.Name == "Lock" and v.Visible == true then
  101. table.insert(save,v.Parent.Tag.Value)
  102. end
  103. end
  104. end
  105.  
  106. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.StuffShop.ShopFrame.CoinShopFrame.ScrollingFrame:GetDescendants()) do
  107. if v.ClassName == "ImageLabel" then
  108. if v.Name == "Lock" and v.Visible == false then
  109. if v.Parent.Tag.Value == (math.min(unpack(save)) - 1) then
  110. game:GetService("ReplicatedStorage").Remotes.PopItShop:FireServer("Buy",tostring(v.Parent.Name))
  111. end
  112. end
  113. end
  114. end
  115. end
  116.  
  117. if Backpack == true then
  118. save = {}
  119. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.BackpackShop.ShopFrame.CoinShopFrame.ScrollingFrame:GetDescendants()) do
  120. if v.ClassName == "ImageLabel" then
  121. if v.Name == "Lock" and v.Visible == true then
  122. table.insert(save,v.Parent.Tag.Value)
  123. end
  124. end
  125. end
  126.  
  127. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.BackpackShop.ShopFrame.CoinShopFrame.ScrollingFrame:GetDescendants()) do
  128. if v.ClassName == "ImageLabel" then
  129. if v.Name == "Lock" and v.Visible == false then
  130. if v.Parent.Tag.Value == (math.min(unpack(save)) - 1) then
  131. game:GetService("ReplicatedStorage").Remotes.BackpackShop:FireServer("Buy",tostring(v.Parent.Name))
  132. end
  133. end
  134. end
  135. end
  136. end
  137.  
  138. if AutoCollectGems == true then
  139. for i,v in pairs(game:GetService("Workspace").GemSpawns:GetDescendants()) do
  140. if v.Name == "TouchInterest" then
  141. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0)
  142. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1)
  143. end
  144. end
  145. end
  146.  
  147. if Rebirth == true then
  148. game:GetService("ReplicatedStorage").Remotes.RequestRebirth:FireServer()
  149. end
  150.  
  151. if HugePopIt == true then
  152. for i,v in pairs(game:GetService("Workspace").PopCircles:GetDescendants()) do
  153. if v.Name == "TouchInterest" then
  154. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0)
  155. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1)
  156. end
  157. end
  158. end
  159.  
  160. if AntiAfk == true then
  161. local bb=game:service'VirtualUser'
  162. bb:CaptureController()
  163. bb:ClickButton2(Vector2.new())
  164. end
  165. end)
  166.  
  167. while wait() do
  168. pcall(function()
  169. if AutoSell == true then
  170. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").Map["Sell Zone"].SellHitbox.CFrame.Position + Vector3.new(0,0,100))
  171. wait(.1)
  172. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").Map["Sell Zone"].SellHitbox.CFrame.Position + Vector3.new(0,0,0))
  173. wait(.1)
  174. end
  175. end)
  176. end
Add Comment
Please, Sign In to add comment