Advertisement
Scriptorz5

[🍬NEW] Bubble Gum Simulator

Nov 23rd, 2018
3,192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.05 KB | None | 0 0
  1. local BubbleGumSimulator = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local Heading = Instance.new("TextLabel")
  4. local Coins = Instance.new("TextButton")
  5. local CashStack = Instance.new("TextButton")
  6. local MoneyBag = Instance.new("TextButton")
  7. local Gem = Instance.new("TextButton")
  8. local SmallGemChest = Instance.new("TextButton")
  9. local GemBox = Instance.new("TextButton")
  10. local GemSafe = Instance.new("TextButton")
  11. local WoodChest = Instance.new("TextButton")
  12. local DoubleAutoSell = Instance.new("TextButton")
  13. local SilverChest = Instance.new("TextButton")
  14. local Close = Instance.new("TextButton")
  15. local AutoSell = Instance.new("TextButton")
  16. local UnlockAllPortals = Instance.new("TextButton")
  17. local Frame = Instance.new("Frame")
  18. local Open = Instance.new("TextButton")
  19.  
  20. BubbleGumSimulator.Name = "Bubble Gum Simulator"
  21. BubbleGumSimulator.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  22. BubbleGumSimulator.ResetOnSpawn = false
  23.  
  24. Main.Name = "Main"
  25. Main.Parent = BubbleGumSimulator
  26. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  27. Main.Position = UDim2.new(0,-600,0,266)
  28. Main.Size = UDim2.new(0, 450, 0, 250)
  29. Main.Visible = false
  30. Main.Active = true
  31. Main.Visible = true
  32. Main.Draggable = true
  33.  
  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.  
  45. local coins = false
  46.  
  47. Coins.Name = "Coins"
  48. Coins.Parent = Main
  49. Coins.BackgroundColor3 = Color3.new(0, 0, 0)
  50. Coins.Position = UDim2.new(0, 0, 0.197999999, 0)
  51. Coins.Size = UDim2.new(0, 150, 0, 50)
  52. Coins.Font = Enum.Font.SourceSans
  53. Coins.Text = " Coins : OFF"
  54. Coins.TextColor3 = Color3.new(1, 1, 1)
  55. Coins.TextSize = 14
  56. Coins.MouseButton1Down:connect(function()
  57. if not coins then
  58. Coins.Text = 'Coins : ON'
  59. coins = true
  60. repeat
  61. for i,v in pairs (game.workspace.Pickups.Coin:GetChildren()) do
  62. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  63. end
  64. wait()
  65. until coins == false
  66. else
  67. Coins.Text = 'Coins : OFF'
  68. coins = false
  69. end
  70. end)
  71.  
  72. local cash = false
  73.  
  74. CashStack.Name = "Cash Stack"
  75. CashStack.Parent = Main
  76. CashStack.BackgroundColor3 = Color3.new(0, 0, 0)
  77. CashStack.Position = UDim2.new(0.666666687, 0, 0.588999987, 0)
  78. CashStack.Size = UDim2.new(0, 150, 0, 50)
  79. CashStack.Font = Enum.Font.SourceSans
  80. CashStack.Text = "Cash Stack : OFF"
  81. CashStack.TextColor3 = Color3.new(1, 1, 1)
  82. CashStack.TextSize = 14
  83. CashStack.MouseButton1Down:connect(function()
  84. if not cash then
  85. CashStack.Text = 'Cash Stack : ON'
  86. cash = true
  87. repeat
  88. for i,v in pairs (game.workspace.Pickups["Cash Stack"]:GetChildren()) do
  89. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  90. end
  91. wait()
  92. until cash == false
  93. else
  94. CashStack.Text = 'Cash Stack : OFF'
  95. cash = false
  96. end
  97. end)
  98.  
  99. local money = false
  100.  
  101. MoneyBag.Name = "Money Bag"
  102. MoneyBag.Parent = Main
  103. MoneyBag.BackgroundColor3 = Color3.new(0, 0, 0)
  104. MoneyBag.Position = UDim2.new(0.666666687, 0, 0.197999999, 0)
  105. MoneyBag.Size = UDim2.new(0, 150, 0, 50)
  106. MoneyBag.Font = Enum.Font.SourceSans
  107. MoneyBag.Text = " Money Bag : OFF"
  108. MoneyBag.TextColor3 = Color3.new(1, 1, 1)
  109. MoneyBag.TextSize = 14
  110. MoneyBag.MouseButton1Down:connect(function()
  111. if not money then
  112. MoneyBag.Text = 'Money Bag : ON'
  113. money = true
  114. repeat
  115. for i,v in pairs (game.workspace.Pickups["Money Bag"]:GetChildren()) do
  116. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  117. end
  118. wait()
  119. until money == false
  120. else
  121. MoneyBag.Text = 'Money Bag : OFF'
  122. money = false
  123. end
  124. end)
  125.  
  126. local gem = false
  127.  
  128. Gem.Name = "Gem"
  129. Gem.Parent = Main
  130. Gem.BackgroundColor3 = Color3.new(0, 0, 0)
  131. Gem.Position = UDim2.new(0.666666687, 0, 0.400000006, 0)
  132. Gem.Size = UDim2.new(0, 150, 0, 50)
  133. Gem.Font = Enum.Font.SourceSans
  134. Gem.Text = "Gem : OFF"
  135. Gem.TextColor3 = Color3.new(1, 1, 1)
  136. Gem.TextSize = 14
  137. Gem.MouseButton1Down:connect(function()
  138. if not gem then
  139. Gem.Text = 'Gem : ON'
  140. gem = true
  141. repeat
  142. for i,v in pairs (game.workspace.Pickups.Gem:GetChildren()) do
  143. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  144. end
  145. wait()
  146. until gem == false
  147. else
  148. Gem.Text = 'Gem : OFF'
  149. gem = false
  150. end
  151. end)
  152.  
  153. local sgem = false
  154.  
  155. SmallGemChest.Name = "Small Gem Chest"
  156. SmallGemChest.Parent = Main
  157. SmallGemChest.BackgroundColor3 = Color3.new(0, 0, 0)
  158. SmallGemChest.Position = UDim2.new(0.333333343, 0, 0.590000033, 0)
  159. SmallGemChest.Size = UDim2.new(0, 150, 0, 50)
  160. SmallGemChest.Font = Enum.Font.SourceSans
  161. SmallGemChest.Text = "Small Gem Chest : OFF"
  162. SmallGemChest.TextColor3 = Color3.new(1, 1, 1)
  163. SmallGemChest.TextSize = 14
  164. SmallGemChest.MouseButton1Down:connect(function()
  165. if not sgem then
  166. SmallGemChest.Text = 'Small Gem Chest : ON'
  167. sgem = true
  168. repeat
  169. for i,v in pairs (game.workspace.Pickups["Small Gem Chest"]:GetChildren()) do
  170. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  171. end
  172. wait()
  173. until sgem == false
  174. else
  175. SmallGemChest.Text = 'Small Gem Chest : OFF'
  176. sgem = false
  177. end
  178. end)
  179.  
  180. local gemb = false
  181.  
  182. GemBox.Name = "Gem Box"
  183. GemBox.Parent = Main
  184. GemBox.BackgroundColor3 = Color3.new(0, 0, 0)
  185. GemBox.Position = UDim2.new(0.333333343, 0, 0.395999998, 0)
  186. GemBox.Size = UDim2.new(0, 150, 0, 50)
  187. GemBox.Font = Enum.Font.SourceSans
  188. GemBox.Text = "Gem Box : OFF"
  189. GemBox.TextColor3 = Color3.new(1, 1, 1)
  190. GemBox.TextSize = 14
  191. GemBox.MouseButton1Down:connect(function()
  192. if not gemb then
  193. GemBox.Text = 'Gem Box : ON'
  194. gemb = true
  195. repeat
  196. for i,v in pairs (game.workspace.Pickups["Gem Box"]:GetChildren()) do
  197. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  198. end
  199. wait()
  200. until gemb == false
  201. else
  202. GemBox.Text = 'Gem Box : OFF'
  203. gemb = false
  204. end
  205. end)
  206.  
  207. local sgem = false
  208.  
  209. GemSafe.Name = "Gem Safe"
  210. GemSafe.Parent = Main
  211. GemSafe.BackgroundColor3 = Color3.new(0, 0, 0)
  212. GemSafe.Position = UDim2.new(0.333333373, 0, 0.198000029, 0)
  213. GemSafe.Size = UDim2.new(0, 150, 0, 50)
  214. GemSafe.Font = Enum.Font.SourceSans
  215. GemSafe.Text = "Gem Safe : OFF"
  216. GemSafe.TextColor3 = Color3.new(1, 1, 1)
  217. GemSafe.TextSize = 14
  218. GemSafe.MouseButton1Down:connect(function()
  219. if not sgem then
  220. GemSafe.Text = 'Gem Safe : ON'
  221. sgem = true
  222. repeat
  223. for i,v in pairs (game.workspace.Pickups["Gem Safe"]:GetChildren()) do
  224. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  225. end
  226. wait()
  227. until sgem == false
  228. else
  229. GemSafe.Text = 'Gem Safe : OFF'
  230. sgem = false
  231. end
  232. end)
  233.  
  234. local wc = false
  235.  
  236. WoodChest.Name = "Wood Chest"
  237. WoodChest.Parent = Main
  238. WoodChest.BackgroundColor3 = Color3.new(0, 0, 0)
  239. WoodChest.Position = UDim2.new(0, 0, 0.400000006, 0)
  240. WoodChest.Size = UDim2.new(0, 150, 0, 50)
  241. WoodChest.Font = Enum.Font.SourceSans
  242. WoodChest.Text = "Wood Chest : OFF"
  243. WoodChest.TextColor3 = Color3.new(1, 1, 1)
  244. WoodChest.TextSize = 14
  245. WoodChest.MouseButton1Down:connect(function()
  246. if not wc then
  247. WoodChest.Text = 'Wood Chest : ON'
  248. wc = true
  249. repeat
  250. for i,v in pairs (game.workspace.Pickups["Wood Chest"]:GetChildren()) do
  251. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  252. end
  253. wait()
  254. until wc == false
  255. else
  256. WoodChest.Text = 'Wood Chest : OFF'
  257. wc = false
  258. end
  259. end)
  260.  
  261. local sc = false
  262.  
  263. local twosell = false
  264.  
  265. DoubleAutoSell.Name = "Double AutoSell"
  266. DoubleAutoSell.Parent = Main
  267. DoubleAutoSell.BackgroundColor3 = Color3.new(0, 0, 0)
  268. DoubleAutoSell.Position = UDim2.new(0, 0, 0.797999978, 0)
  269. DoubleAutoSell.Size = UDim2.new(0, 150, 0, 50)
  270. DoubleAutoSell.Font = Enum.Font.SourceSans
  271. DoubleAutoSell.Text = "Double Auto Sell : OFF"
  272. DoubleAutoSell.TextColor3 = Color3.new(1, 1, 1)
  273. DoubleAutoSell.TextSize = 14
  274. DoubleAutoSell.MouseButton1Down:connect(function()
  275. if not twosell then
  276. DoubleAutoSell.Text = 'Double Auto Sell : ON'
  277. twosell = true
  278. repeat
  279. game.workspace.Activations.TwilightSell.Root.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  280. wait()
  281. until twosell == false
  282. else
  283. DoubleAutoSell.Text = 'Double Auto Sell : OFF'
  284. twosell = false
  285. end
  286. end)
  287.  
  288. SilverChest.Name = "Silver Chest"
  289. SilverChest.Parent = Main
  290. SilverChest.BackgroundColor3 = Color3.new(0, 0, 0)
  291. SilverChest.Position = UDim2.new(0, 0, 0.593999982, 0)
  292. SilverChest.Size = UDim2.new(0, 150, 0, 50)
  293. SilverChest.Font = Enum.Font.SourceSans
  294. SilverChest.Text = "Silver Chest : OFF"
  295. SilverChest.TextColor3 = Color3.new(1, 1, 1)
  296. SilverChest.TextSize = 14
  297. SilverChest.MouseButton1Down:connect(function()
  298. if not sc then
  299. SilverChest.Text = 'Silver Chest : ON'
  300. sc = true
  301. repeat
  302. for i,v in pairs (game.workspace.Pickups["Silver Chest"]:GetChildren()) do
  303. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  304. end
  305. wait()
  306. until sc == false
  307. else
  308. SilverChest.Text = 'Silver Chest : OFF'
  309. sc = false
  310. end
  311. end)
  312.  
  313. Close.Name = "Close"
  314. Close.Parent = Main
  315. Close.BackgroundColor3 = Color3.new(0, 0, 0)
  316. Close.Position = UDim2.new(0.888888896, 0, 0, 0)
  317. Close.Size = UDim2.new(0, 50, 0, 49)
  318. Close.Font = Enum.Font.SourceSans
  319. Close.Text = "X"
  320. Close.TextColor3 = Color3.new(1, 1, 1)
  321. Close.TextSize = 14
  322. Close.MouseButton1Down:connect(function()
  323. Frame.Visible = true
  324. Main:TweenPosition(UDim2.new(0,-600,0,266), "Out", "Quad", 1)
  325. end)
  326.  
  327. local sell = false
  328.  
  329. AutoSell.Name = "AutoSell"
  330. AutoSell.Parent = Main
  331. AutoSell.BackgroundColor3 = Color3.new(0, 0, 0)
  332. AutoSell.Position = UDim2.new(0.333333343, 0, 0.797999978, 0)
  333. AutoSell.Size = UDim2.new(0, 150, 0, 50)
  334. AutoSell.Font = Enum.Font.SourceSans
  335. AutoSell.Text = "Auto Sell : OFF"
  336. AutoSell.TextColor3 = Color3.new(1, 1, 1)
  337. AutoSell.TextSize = 14
  338. AutoSell.MouseButton1Down:connect(function()
  339. if not sell then
  340. AutoSell.Text = 'Auto Sell : ON'
  341. sell = true
  342. repeat
  343. game.workspace.Activations.Sell.Root.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  344. wait()
  345. until sell == false
  346. else
  347. AutoSell.Text = 'Auto Sell : OFF'
  348. sell = false
  349. end
  350. end)
  351.  
  352. UnlockAllPortals.Name = "Unlock All Portals"
  353. UnlockAllPortals.Parent = Main
  354. UnlockAllPortals.BackgroundColor3 = Color3.new(0, 0, 0)
  355. UnlockAllPortals.Position = UDim2.new(0.666666687, 0, 0.797999978, 0)
  356. UnlockAllPortals.Size = UDim2.new(0, 150, 0, 50)
  357. UnlockAllPortals.Font = Enum.Font.SourceSans
  358. UnlockAllPortals.Text = "Unlock All Portals"
  359. UnlockAllPortals.TextColor3 = Color3.new(1, 1, 1)
  360. UnlockAllPortals.TextSize = 14
  361. UnlockAllPortals.MouseButton1Down:connect(function()
  362. for _,FloatingIsland in pairs (workspace.FloatingIslands:GetChildren()) do
  363. wait(1)
  364. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(FloatingIsland.Collision.Position)
  365. end
  366. end)
  367.  
  368. Frame.Parent = BubbleGumSimulator
  369. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  370. Frame.Position = UDim2.new(0.926620662, 0, 0.47410357, 0)
  371. Frame.Size = UDim2.new(0, 100, 0, 25)
  372.  
  373. Open.Name = "Open"
  374. Open.Parent = Frame
  375. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  376. Open.Size = UDim2.new(0, 100, 0, 25)
  377. Open.Font = Enum.Font.SourceSans
  378. Open.Text = "Open"
  379. Open.TextColor3 = Color3.new(1, 1, 1)
  380. Open.TextSize = 14
  381. Open.MouseButton1Down:connect(function()
  382. Main:TweenPosition(UDim2.new(0.336689293, 0, 0.300390422, 0), "In", "Quad", 1)
  383. Frame.Visible = false
  384. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement