BubbleGum simulator gui - Pastebin.com (2024)

  1. --Enjoy The Script

  2. --Subscribe To Christian Legarda

  3. -- V3rm Link: https://v3rmillion.net/showthread.php?tid=707142&highlight=Bubble+Gum+Simulator

  4. local BubbleGumSimulator = Instance.new("ScreenGui")

  5. local Main = Instance.new("Frame")

  6. local Heading = Instance.new("TextLabel")

  7. local Coins = Instance.new("TextButton")

  8. local CashStack = Instance.new("TextButton")

  9. local MoneyBag = Instance.new("TextButton")

  10. local Gem = Instance.new("TextButton")

  11. local SmallGemChest = Instance.new("TextButton")

  12. local GemBox = Instance.new("TextButton")

  13. local GemSafe = Instance.new("TextButton")

  14. local WoodChest = Instance.new("TextButton")

  15. local DoubleAutoSell = Instance.new("TextButton")

  16. local SilverChest = Instance.new("TextButton")

  17. local Close = Instance.new("TextButton")

  18. local AutoSell = Instance.new("TextButton")

  19. local UnlockAllPortals = Instance.new("TextButton")

  20. local Frame = Instance.new("Frame")

  21. local Open = Instance.new("TextButton")

  22. BubbleGumSimulator.Name = "Bubble Gum Simulator"

  23. BubbleGumSimulator.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")

  24. BubbleGumSimulator.ResetOnSpawn = false

  25. Main.Name = "Main"

  26. Main.Parent = BubbleGumSimulator

  27. Main.BackgroundColor3 = Color3.new(0, 0, 0)

  28. Main.Position = UDim2.new(0,-600,0,266)

  29. Main.Size = UDim2.new(0, 450, 0, 250)

  30. Main.Visible = false

  31. Main.Active = true

  32. Main.Visible = true

  33. Main.Draggable = true

  34. Heading.Name = "Heading"

  35. Heading.Parent = Main

  36. Heading.BackgroundColor3 = Color3.new(0, 0, 0)

  37. Heading.Size = UDim2.new(0, 400, 0, 50)

  38. Heading.Font = Enum.Font.ArialBold

  39. Heading.Text = "Bubble Gum Simulator"

  40. Heading.TextColor3 = Color3.new(1, 1, 1)

  41. Heading.TextScaled = true

  42. Heading.TextSize = 14

  43. Heading.TextWrapped = true

  44. local coins = false

  45. Coins.Name = "Coins"

  46. Coins.Parent = Main

  47. Coins.BackgroundColor3 = Color3.new(0, 0, 0)

  48. Coins.Position = UDim2.new(0, 0, 0.197999999, 0)

  49. Coins.Size = UDim2.new(0, 150, 0, 50)

  50. Coins.Font = Enum.Font.SourceSans

  51. Coins.Text = " Coins : OFF"

  52. Coins.TextColor3 = Color3.new(1, 1, 1)

  53. Coins.TextSize = 14

  54. Coins.MouseButton1Down:connect(function()

  55. if not coins then

  56. Coins.Text = 'Coins : ON'

  57. coins = true

  58. repeat

  59. for i,v in pairs (game.workspace.Pickups.Coin:GetChildren()) do

  60. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame

  61. end

  62. wait()

  63. until coins == false

  64. else

  65. Coins.Text = 'Coins : OFF'

  66. coins = false

  67. end

  68. end)

  69. local cash = false

  70. CashStack.Name = "Cash Stack"

  71. CashStack.Parent = Main

  72. CashStack.BackgroundColor3 = Color3.new(0, 0, 0)

  73. CashStack.Position = UDim2.new(0.666666687, 0, 0.588999987, 0)

  74. CashStack.Size = UDim2.new(0, 150, 0, 50)

  75. CashStack.Font = Enum.Font.SourceSans

  76. CashStack.Text = "Cash Stack : OFF"

  77. CashStack.TextColor3 = Color3.new(1, 1, 1)

  78. CashStack.TextSize = 14

  79. CashStack.MouseButton1Down:connect(function()

  80. if not cash then

  81. CashStack.Text = 'Cash Stack : ON'

  82. cash = true

  83. repeat

  84. for i,v in pairs (game.workspace.Pickups["Cash Stack"]:GetChildren()) do

  85. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame

  86. end

  87. wait()

  88. until cash == false

  89. else

  90. CashStack.Text = 'Cash Stack : OFF'

  91. cash = false

  92. end

  93. end)

  94. local money = false

  95. MoneyBag.Name = "Money Bag"

  96. MoneyBag.Parent = Main

  97. MoneyBag.BackgroundColor3 = Color3.new(0, 0, 0)

  98. MoneyBag.Position = UDim2.new(0.666666687, 0, 0.197999999, 0)

  99. MoneyBag.Size = UDim2.new(0, 150, 0, 50)

  100. MoneyBag.Font = Enum.Font.SourceSans

  101. MoneyBag.Text = " Money Bag : OFF"

  102. MoneyBag.TextColor3 = Color3.new(1, 1, 1)

  103. MoneyBag.TextSize = 14

  104. MoneyBag.MouseButton1Down:connect(function()

  105. if not money then

  106. MoneyBag.Text = 'Money Bag : ON'

  107. money = true

  108. repeat

  109. for i,v in pairs (game.workspace.Pickups["Money Bag"]:GetChildren()) do

  110. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame

  111. end

  112. wait()

  113. until money == false

  114. else

  115. MoneyBag.Text = 'Money Bag : OFF'

  116. money = false

  117. end

  118. end)

  119. local gem = false

  120. Gem.Name = "Gem"

  121. Gem.Parent = Main

  122. Gem.BackgroundColor3 = Color3.new(0, 0, 0)

  123. Gem.Position = UDim2.new(0.666666687, 0, 0.400000006, 0)

  124. Gem.Size = UDim2.new(0, 150, 0, 50)

  125. Gem.Font = Enum.Font.SourceSans

  126. Gem.Text = "Gem : OFF"

  127. Gem.TextColor3 = Color3.new(1, 1, 1)

  128. Gem.TextSize = 14

  129. Gem.MouseButton1Down:connect(function()

  130. if not gem then

  131. Gem.Text = 'Gem : ON'

  132. gem = true

  133. repeat

  134. for i,v in pairs (game.workspace.Pickups.Gem:GetChildren()) do

  135. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame

  136. end

  137. wait()

  138. until gem == false

  139. else

  140. Gem.Text = 'Gem : OFF'

  141. gem = false

  142. end

  143. end)

  144. local sgem = false

  145. SmallGemChest.Name = "Small Gem Chest"

  146. SmallGemChest.Parent = Main

  147. SmallGemChest.BackgroundColor3 = Color3.new(0, 0, 0)

  148. SmallGemChest.Position = UDim2.new(0.333333343, 0, 0.590000033, 0)

  149. SmallGemChest.Size = UDim2.new(0, 150, 0, 50)

  150. SmallGemChest.Font = Enum.Font.SourceSans

  151. SmallGemChest.Text = "Small Gem Chest : OFF"

  152. SmallGemChest.TextColor3 = Color3.new(1, 1, 1)

  153. SmallGemChest.TextSize = 14

  154. SmallGemChest.MouseButton1Down:connect(function()

  155. if not sgem then

  156. SmallGemChest.Text = 'Small Gem Chest : ON'

  157. sgem = true

  158. repeat

  159. for i,v in pairs (game.workspace.Pickups["Small Gem Chest"]:GetChildren()) do

  160. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame

  161. end

  162. wait()

  163. until sgem == false

  164. else

  165. SmallGemChest.Text = 'Small Gem Chest : OFF'

  166. sgem = false

  167. end

  168. end)

  169. local gemb = false

  170. GemBox.Name = "Gem Box"

  171. GemBox.Parent = Main

  172. GemBox.BackgroundColor3 = Color3.new(0, 0, 0)

  173. GemBox.Position = UDim2.new(0.333333343, 0, 0.395999998, 0)

  174. GemBox.Size = UDim2.new(0, 150, 0, 50)

  175. GemBox.Font = Enum.Font.SourceSans

  176. GemBox.Text = "Gem Box : OFF"

  177. GemBox.TextColor3 = Color3.new(1, 1, 1)

  178. GemBox.TextSize = 14

  179. GemBox.MouseButton1Down:connect(function()

  180. if not gemb then

  181. GemBox.Text = 'Gem Box : ON'

  182. gemb = true

  183. repeat

  184. for i,v in pairs (game.workspace.Pickups["Gem Box"]:GetChildren()) do

  185. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame

  186. end

  187. wait()

  188. until gemb == false

  189. else

  190. GemBox.Text = 'Gem Box : OFF'

  191. gemb = false

  192. end

  193. end)

  194. local sgem = false

  195. GemSafe.Name = "Gem Safe"

  196. GemSafe.Parent = Main

  197. GemSafe.BackgroundColor3 = Color3.new(0, 0, 0)

  198. GemSafe.Position = UDim2.new(0.333333373, 0, 0.198000029, 0)

  199. GemSafe.Size = UDim2.new(0, 150, 0, 50)

  200. GemSafe.Font = Enum.Font.SourceSans

  201. GemSafe.Text = "Gem Safe : OFF"

  202. GemSafe.TextColor3 = Color3.new(1, 1, 1)

  203. GemSafe.TextSize = 14

  204. GemSafe.MouseButton1Down:connect(function()

  205. if not sgem then

  206. GemSafe.Text = 'Gem Safe : ON'

  207. sgem = true

  208. repeat

  209. for i,v in pairs (game.workspace.Pickups["Gem Safe"]:GetChildren()) do

  210. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame

  211. end

  212. wait()

  213. until sgem == false

  214. else

  215. GemSafe.Text = 'Gem Safe : OFF'

  216. sgem = false

  217. end

  218. end)

  219. local wc = false

  220. WoodChest.Name = "Wood Chest"

  221. WoodChest.Parent = Main

  222. WoodChest.BackgroundColor3 = Color3.new(0, 0, 0)

  223. WoodChest.Position = UDim2.new(0, 0, 0.400000006, 0)

  224. WoodChest.Size = UDim2.new(0, 150, 0, 50)

  225. WoodChest.Font = Enum.Font.SourceSans

  226. WoodChest.Text = "Wood Chest : OFF"

  227. WoodChest.TextColor3 = Color3.new(1, 1, 1)

  228. WoodChest.TextSize = 14

  229. WoodChest.MouseButton1Down:connect(function()

  230. if not wc then

  231. WoodChest.Text = 'Wood Chest : ON'

  232. wc = true

  233. repeat

  234. for i,v in pairs (game.workspace.Pickups["Wood Chest"]:GetChildren()) do

  235. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame

  236. end

  237. wait()

  238. until wc == false

  239. else

  240. WoodChest.Text = 'Wood Chest : OFF'

  241. wc = false

  242. end

  243. end)

  244. local sc = false

  245. local twosell = false

  246. DoubleAutoSell.Name = "Double AutoSell"

  247. DoubleAutoSell.Parent = Main

  248. DoubleAutoSell.BackgroundColor3 = Color3.new(0, 0, 0)

  249. DoubleAutoSell.Position = UDim2.new(0, 0, 0.797999978, 0)

  250. DoubleAutoSell.Size = UDim2.new(0, 150, 0, 50)

  251. DoubleAutoSell.Font = Enum.Font.SourceSans

  252. DoubleAutoSell.Text = "Double Auto Sell : OFF"

  253. DoubleAutoSell.TextColor3 = Color3.new(1, 1, 1)

  254. DoubleAutoSell.TextSize = 14

  255. DoubleAutoSell.MouseButton1Down:connect(function()

  256. if not twosell then

  257. DoubleAutoSell.Text = 'Double Auto Sell : ON'

  258. twosell = true

  259. repeat

  260. game.workspace.Activations.TwilightSell.Root.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame

  261. wait()

  262. until twosell == false

  263. else

  264. DoubleAutoSell.Text = 'Double Auto Sell : OFF'

  265. twosell = false

  266. end

  267. end)

  268. SilverChest.Name = "Silver Chest"

  269. SilverChest.Parent = Main

  270. SilverChest.BackgroundColor3 = Color3.new(0, 0, 0)

  271. SilverChest.Position = UDim2.new(0, 0, 0.593999982, 0)

  272. SilverChest.Size = UDim2.new(0, 150, 0, 50)

  273. SilverChest.Font = Enum.Font.SourceSans

  274. SilverChest.Text = "Silver Chest : OFF"

  275. SilverChest.TextColor3 = Color3.new(1, 1, 1)

  276. SilverChest.TextSize = 14

  277. SilverChest.MouseButton1Down:connect(function()

  278. if not sc then

  279. SilverChest.Text = 'Silver Chest : ON'

  280. sc = true

  281. repeat

  282. for i,v in pairs (game.workspace.Pickups["Silver Chest"]:GetChildren()) do

  283. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame

  284. end

  285. wait()

  286. until sc == false

  287. else

  288. SilverChest.Text = 'Silver Chest : OFF'

  289. sc = false

  290. end

  291. end)

  292. Close.Name = "Close"

  293. Close.Parent = Main

  294. Close.BackgroundColor3 = Color3.new(0, 0, 0)

  295. Close.Position = UDim2.new(0.888888896, 0, 0, 0)

  296. Close.Size = UDim2.new(0, 50, 0, 49)

  297. Close.Font = Enum.Font.SourceSans

  298. Close.Text = "X"

  299. Close.TextColor3 = Color3.new(1, 1, 1)

  300. Close.TextSize = 14

  301. Close.MouseButton1Down:connect(function()

  302. Frame.Visible = true

  303. Main:TweenPosition(UDim2.new(0,-600,0,266), "Out", "Quad", 1)

  304. end)

  305. local sell = false

  306. AutoSell.Name = "AutoSell"

  307. AutoSell.Parent = Main

  308. AutoSell.BackgroundColor3 = Color3.new(0, 0, 0)

  309. AutoSell.Position = UDim2.new(0.333333343, 0, 0.797999978, 0)

  310. AutoSell.Size = UDim2.new(0, 150, 0, 50)

  311. AutoSell.Font = Enum.Font.SourceSans

  312. AutoSell.Text = "Auto Sell : OFF"

  313. AutoSell.TextColor3 = Color3.new(1, 1, 1)

  314. AutoSell.TextSize = 14

  315. AutoSell.MouseButton1Down:connect(function()

  316. if not sell then

  317. AutoSell.Text = 'Auto Sell : ON'

  318. sell = true

  319. repeat

  320. game.workspace.Activations.Sell.Root.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame

  321. wait()

  322. until sell == false

  323. else

  324. AutoSell.Text = 'Auto Sell : OFF'

  325. sell = false

  326. end

  327. end)

  328. UnlockAllPortals.Name = "Unlock All Portals"

  329. UnlockAllPortals.Parent = Main

  330. UnlockAllPortals.BackgroundColor3 = Color3.new(0, 0, 0)

  331. UnlockAllPortals.Position = UDim2.new(0.666666687, 0, 0.797999978, 0)

  332. UnlockAllPortals.Size = UDim2.new(0, 150, 0, 50)

  333. UnlockAllPortals.Font = Enum.Font.SourceSans

  334. UnlockAllPortals.Text = "Unlock All Portals"

  335. UnlockAllPortals.TextColor3 = Color3.new(1, 1, 1)

  336. UnlockAllPortals.TextSize = 14

  337. UnlockAllPortals.MouseButton1Down:connect(function()

  338. for _,FloatingIsland in pairs (workspace.FloatingIslands:GetChildren()) do

  339. wait(1)

  340. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(FloatingIsland.Collision.Position)

  341. end

  342. end)

  343. Frame.Parent = BubbleGumSimulator

  344. Frame.BackgroundColor3 = Color3.new(0, 0, 0)

  345. Frame.Position = UDim2.new(0.926620662, 0, 0.47410357, 0)

  346. Frame.Size = UDim2.new(0, 100, 0, 25)

  347. Open.Name = "Open"

  348. Open.Parent = Frame

  349. Open.BackgroundColor3 = Color3.new(0, 0, 0)

  350. Open.Size = UDim2.new(0, 100, 0, 25)

  351. Open.Font = Enum.Font.SourceSans

  352. Open.Text = "Open"

  353. Open.TextColor3 = Color3.new(1, 1, 1)

  354. Open.TextSize = 14

  355. Open.MouseButton1Down:connect(function()

  356. Main:TweenPosition(UDim2.new(0.336689293, 0, 0.300390422, 0), "In", "Quad", 1)

  357. Frame.Visible = false

  358. end)

BubbleGum simulator gui - Pastebin.com (2024)

References

Top Articles
Latest Posts
Article information

Author: Rev. Porsche Oberbrunner

Last Updated:

Views: 6121

Rating: 4.2 / 5 (53 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Rev. Porsche Oberbrunner

Birthday: 1994-06-25

Address: Suite 153 582 Lubowitz Walks, Port Alfredoborough, IN 72879-2838

Phone: +128413562823324

Job: IT Strategist

Hobby: Video gaming, Basketball, Web surfing, Book restoration, Jogging, Shooting, Fishing

Introduction: My name is Rev. Porsche Oberbrunner, I am a zany, graceful, talented, witty, determined, shiny, enchanting person who loves writing and wants to share my knowledge and understanding with you.