Advertisement
Scriptorz5

bubblsim

Nov 24th, 2018
769
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.95 KB | None | 0 0
  1. local BubbleGumSimulator = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local Open = Instance.new("TextButton")
  4. local Main = Instance.new("Frame")
  5. local Heading = Instance.new("TextLabel")
  6. local Coins = Instance.new("TextButton")
  7. local CashStack = Instance.new("TextButton")
  8. local MoneyBag = Instance.new("TextButton")
  9. local Gem = Instance.new("TextButton")
  10. local GemChests = Instance.new("TextButton")
  11. local GemBox = Instance.new("TextButton")
  12. local GemSafe = Instance.new("TextButton")
  13. local Chests = Instance.new("TextButton")
  14. local AutoSell = Instance.new("TextButton")
  15. local AutoFarm = Instance.new("TextButton")
  16. local Close = Instance.new("TextButton")
  17. local MythicalChest = Instance.new("TextButton")
  18. local Teleports = Instance.new("TextButton")
  19. local Tele = Instance.new("Frame")
  20. local TeleHeading = Instance.new("TextLabel")
  21. local GodlyChest = Instance.new("TextButton")
  22. local FloatingIsland = Instance.new("TextButton")
  23. local Space = Instance.new("TextButton")
  24. local Void = Instance.new("TextButton")
  25. local SkyIsland = Instance.new("TextButton")
  26. local Twilight = Instance.new("TextButton")
  27. local VipArea = Instance.new("TextButton")
  28. local Shop = Instance.new("TextButton")
  29. local SpaceShop = Instance.new("TextButton")
  30. local UnlockAllPortals = Instance.new("TextButton")
  31.  
  32. BubbleGumSimulator.Name = "Bubble Gum Simulator"
  33. BubbleGumSimulator.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  34. BubbleGumSimulator.ResetOnSpawn = false
  35.  
  36. Frame.Parent = BubbleGumSimulator
  37. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  38. Frame.Position = UDim2.new(0.926620662, 0, 0.47410357, 0)
  39. Frame.Size = UDim2.new(0, 100, 0, 25)
  40.  
  41. Open.Name = "Open"
  42. Open.Parent = Frame
  43. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  44. Open.Size = UDim2.new(0, 100, 0, 25)
  45. Open.Font = Enum.Font.SourceSans
  46. Open.Text = "Open"
  47. Open.TextColor3 = Color3.new(1, 1, 1)
  48. Open.TextSize = 14
  49. Open.MouseButton1Down:connect(function()
  50. Main:TweenPosition(UDim2.new(0.336689293, 0, 0.300390422, 0), "In", "Quad", 1)
  51. Frame.Visible = false
  52. Tele.Visible = false
  53. end)
  54.  
  55. Main.Name = "Main"
  56. Main.Parent = BubbleGumSimulator
  57. Main.Active = true
  58. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  59. Main.Draggable = true
  60. Main.Position = UDim2.new(0,-600,0,266)
  61. Main.Size = UDim2.new(0, 450, 0, 250)
  62.  
  63. Heading.Name = "Heading"
  64. Heading.Parent = Main
  65. Heading.BackgroundColor3 = Color3.new(0, 0, 0)
  66. Heading.Position = UDim2.new(0, 0, -0.00399995642, 0)
  67. Heading.Size = UDim2.new(0, 400, 0, 50)
  68. Heading.Font = Enum.Font.ArialBold
  69. Heading.Text = "Bubble Gum Simulator"
  70. Heading.TextColor3 = Color3.new(1, 1, 1)
  71. Heading.TextScaled = true
  72. Heading.TextSize = 14
  73. Heading.TextWrapped = true
  74.  
  75. local coins = false
  76.  
  77. Coins.Name = "Coins"
  78. Coins.Parent = Main
  79. Coins.BackgroundColor3 = Color3.new(0, 0, 0)
  80. Coins.Position = UDim2.new(0, 0, 0.197999999, 0)
  81. Coins.Size = UDim2.new(0, 150, 0, 50)
  82. Coins.Font = Enum.Font.SourceSans
  83. Coins.Text = " Coins : OFF"
  84. Coins.TextColor3 = Color3.new(1, 1, 1)
  85. Coins.TextSize = 14
  86. Coins.MouseButton1Down:connect(function()
  87. if not coins then
  88. Coins.Text = 'Coins : ON'
  89. coins = true
  90. repeat
  91. for i,v in pairs (game.workspace.Pickups.Coin:GetChildren()) do
  92. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  93. end
  94. wait()
  95. until coins == false
  96. else
  97. Coins.Text = 'Coins : OFF'
  98. coins = false
  99. end
  100. end)
  101.  
  102. local cash = false
  103.  
  104. CashStack.Name = "Cash Stack"
  105. CashStack.Parent = Main
  106. CashStack.BackgroundColor3 = Color3.new(0, 0, 0)
  107. CashStack.Position = UDim2.new(0.666666687, 0, 0.588999987, 0)
  108. CashStack.Size = UDim2.new(0, 150, 0, 50)
  109. CashStack.Font = Enum.Font.SourceSans
  110. CashStack.Text = "Cash Stack : OFF"
  111. CashStack.TextColor3 = Color3.new(1, 1, 1)
  112. CashStack.TextSize = 14
  113. CashStack.MouseButton1Down:connect(function()
  114. if not cash then
  115. CashStack.Text = 'Cash Stack : ON'
  116. cash = true
  117. repeat
  118. for i,v in pairs (game.workspace.Pickups["Cash Stack"]:GetChildren()) do
  119. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  120. end
  121. wait()
  122. until cash == false
  123. else
  124. CashStack.Text = 'Cash Stack : OFF'
  125. cash = false
  126. end
  127. end)
  128.  
  129. local money = false
  130.  
  131. MoneyBag.Name = "Money Bag"
  132. MoneyBag.Parent = Main
  133. MoneyBag.BackgroundColor3 = Color3.new(0, 0, 0)
  134. MoneyBag.Position = UDim2.new(0.666666687, 0, 0.197999999, 0)
  135. MoneyBag.Size = UDim2.new(0, 150, 0, 50)
  136. MoneyBag.Font = Enum.Font.SourceSans
  137. MoneyBag.Text = " Money Bag : OFF"
  138. MoneyBag.TextColor3 = Color3.new(1, 1, 1)
  139. MoneyBag.TextSize = 14
  140. MoneyBag.MouseButton1Down:connect(function()
  141. if not money then
  142. MoneyBag.Text = 'Money Bag : ON'
  143. money = true
  144. repeat
  145. for i,v in pairs (game.workspace.Pickups["Money Bag"]:GetChildren()) do
  146. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  147. end
  148. wait()
  149. until money == false
  150. else
  151. MoneyBag.Text = 'Money Bag : OFF'
  152. money = false
  153. end
  154. end)
  155.  
  156. local gem = false
  157.  
  158. Gem.Name = "Gem"
  159. Gem.Parent = Main
  160. Gem.BackgroundColor3 = Color3.new(0, 0, 0)
  161. Gem.Position = UDim2.new(0.666666687, 0, 0.400000006, 0)
  162. Gem.Size = UDim2.new(0, 150, 0, 50)
  163. Gem.Font = Enum.Font.SourceSans
  164. Gem.Text = "Gem : OFF"
  165. Gem.TextColor3 = Color3.new(1, 1, 1)
  166. Gem.TextSize = 14
  167. Gem.MouseButton1Down:connect(function()
  168. if not gem then
  169. Gem.Text = 'Gem : ON'
  170. gem = true
  171. repeat
  172. for i,v in pairs (game.workspace.Pickups.Gem:GetChildren()) do
  173. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  174. end
  175. wait()
  176. until gem == false
  177. else
  178. Gem.Text = 'Gem : OFF'
  179. gem = false
  180. end
  181. end)
  182.  
  183. local sgem = false
  184.  
  185. GemChests.Name = "Gem Chests"
  186. GemChests.Parent = Main
  187. GemChests.BackgroundColor3 = Color3.new(0, 0, 0)
  188. GemChests.Position = UDim2.new(0.333333343, 0, 0.590000033, 0)
  189. GemChests.Size = UDim2.new(0, 150, 0, 50)
  190. GemChests.Font = Enum.Font.SourceSans
  191. GemChests.Text = "Gem Chests : OFF"
  192. GemChests.TextColor3 = Color3.new(1, 1, 1)
  193. GemChests.TextSize = 14
  194. GemChests.MouseButton1Down:connect(function()
  195. if not sgem then
  196. GemChests.Text = 'Gem Chests : ON'
  197. sgem = true
  198. repeat
  199. for i,v in pairs (game.workspace.Pickups["Small Gem Chest"]:GetChildren()) do
  200. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  201. end
  202. for i,v in pairs (game.workspace.Pickups["Gem Chest"]:GetChildren()) do
  203. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  204. end
  205. wait()
  206. until sgem == false
  207. else
  208. GemChests.Text = 'Gem Chests : OFF'
  209. sgem = false
  210. end
  211. end)
  212.  
  213. local gemb = false
  214.  
  215. GemBox.Name = "Gem Box"
  216. GemBox.Parent = Main
  217. GemBox.BackgroundColor3 = Color3.new(0, 0, 0)
  218. GemBox.Position = UDim2.new(0.333333343, 0, 0.395999998, 0)
  219. GemBox.Size = UDim2.new(0, 150, 0, 50)
  220. GemBox.Font = Enum.Font.SourceSans
  221. GemBox.Text = "Gem Box : OFF"
  222. GemBox.TextColor3 = Color3.new(1, 1, 1)
  223. GemBox.TextSize = 14
  224. GemBox.MouseButton1Down:connect(function()
  225. if not gemb then
  226. GemBox.Text = 'Gem Box : ON'
  227. gemb = true
  228. repeat
  229. for i,v in pairs (game.workspace.Pickups["Gem Box"]:GetChildren()) do
  230. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  231. end
  232. wait()
  233. until gemb == false
  234. else
  235. GemBox.Text = 'Gem Box : OFF'
  236. gemb = false
  237. end
  238. end)
  239.  
  240. local sgem = false
  241.  
  242. GemSafe.Name = "Gem Safe"
  243. GemSafe.Parent = Main
  244. GemSafe.BackgroundColor3 = Color3.new(0, 0, 0)
  245. GemSafe.Position = UDim2.new(0.333333373, 0, 0.198000029, 0)
  246. GemSafe.Size = UDim2.new(0, 150, 0, 50)
  247. GemSafe.Font = Enum.Font.SourceSans
  248. GemSafe.Text = "Gem Safe : OFF"
  249. GemSafe.TextColor3 = Color3.new(1, 1, 1)
  250. GemSafe.TextSize = 14
  251. GemSafe.MouseButton1Down:connect(function()
  252. if not sgem then
  253. GemSafe.Text = 'Gem Safe : ON'
  254. sgem = true
  255. repeat
  256. for i,v in pairs (game.workspace.Pickups["Gem Safe"]:GetChildren()) do
  257. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  258. end
  259. wait()
  260. until sgem == false
  261. else
  262. GemSafe.Text = 'Gem Safe : OFF'
  263. sgem = false
  264. end
  265. end)
  266.  
  267. local c = false
  268.  
  269. Chests.Name = "Chests"
  270. Chests.Parent = Main
  271. Chests.BackgroundColor3 = Color3.new(0, 0, 0)
  272. Chests.Position = UDim2.new(0, 0, 0.400000006, 0)
  273. Chests.Size = UDim2.new(0, 150, 0, 50)
  274. Chests.Font = Enum.Font.SourceSans
  275. Chests.Text = "Chests : OFF"
  276. Chests.TextColor3 = Color3.new(1, 1, 1)
  277. Chests.TextSize = 14
  278. Chests.MouseButton1Down:connect(function()
  279. if not c then
  280. Chests.Text = 'Chests : ON'
  281. c = true
  282. repeat
  283. for i,v in pairs (game.workspace.Pickups["Wood Chest"]:GetChildren()) do
  284. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  285. end
  286. for i,v in pairs (game.workspace.Pickups["Gold Chest"]:GetChildren()) do
  287. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  288. end
  289. for i,v in pairs (game.workspace.Pickups["Silver Chest"]:GetChildren()) do
  290. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  291. end
  292. wait()
  293. until c == false
  294. else
  295. Chests.Text = 'Chests : OFF'
  296. c = false
  297. end
  298. end)
  299.  
  300. local twosell = false
  301.  
  302. AutoSell.Name = "AutoSell"
  303. AutoSell.Parent = Main
  304. AutoSell.BackgroundColor3 = Color3.new(0, 0, 0)
  305. AutoSell.Position = UDim2.new(0, 0, 0.797999978, 0)
  306. AutoSell.Size = UDim2.new(0, 150, 0, 50)
  307. AutoSell.Font = Enum.Font.SourceSans
  308. AutoSell.Text = "Auto Sell : OFF"
  309. AutoSell.TextColor3 = Color3.new(1, 1, 1)
  310. AutoSell.TextSize = 14
  311. AutoSell.MouseButton1Down:connect(function()
  312. if not twosell then
  313. AutoSell.Text = 'Auto Sell : ON'
  314. twosell = true
  315. repeat
  316. game.workspace.Activations.TwilightSell.Root.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  317. game.workspace.Activations.Sell.Root.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  318. wait()
  319. until twosell == false
  320. else
  321. AutoSell.Text = 'Auto Sell : OFF'
  322. twosell = false
  323. end
  324. end)
  325.  
  326. local a = false
  327.  
  328. AutoFarm.Name = "AutoFarm"
  329. AutoFarm.Parent = Main
  330. AutoFarm.BackgroundColor3 = Color3.new(0, 0, 0)
  331. AutoFarm.Position = UDim2.new(0, 0, 0.593999982, 0)
  332. AutoFarm.Size = UDim2.new(0, 150, 0, 50)
  333. AutoFarm.Font = Enum.Font.SourceSans
  334. AutoFarm.Text = "Auto Farm : OFF"
  335. AutoFarm.TextColor3 = Color3.new(1, 1, 1)
  336. AutoFarm.TextSize = 14
  337. AutoFarm.MouseButton1Down:connect(function()
  338. if not a then
  339. AutoFarm.Text = 'Auto Farm : ON'
  340. a = true
  341. repeat
  342. local RemotesTable = {}
  343. local TRUEREMOTE
  344.  
  345. for _,Remote in pairs (game.ReplicatedStorage:GetChildren()) do
  346. if Remote:IsA("RemoteEvent") or Remote:IsA("RemoteFunction") and Remote.Name ~= "Network" then
  347. Remote.Name = #RemotesTable + 1
  348. RemotesTable[#RemotesTable + 1] = Remote
  349. end
  350. end
  351.  
  352. spawn(function()
  353. while wait() do
  354. if TRUEREMOTE then
  355. TRUEREMOTE:FireServer("BlowBubble")
  356. TRUEREMOTE:FireServer("SellBubble", "Sell")
  357. TRUEREMOTE:FireServer("SellBubble", "TwilightSell")
  358. TRUEREMOTE:FireServer("ClaimAchievement", 1)
  359. TRUEREMOTE:FireServer("ClaimAchievement", 2)
  360. TRUEREMOTE:FireServer("ClaimAchievement", 3)
  361. end
  362. end
  363. end)
  364.  
  365. Detect = {
  366. RemoteEvent = true;
  367. RemoteFunction = true;
  368. }
  369.  
  370. local MT = getrawmetatable(game)
  371.  
  372. if setreadonly then
  373. setreadonly(MT,false)
  374. end
  375.  
  376. if make_writeable then
  377. make_writeable(MT)
  378. end
  379.  
  380. local oldNamecall = MT.__namecall
  381.  
  382. MT.__namecall = function(instance,...)
  383. local args = {...}
  384. local Check = args[#args]
  385. if (Check=="FireServer" or Check=="Fire" or Check=="InvokeServer" or Check=="Invoke") and Detect[instance.ClassName] then
  386. if args[1] == "BlowBubble" then
  387. TRUEREMOTE = instance
  388. return {oldNamecall(instance,...)}
  389. end
  390. end
  391. return oldNamecall(instance,...)
  392. end
  393. wait()
  394. until a == false
  395. else
  396. AutoFarm.Text = 'Auto Farm : OFF'
  397. a = false
  398. end
  399. end)
  400.  
  401. Close.Name = "Close"
  402. Close.Parent = Main
  403. Close.BackgroundColor3 = Color3.new(0, 0, 0)
  404. Close.Position = UDim2.new(0.888888896, 0, -0.00400000019, 0)
  405. Close.Size = UDim2.new(0, 50, 0, 49)
  406. Close.Font = Enum.Font.SourceSans
  407. Close.Text = "X"
  408. Close.TextColor3 = Color3.new(1, 1, 1)
  409. Close.TextSize = 14
  410. Close.MouseButton1Down:connect(function()
  411. Frame.Visible = true
  412. Main:TweenPosition(UDim2.new(0,-600,0,266), "Out", "Quad", 1)
  413. Tele.Visible = false
  414. end)
  415.  
  416. local mc = false
  417.  
  418. MythicalChest.Name = "MythicalChest"
  419. MythicalChest.Parent = Main
  420. MythicalChest.BackgroundColor3 = Color3.new(0, 0, 0)
  421. MythicalChest.Position = UDim2.new(0.333333343, 0, 0.797999978, 0)
  422. MythicalChest.Size = UDim2.new(0, 150, 0, 50)
  423. MythicalChest.Font = Enum.Font.SourceSans
  424. MythicalChest.Text = "Mythical Chest : OFF"
  425. MythicalChest.TextColor3 = Color3.new(1, 1, 1)
  426. MythicalChest.TextSize = 14
  427. MythicalChest.MouseButton1Down:connect(function()
  428. if not mc then
  429. MythicalChest.Text = 'Mythical Chest : ON'
  430. mc = true
  431. repeat
  432. for i,v in pairs (game.workspace.Pickups["Mythical Chest"]:GetChildren()) do
  433. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  434. end
  435. wait()
  436. until mc == false
  437. else
  438. MythicalChest.Text = 'Mythical Chest : OFF'
  439. mc = false
  440. end
  441. end)
  442.  
  443. Teleports.Name = "Teleports"
  444. Teleports.Parent = Main
  445. Teleports.BackgroundColor3 = Color3.new(0, 0, 0)
  446. Teleports.Position = UDim2.new(0.666666687, 0, 0.797999978, 0)
  447. Teleports.Size = UDim2.new(0, 150, 0, 50)
  448. Teleports.Font = Enum.Font.SourceSans
  449. Teleports.Text = "Teleports"
  450. Teleports.TextColor3 = Color3.new(1, 1, 1)
  451. Teleports.TextSize = 14
  452. Teleports.MouseButton1Down:connect(function()
  453. if Tele.Visible == false then
  454. Tele.Visible = true
  455. elseif Tele.Visible == true then
  456. Tele.Visible = false
  457. end
  458. end)
  459.  
  460. Tele.Name = "Tele"
  461. Tele.Parent = BubbleGumSimulator
  462. Tele.Active = true
  463. Tele.BackgroundColor3 = Color3.new(0, 0, 0)
  464. Tele.Position = UDim2.new(0.0919651464, 0, 0.296812743, 0)
  465. Tele.Size = UDim2.new(0, 200, 0, 300)
  466. Tele.Visible = false
  467.  
  468. TeleHeading.Name = "Tele Heading"
  469. TeleHeading.Parent = Tele
  470. TeleHeading.BackgroundColor3 = Color3.new(0, 0, 0)
  471. TeleHeading.Position = UDim2.new(0, 0, -0.0013332963, 0)
  472. TeleHeading.Size = UDim2.new(0, 200, 0, 50)
  473. TeleHeading.Font = Enum.Font.ArialBold
  474. TeleHeading.Text = "Teleports"
  475. TeleHeading.TextColor3 = Color3.new(1, 1, 1)
  476. TeleHeading.TextSize = 30
  477. TeleHeading.TextWrapped = true
  478.  
  479. GodlyChest.Name = "Godly Chest"
  480. GodlyChest.Parent = Tele
  481. GodlyChest.BackgroundColor3 = Color3.new(0, 0, 0)
  482. GodlyChest.Position = UDim2.new(0, 0, 0.167999998, 0)
  483. GodlyChest.Size = UDim2.new(0, 100, 0, 50)
  484. GodlyChest.Font = Enum.Font.SourceSans
  485. GodlyChest.Text = "Godly Chest + Sky Chest"
  486. GodlyChest.TextColor3 = Color3.new(1, 1, 1)
  487. GodlyChest.TextSize = 10
  488. GodlyChest.MouseButton1Down:connect(function()
  489. game.workspace.Activations["Chest Collect The Skylands"].Root.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  490. game.workspace.Activations["Chest Collect The Floating Island"].Root.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  491. end)
  492.  
  493. FloatingIsland.Name = "Floating Island"
  494. FloatingIsland.Parent = Tele
  495. FloatingIsland.BackgroundColor3 = Color3.new(0, 0, 0)
  496. FloatingIsland.Position = UDim2.new(0.5, 0, 0.167333335, 0)
  497. FloatingIsland.Size = UDim2.new(0, 100, 0, 50)
  498. FloatingIsland.Font = Enum.Font.SourceSans
  499. FloatingIsland.Text = "Floating Island"
  500. FloatingIsland.TextColor3 = Color3.new(1, 1, 1)
  501. FloatingIsland.TextSize = 14
  502. FloatingIsland.MouseButton1Down:connect(function()
  503. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.FloatingIslands["The Floating Island"].Pickups["The Floating Island"].CFrame
  504. end)
  505.  
  506. Space.Name = "Space"
  507. Space.Parent = Tele
  508. Space.BackgroundColor3 = Color3.new(0, 0, 0)
  509. Space.Position = UDim2.new(0.5, 0, 0.328666687, 0)
  510. Space.Size = UDim2.new(0, 100, 0, 50)
  511. Space.Font = Enum.Font.SourceSans
  512. Space.Text = "Space"
  513. Space.TextColor3 = Color3.new(1, 1, 1)
  514. Space.TextSize = 14
  515. Space.MouseButton1Down:connect(function()
  516. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.FloatingIslands.Space.Decore.SpaceAdventure.Model.Part.CFrame
  517. end)
  518.  
  519. Void.Name = "Void"
  520. Void.Parent = Tele
  521. Void.BackgroundColor3 = Color3.new(0, 0, 0)
  522. Void.Position = UDim2.new(0, 0, 0.332666695, 0)
  523. Void.Size = UDim2.new(0, 100, 0, 50)
  524. Void.Font = Enum.Font.SourceSans
  525. Void.Text = "Void"
  526. Void.TextColor3 = Color3.new(1, 1, 1)
  527. Void.TextSize = 14
  528. Void.MouseButton1Down:connect(function()
  529. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.FloatingIslands["The Void"].Pickups["The Void"].CFrame
  530. end)
  531.  
  532. SkyIsland.Name = "Sky Island"
  533. SkyIsland.Parent = Tele
  534. SkyIsland.BackgroundColor3 = Color3.new(0, 0, 0)
  535. SkyIsland.Position = UDim2.new(0, 0, 0.502666652, 0)
  536. SkyIsland.Size = UDim2.new(0, 100, 0, 50)
  537. SkyIsland.Font = Enum.Font.SourceSans
  538. SkyIsland.Text = "Sky Island"
  539. SkyIsland.TextColor3 = Color3.new(1, 1, 1)
  540. SkyIsland.TextSize = 14
  541. SkyIsland.MouseButton1Down:connect(function()
  542. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.FloatingIslands["The Skylands"].Pickups["The Skylands"].CFrame
  543. end)
  544.  
  545. Twilight.Name = "Twilight"
  546. Twilight.Parent = Tele
  547. Twilight.BackgroundColor3 = Color3.new(0, 0, 0)
  548. Twilight.Position = UDim2.new(0.5, 0, 0.502666652, 0)
  549. Twilight.Size = UDim2.new(0, 100, 0, 50)
  550. Twilight.Font = Enum.Font.SourceSans
  551. Twilight.Text = "Twilight"
  552. Twilight.TextColor3 = Color3.new(1, 1, 1)
  553. Twilight.TextSize = 14
  554. Twilight.MouseButton1Down:connect(function()
  555. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.FloatingIslands["The Twilight"].Pickups["The Twilight"].CFrame
  556. end)
  557.  
  558. VipArea.Name = "Vip Area"
  559. VipArea.Parent = Tele
  560. VipArea.BackgroundColor3 = Color3.new(0, 0, 0)
  561. VipArea.Position = UDim2.new(0, 0, 0.671333313, 0)
  562. VipArea.Size = UDim2.new(0, 100, 0, 50)
  563. VipArea.Font = Enum.Font.SourceSans
  564. VipArea.Text = "Vip Area"
  565. VipArea.TextColor3 = Color3.new(1, 1, 1)
  566. VipArea.TextSize = 14
  567. VipArea.MouseButton1Down:connect(function()
  568. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-173.966278, 44.9418716, -313.896579, 0.458520412, 5.124108e-08, 0.888683856, -3.80402341e-08, 1, -3.80402341e-08 , 0.888683856, -1.63634475e-08, 0.458520412)
  569. end)
  570.  
  571. Shop.Name = "Shop"
  572. Shop.Parent = Tele
  573. Shop.BackgroundColor3 = Color3.new(0, 0, 0)
  574. Shop.Position = UDim2.new(0.5, 0, 0.671333313, 0)
  575. Shop.Size = UDim2.new(0, 100, 0, 50)
  576. Shop.Font = Enum.Font.SourceSans
  577. Shop.Text = "Shop"
  578. Shop.TextColor3 = Color3.new(1, 1, 1)
  579. Shop.TextSize = 14
  580. Shop.MouseButton1Down:connect(function()
  581. game.workspace.Activations.EarthShop.Root.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  582. end)
  583.  
  584. SpaceShop.Name = "Space Shop"
  585. SpaceShop.Parent = Tele
  586. SpaceShop.BackgroundColor3 = Color3.new(0, 0, 0)
  587. SpaceShop.Position = UDim2.new(0.5, 0, 0.83799994, 0)
  588. SpaceShop.Size = UDim2.new(0, 100, 0, 50)
  589. SpaceShop.Font = Enum.Font.SourceSans
  590. SpaceShop.Text = "Space Shop"
  591. SpaceShop.TextColor3 = Color3.new(1, 1, 1)
  592. SpaceShop.TextSize = 14
  593. SpaceShop.MouseButton1Down:connect(function()
  594. game.workspace.Activations.SpaceShop.Root.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  595. end)
  596.  
  597. UnlockAllPortals.Name = "Unlock All Portals"
  598. UnlockAllPortals.Parent = Tele
  599. UnlockAllPortals.BackgroundColor3 = Color3.new(0, 0, 0)
  600. UnlockAllPortals.Position = UDim2.new(0, 0, 0.83799994, 0)
  601. UnlockAllPortals.Size = UDim2.new(0, 100, 0, 50)
  602. UnlockAllPortals.Font = Enum.Font.SourceSans
  603. UnlockAllPortals.Text = "Unlock All Portals"
  604. UnlockAllPortals.TextColor3 = Color3.new(1, 1, 1)
  605. UnlockAllPortals.TextSize = 14
  606. UnlockAllPortals.MouseButton1Down:connect(function()
  607. for _,FloatingIsland in pairs (workspace.FloatingIslands:GetChildren()) do
  608. wait(1)
  609. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(FloatingIsland.Collision.Position)
  610. end
  611. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement