EliteWolfie

Bubble Gum Simulator Script

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