Upscalefanatic3

Balloon Simulator GUI Script

Mar 8th, 2019
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.78 KB | None | 0 0
  1. --[[
  2. This GUI is made By : xDDD
  3. Don't Forget to Vouch
  4. --]]
  5.  
  6. print("Getting Player...")
  7. local plr = game:GetService("Players").LocalPlayer
  8. print("Success.")
  9.  
  10. print("Getting ReplicatedStorage...")
  11. local replicatedStorage = game:GetService("ReplicatedStorage")
  12. print("Success.")
  13.  
  14. print("Creating Instances...")
  15.  
  16.  
  17. -- Instances:
  18. local BalloonSimulator = Instance.new("ScreenGui")
  19. local DragFrame = Instance.new("Frame")
  20. local MainFrame = Instance.new("Frame")
  21. local CreditsFrame = Instance.new("Frame")
  22. local CreatorLabel = Instance.new("TextLabel")
  23. local ScriptsByLabel = Instance.new("TextLabel")
  24. local DiscordLabel = Instance.new("TextLabel")
  25. local TeleportsFrame = Instance.new("ScrollingFrame")
  26. local TpSpawnButton = Instance.new("TextButton")
  27. local TpChestsLabel = Instance.new("TextLabel")
  28. local TpArcherChestButton = Instance.new("TextButton")
  29. local TpBeachChestButton = Instance.new("TextButton")
  30. local TpAncientChestButton = Instance.new("TextButton")
  31. local TpTropicalParadiseButton = Instance.new("TextButton")
  32. local TpCandylandButton = Instance.new("TextButton")
  33. local TpArchervilleButton = Instance.new("TextButton")
  34. local TpAncientGreeceButton = Instance.new("TextButton")
  35. local TpSkylandButton = Instance.new("TextButton")
  36. local SettingsFrame = Instance.new("ScrollingFrame")
  37. local ScriptsFrame = Instance.new("ScrollingFrame")
  38. local ScriptsLabel = Instance.new("TextLabel")
  39. local FarmCoinsLabel = Instance.new("TextLabel")
  40. local FarmCoinsButton = Instance.new("TextButton")
  41. local FarmGemsLabel = Instance.new("TextLabel")
  42. local FarmGemsButton = Instance.new("TextButton")
  43. local AutoSellLabel = Instance.new("TextLabel")
  44. local AutoSellButton = Instance.new("TextButton")
  45. local AddBalloonLabel = Instance.new("TextLabel")
  46. local AddBalloonButton = Instance.new("TextButton")
  47. local TextBox = Instance.new("TextBox")
  48. local InfiniteBackpackButton = Instance.new("TextButton")
  49. local HomeFrame = Instance.new("Frame")
  50. local WelcomeLabel = Instance.new("TextLabel")
  51. local FeaturesLabel = Instance.new("TextLabel")
  52. local CreditsButton = Instance.new("TextButton")
  53. local HomeButton = Instance.new("TextButton")
  54. local ScriptsButton = Instance.new("TextButton")
  55. local SettingsButton = Instance.new("TextButton")
  56. local TeleportsButton = Instance.new("TextButton")
  57. local MinimizeButton = Instance.new("TextButton")
  58. local MaximiseButton = Instance.new("TextButton")
  59. local ExitButton = Instance.new("TextButton")
  60. local heading = Instance.new("TextLabel")
  61.  
  62.  
  63. print("Extracting and Setting up required game data...")
  64. --Game Data Extraction
  65.  
  66. local locations = game.Workspace.Destinations
  67. local chests = game.Workspace.Chests
  68. local coins = game.Workspace.Coins
  69. local gems = game.Workspace.Gems
  70. local sellPart = game.Workspace.UITriggers.Sell
  71.  
  72.  
  73. print("Success.\nSorting GUI items, properties and Scripts...")
  74.  
  75.  
  76. --More Variables:
  77.  
  78. local mainTabs = {
  79. HomeFrame,
  80. ScriptsFrame,
  81. TeleportsFrame,
  82. SettingsFrame,
  83. CreditsFrame
  84. }
  85. local mainButtons = {
  86. HomeButton,
  87. ScriptsButton,
  88. TeleportsButton,
  89. SettingsButton,
  90. CreditsButton
  91. }
  92.  
  93.  
  94. --Utitity Functions
  95.  
  96. local function HideAllFrames()
  97. for i,v in pairs(mainTabs) do
  98. v.Visible = false
  99. end
  100. end
  101.  
  102. local function MainButtonsColorReset()
  103. for i,v in pairs(mainButtons) do
  104. v.BackgroundColor3 = Color3.fromRGB(30, 233, 255)
  105. end
  106. end
  107.  
  108.  
  109.  
  110. --Properties:
  111. BalloonSimulator.Name = "BalloonSimulator"
  112. BalloonSimulator.Parent = game.CoreGui
  113. BalloonSimulator.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  114.  
  115.  
  116.  
  117. DragFrame.Name = "DragFrame"
  118. DragFrame.Parent = BalloonSimulator
  119. DragFrame.Active = true
  120. DragFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  121. DragFrame.BackgroundTransparency = 0.10000000149012
  122. DragFrame.Position = UDim2.new(0.617296696, 0, 0.124050632, 0)
  123. DragFrame.Selectable = true
  124. DragFrame.Size = UDim2.new(0, 240, 0, 277)
  125. DragFrame.Draggable = true
  126.  
  127.  
  128. MainFrame.Name = "MainFrame"
  129. MainFrame.Parent = DragFrame
  130. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  131. MainFrame.BackgroundTransparency = 1
  132. MainFrame.Position = UDim2.new(-0.00357542909, 0, 0.107313655, 0)
  133. MainFrame.Selectable = true
  134. MainFrame.Size = UDim2.new(0, 240, 0, 229)
  135.  
  136.  
  137.  
  138. CreditsFrame.Name = "CreditsFrame"
  139. CreditsFrame.Parent = MainFrame
  140. CreditsFrame.BackgroundColor3 = Color3.new(1, 0, 0.866667)
  141. CreditsFrame.BackgroundTransparency = 0.60000002384186
  142. CreditsFrame.NextSelectionDown = CreditsButton
  143. CreditsFrame.Position = UDim2.new(0.157165527, 0, 0.00623737974, 0)
  144. CreditsFrame.Selectable = true
  145. CreditsFrame.Size = UDim2.new(0, 196, 0, 244)
  146. CreditsFrame.Visible = false
  147.  
  148.  
  149.  
  150. CreatorLabel.Name = "CreatorLabel"
  151. CreatorLabel.Parent = CreditsFrame
  152. CreatorLabel.BackgroundColor3 = Color3.new(0.0666667, 1, 0)
  153. CreatorLabel.BackgroundTransparency = 0.80000001192093
  154. CreatorLabel.Position = UDim2.new(0.076530613, 0, 0.100917429, 0)
  155. CreatorLabel.Size = UDim2.new(0, 179, 0, 40)
  156. CreatorLabel.Font = Enum.Font.Highway
  157. CreatorLabel.Text = "Created By : Lairlis "
  158. CreatorLabel.TextColor3 = Color3.new(0, 0, 0)
  159. CreatorLabel.TextScaled = true
  160. CreatorLabel.TextSize = 14
  161. CreatorLabel.TextWrapped = true
  162.  
  163.  
  164.  
  165. ScriptsByLabel.Name = "ScriptsByLabel"
  166. ScriptsByLabel.Parent = CreditsFrame
  167. ScriptsByLabel.BackgroundColor3 = Color3.new(0.0666667, 1, 0)
  168. ScriptsByLabel.BackgroundTransparency = 0.80000001192093
  169. ScriptsByLabel.Position = UDim2.new(0.122448981, 0, 0.394495338, 0)
  170. ScriptsByLabel.Size = UDim2.new(0, 161, 0, 120)
  171. ScriptsByLabel.Font = Enum.Font.Highway
  172. ScriptsByLabel.Text = "Nigger: Lairlis"
  173. ScriptsByLabel.TextColor3 = Color3.new(0, 0, 0)
  174. ScriptsByLabel.TextScaled = true
  175. ScriptsByLabel.TextSize = 14
  176. ScriptsByLabel.TextWrapped = true
  177.  
  178.  
  179.  
  180. DiscordLabel.Name = "DiscordLabel"
  181. DiscordLabel.Parent = CreditsFrame
  182. DiscordLabel.BackgroundColor3 = Color3.new(0.0666667, 1, 0)
  183. DiscordLabel.BackgroundTransparency = 0.80000001192093
  184. DiscordLabel.Position = UDim2.new(0.228337705, 0, 0.282568783, 0)
  185. DiscordLabel.Size = UDim2.new(0, 149, 0, 24)
  186. DiscordLabel.Font = Enum.Font.Highway
  187. DiscordLabel.Text = "lairlis.tk"
  188. DiscordLabel.TextColor3 = Color3.new(0, 0, 0)
  189. DiscordLabel.TextScaled = true
  190. DiscordLabel.TextSize = 14
  191. DiscordLabel.TextWrapped = true
  192.  
  193.  
  194.  
  195. TeleportsFrame.Name = "TeleportsFrame"
  196. TeleportsFrame.Parent = MainFrame
  197. TeleportsFrame.Active = true
  198. TeleportsFrame.BackgroundColor3 = Color3.new(1, 0, 0.866667)
  199. TeleportsFrame.BackgroundTransparency = 0.60000002384186
  200. TeleportsFrame.Position = UDim2.new(0.156999975, 0, 0.00599996885, 0)
  201. TeleportsFrame.Size = UDim2.new(0, 197, 0, 245)
  202. TeleportsFrame.Visible = false
  203. TeleportsFrame.CanvasPosition = Vector2.new(0, 213)
  204. TeleportsFrame.ScrollBarThickness = 8
  205.  
  206.  
  207.  
  208. TpSpawnButton.Name = "TpSpawnButton"
  209. TpSpawnButton.Parent = TeleportsFrame
  210. TpSpawnButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
  211. TpSpawnButton.Position = UDim2.new(0.0893300623, 0, -0.000117009506, 0)
  212. TpSpawnButton.Size = UDim2.new(0, 168, 0, 35)
  213. TpSpawnButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  214. TpSpawnButton.Font = Enum.Font.SourceSans
  215. TpSpawnButton.Text = "Spawn"
  216. TpSpawnButton.TextColor3 = Color3.new(0, 0, 0)
  217. TpSpawnButton.TextScaled = true
  218. TpSpawnButton.TextSize = 14
  219. TpSpawnButton.TextWrapped = true
  220.  
  221. TpSpawnButton.MouseButton1Click:Connect(function()
  222. plr.Character.HumanoidRootPart.CFrame = locations.Skyland.CFrame
  223. end)
  224.  
  225.  
  226. TpChestsLabel.Name = "TpChestsLabel"
  227. TpChestsLabel.Parent = TeleportsFrame
  228. TpChestsLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  229. TpChestsLabel.BackgroundTransparency = 1
  230. TpChestsLabel.Position = UDim2.new(0.0994823501, 0, 0.0754913315, 0)
  231. TpChestsLabel.Size = UDim2.new(0, 162, 0, 40)
  232. TpChestsLabel.Font = Enum.Font.SciFi
  233. TpChestsLabel.Text = "Chests"
  234. TpChestsLabel.TextColor3 = Color3.new(0, 1, 0.0313726)
  235. TpChestsLabel.TextScaled = true
  236. TpChestsLabel.TextSize = 14
  237. TpChestsLabel.TextWrapped = true
  238.  
  239.  
  240.  
  241. TpArcherChestButton.Name = "TpArcherChestButton"
  242. TpArcherChestButton.Parent = TpChestsLabel
  243. TpArcherChestButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
  244. TpArcherChestButton.Position = UDim2.new(0, 0, 0.916001916, 0)
  245. TpArcherChestButton.Size = UDim2.new(0, 165, 0, 33)
  246. TpArcherChestButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  247. TpArcherChestButton.Font = Enum.Font.SourceSans
  248. TpArcherChestButton.Text = "Archer Chest"
  249. TpArcherChestButton.TextColor3 = Color3.new(0, 0, 0)
  250. TpArcherChestButton.TextScaled = true
  251. TpArcherChestButton.TextSize = 14
  252. TpArcherChestButton.TextWrapped = true
  253.  
  254. TpArcherChestButton.MouseButton1Click:Connect(function()
  255. plr.Character.HumanoidRootPart.CFrame = chests.ArcherChest.CFrame
  256. end)
  257.  
  258.  
  259.  
  260. TpBeachChestButton.Name = "TpBeachChestButton"
  261. TpBeachChestButton.Parent = TpChestsLabel
  262. TpBeachChestButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
  263. TpBeachChestButton.Position = UDim2.new(-0.0123456791, 0, 1.76600194, 0)
  264. TpBeachChestButton.Size = UDim2.new(0, 165, 0, 33)
  265. TpBeachChestButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  266. TpBeachChestButton.Font = Enum.Font.SourceSans
  267. TpBeachChestButton.Text = "Beach Chest"
  268. TpBeachChestButton.TextColor3 = Color3.new(0, 0, 0)
  269. TpBeachChestButton.TextScaled = true
  270. TpBeachChestButton.TextSize = 14
  271. TpBeachChestButton.TextWrapped = true
  272.  
  273. TpBeachChestButton.MouseButton1Click:Connect(function()
  274. plr.Character.HumanoidRootPart.CFrame = chests.BeachChest.CFrame
  275. end)
  276.  
  277.  
  278.  
  279. TpAncientChestButton.Name = "TpAncientChestButton"
  280. TpAncientChestButton.Parent = TpChestsLabel
  281. TpAncientChestButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
  282. TpAncientChestButton.Position = UDim2.new(0, 0, 2.59100199, 0)
  283. TpAncientChestButton.Size = UDim2.new(0, 165, 0, 33)
  284. TpAncientChestButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  285. TpAncientChestButton.Font = Enum.Font.SourceSans
  286. TpAncientChestButton.Text = "Ancient Chest"
  287. TpAncientChestButton.TextColor3 = Color3.new(0, 0, 0)
  288. TpAncientChestButton.TextScaled = true
  289. TpAncientChestButton.TextSize = 14
  290. TpAncientChestButton.TextWrapped = true
  291.  
  292. TpAncientChestButton.MouseButton1Click:Connect(function()
  293. plr.Character.HumanoidRootPart.CFrame = chests.AncientChest.CFrame
  294. end)
  295.  
  296.  
  297.  
  298. TpTropicalParadiseButton.Name = "TpTropicalParadiseButton"
  299. TpTropicalParadiseButton.Parent = TeleportsFrame
  300. TpTropicalParadiseButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
  301. TpTropicalParadiseButton.Position = UDim2.new(0.0842539147, 0, 0.445297778, 0)
  302. TpTropicalParadiseButton.Size = UDim2.new(0, 168, 0, 49)
  303. TpTropicalParadiseButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  304. TpTropicalParadiseButton.Font = Enum.Font.SourceSans
  305. TpTropicalParadiseButton.Text = "Tropical Paradise"
  306. TpTropicalParadiseButton.TextColor3 = Color3.new(0, 0, 0)
  307. TpTropicalParadiseButton.TextScaled = true
  308. TpTropicalParadiseButton.TextSize = 14
  309. TpTropicalParadiseButton.TextWrapped = true
  310.  
  311. TpTropicalParadiseButton.MouseButton1Click:Connect(function()
  312. plr.Character.HumanoidRootPart.CFrame = locations["Tropical Paradise"].CFrame
  313. end)
  314.  
  315.  
  316.  
  317. TpCandylandButton.Name = "TpCandylandButton"
  318. TpCandylandButton.Parent = TeleportsFrame
  319. TpCandylandButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
  320. TpCandylandButton.Position = UDim2.new(0.0842539147, 0, 0.554468095, 0)
  321. TpCandylandButton.Size = UDim2.new(0, 168, 0, 49)
  322. TpCandylandButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  323. TpCandylandButton.Font = Enum.Font.SourceSans
  324. TpCandylandButton.Text = "Candyland"
  325. TpCandylandButton.TextColor3 = Color3.new(0, 0, 0)
  326. TpCandylandButton.TextScaled = true
  327. TpCandylandButton.TextSize = 14
  328. TpCandylandButton.TextWrapped = true
  329.  
  330. TpCandylandButton.MouseButton1Click:Connect(function()
  331. plr.Character.HumanoidRootPart.CFrame = locations.Candyland.CFrame
  332. end)
  333.  
  334.  
  335.  
  336. TpArchervilleButton.Name = "TpArchervilleButton"
  337. TpArchervilleButton.Parent = TeleportsFrame
  338. TpArchervilleButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
  339. TpArchervilleButton.Position = UDim2.new(0.0842539147, 0, 0.661454976, 0)
  340. TpArchervilleButton.Size = UDim2.new(0, 168, 0, 49)
  341. TpArchervilleButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  342. TpArchervilleButton.Font = Enum.Font.SourceSans
  343. TpArchervilleButton.Text = "Archerville"
  344. TpArchervilleButton.TextColor3 = Color3.new(0, 0, 0)
  345. TpArchervilleButton.TextScaled = true
  346. TpArchervilleButton.TextSize = 14
  347. TpArchervilleButton.TextWrapped = true
  348.  
  349. TpArchervilleButton.MouseButton1Click:Connect(function()
  350. plr.Character.HumanoidRootPart.CFrame = locations.Archerville.CFrame
  351. end)
  352.  
  353.  
  354.  
  355. TpAncientGreeceButton.Name = "TpAncientGreeceButton"
  356. TpAncientGreeceButton.Parent = TeleportsFrame
  357. TpAncientGreeceButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
  358. TpAncientGreeceButton.Position = UDim2.new(0.0842539147, 0, 0.770625293, 0)
  359. TpAncientGreeceButton.Size = UDim2.new(0, 168, 0, 49)
  360. TpAncientGreeceButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  361. TpAncientGreeceButton.Font = Enum.Font.SourceSans
  362. TpAncientGreeceButton.Text = "Ancient Greece"
  363. TpAncientGreeceButton.TextColor3 = Color3.new(0, 0, 0)
  364. TpAncientGreeceButton.TextScaled = true
  365. TpAncientGreeceButton.TextSize = 14
  366. TpAncientGreeceButton.TextWrapped = true
  367.  
  368. TpAncientGreeceButton.MouseButton1Click:Connect(function()
  369. plr.Character.HumanoidRootPart.CFrame = locations["Ancient Greece"].CFrame
  370. end)
  371.  
  372.  
  373.  
  374. SettingsFrame.Name = "SettingsFrame"
  375. SettingsFrame.Parent = MainFrame
  376. SettingsFrame.Active = true
  377. SettingsFrame.BackgroundColor3 = Color3.new(1, 0, 0.866667)
  378. SettingsFrame.BackgroundTransparency = 0.60000002384186
  379. SettingsFrame.Position = UDim2.new(0.156999975, 0, 0.00599996885, 0)
  380. SettingsFrame.Size = UDim2.new(0, 197, 0, 245)
  381. SettingsFrame.Visible = false
  382. SettingsFrame.ScrollBarThickness = 8
  383.  
  384.  
  385.  
  386. ScriptsFrame.Name = "ScriptsFrame"
  387. ScriptsFrame.Parent = MainFrame
  388. ScriptsFrame.BackgroundColor3 = Color3.new(1, 0, 0.866667)
  389. ScriptsFrame.BackgroundTransparency = 0.60000002384186
  390. ScriptsFrame.Position = UDim2.new(0.156999975, 0, 0.00599996885, 0)
  391. ScriptsFrame.Size = UDim2.new(0, 197, 0, 245)
  392. ScriptsFrame.Visible = false
  393. ScriptsFrame.CanvasSize = UDim2.new(0, 0, 1.20000005, 0)
  394. ScriptsFrame.ScrollBarThickness = 8
  395.  
  396.  
  397.  
  398. ScriptsLabel.Name = "ScriptsLabel"
  399. ScriptsLabel.Parent = ScriptsFrame
  400. ScriptsLabel.BackgroundColor3 = Color3.new(0, 1, 1)
  401. ScriptsLabel.BackgroundTransparency = 1
  402. ScriptsLabel.BorderColor3 = Color3.new(0, 0, 0)
  403. ScriptsLabel.Position = UDim2.new(0.187817261, 0, 0, 0)
  404. ScriptsLabel.Size = UDim2.new(0, 122, 0, 27)
  405. ScriptsLabel.Text = "Scripts"
  406. ScriptsLabel.TextColor3 = Color3.new(0, 1, 1)
  407. ScriptsLabel.TextScaled = true
  408. ScriptsLabel.TextSize = 14
  409. ScriptsLabel.TextWrapped = true
  410.  
  411.  
  412.  
  413. FarmCoinsLabel.Name = "FarmCoinsLabel"
  414. FarmCoinsLabel.Parent = ScriptsFrame
  415. FarmCoinsLabel.BackgroundColor3 = Color3.new(1, 0.466667, 0)
  416. FarmCoinsLabel.Position = UDim2.new(0.0761421323, 0, 0.513828218, 0)
  417. FarmCoinsLabel.Size = UDim2.new(0, 122, 0, 35)
  418. FarmCoinsLabel.Font = Enum.Font.SourceSans
  419. FarmCoinsLabel.Text = "Farm-Coins"
  420. FarmCoinsLabel.TextColor3 = Color3.new(0, 0, 0)
  421. FarmCoinsLabel.TextScaled = true
  422. FarmCoinsLabel.TextSize = 14
  423. FarmCoinsLabel.TextWrapped = true
  424.  
  425.  
  426.  
  427. FarmCoinsButton.Name = "FarmCoinsButton"
  428. FarmCoinsButton.Parent = FarmCoinsLabel
  429. FarmCoinsButton.BackgroundColor3 = Color3.new(1, 0, 0)
  430. FarmCoinsButton.Position = UDim2.new(1.12295079, 0, 0.0547619462, 0)
  431. FarmCoinsButton.Size = UDim2.new(0, 30, 0, 30)
  432. FarmCoinsButton.Font = Enum.Font.SourceSans
  433. FarmCoinsButton.Text = ""
  434. FarmCoinsButton.TextColor3 = Color3.new(0, 0, 0)
  435. FarmCoinsButton.TextSize = 14
  436.  
  437. AutoFarmCoinsToggle = false
  438. FarmCoinsButton.MouseButton1Click:Connect(function()
  439. if AutoFarmCoinsToggle then
  440. AutoFarmCoinsToggle = false
  441. FarmCoinsButton.BackgroundColor3 = Color3.fromRGB(255,0,0)
  442. else
  443. AutoFarmCoinsToggle = true
  444. FarmCoinsButton.BackgroundColor3 = Color3.fromRGB(0,255,0)
  445. end
  446. while AutoFarmCoinsToggle do
  447. for i,coin in pairs(coins:GetChildren()) do
  448. wait(0.01)
  449. coin.CFrame = plr.Character.HumanoidRootPart.CFrame
  450. end
  451. wait(20)
  452. end
  453. end)
  454.  
  455.  
  456.  
  457. FarmGemsLabel.Name = "FarmGemsLabel"
  458. FarmGemsLabel.Parent = ScriptsFrame
  459. FarmGemsLabel.BackgroundColor3 = Color3.new(1, 0.466667, 0)
  460. FarmGemsLabel.Position = UDim2.new(0.0761421323, 0, 0.677583635, 0)
  461. FarmGemsLabel.Size = UDim2.new(0, 122, 0, 35)
  462. FarmGemsLabel.Font = Enum.Font.SourceSans
  463. FarmGemsLabel.Text = "Farm-Gems"
  464. FarmGemsLabel.TextColor3 = Color3.new(0, 0, 0)
  465. FarmGemsLabel.TextScaled = true
  466. FarmGemsLabel.TextSize = 14
  467. FarmGemsLabel.TextWrapped = true
  468.  
  469.  
  470.  
  471. FarmGemsButton.Name = "FarmGemsButton"
  472. FarmGemsButton.Parent = FarmGemsLabel
  473. FarmGemsButton.BackgroundColor3 = Color3.new(1, 0, 0)
  474. FarmGemsButton.Position = UDim2.new(1.12295079, 0, 0.0547619462, 0)
  475. FarmGemsButton.Size = UDim2.new(0, 30, 0, 30)
  476. FarmGemsButton.Font = Enum.Font.SourceSans
  477. FarmGemsButton.Text = ""
  478. FarmGemsButton.TextColor3 = Color3.new(0, 0, 0)
  479. FarmGemsButton.TextSize = 14
  480.  
  481. AutoFarmGemsToggle = false
  482. FarmGemsButton.MouseButton1Click:Connect(function()
  483. if AutoFarmGemsToggle then
  484. AutoFarmGemsToggle = false
  485. FarmGemsButton.BackgroundColor3 = Color3.fromRGB(255,0,0)
  486. else
  487. AutoFarmGemsToggle = true
  488. FarmGemsButton.BackgroundColor3 = Color3.fromRGB(0,255,0)
  489. end
  490. while AutoFarmGemsToggle do
  491. for i,gem in pairs(gems:GetChildren()) do
  492. wait(0.01)
  493. gem.CFrame = plr.Character.HumanoidRootPart.CFrame
  494. end
  495. wait(20)
  496. end
  497. end)
  498.  
  499.  
  500.  
  501. AutoSellLabel.Name = "AutoSellLabel"
  502. AutoSellLabel.Parent = ScriptsFrame
  503. AutoSellLabel.BackgroundColor3 = Color3.new(1, 0.466667, 0)
  504. AutoSellLabel.Position = UDim2.new(0.0761421323, 0, 0.834788859, 0)
  505. AutoSellLabel.Size = UDim2.new(0, 122, 0, 35)
  506. AutoSellLabel.Font = Enum.Font.SourceSans
  507. AutoSellLabel.Text = "Auto-Sell"
  508. AutoSellLabel.TextColor3 = Color3.new(0, 0, 0)
  509. AutoSellLabel.TextScaled = true
  510. AutoSellLabel.TextSize = 14
  511. AutoSellLabel.TextWrapped = true
  512.  
  513.  
  514.  
  515. AutoSellButton.Name = "AutoSellButton"
  516. AutoSellButton.Parent = AutoSellLabel
  517. AutoSellButton.BackgroundColor3 = Color3.new(1, 0, 0)
  518. AutoSellButton.Position = UDim2.new(1.12295079, 0, 0.0547619462, 0)
  519. AutoSellButton.Size = UDim2.new(0, 30, 0, 30)
  520. AutoSellButton.Font = Enum.Font.SourceSans
  521. AutoSellButton.Text = ""
  522. AutoSellButton.TextColor3 = Color3.new(0, 0, 0)
  523. AutoSellButton.TextSize = 14
  524.  
  525. AutoSellToggle = false
  526. AutoSellButton.MouseButton1Click:Connect(function()
  527. if AutoSellToggle then
  528. AutoSellToggle = false
  529. AutoSellButton.BackgroundColor3 = Color3.fromRGB(255,0,0)
  530. else
  531. AutoSellToggle = true
  532. AutoSellButton.BackgroundColor3 = Color3.fromRGB(0,255,0)
  533. end
  534. while AutoSellToggle do
  535. wait(1)
  536. sellPart.CFrame = plr.Character.HumanoidRootPart.CFrame
  537. end
  538. end)
  539.  
  540.  
  541.  
  542. AddBalloonLabel.Name = "AddBalloonLabel"
  543. AddBalloonLabel.Parent = ScriptsFrame
  544. AddBalloonLabel.BackgroundColor3 = Color3.new(0, 1, 1)
  545. AddBalloonLabel.BackgroundTransparency = 1
  546. AddBalloonLabel.Position = UDim2.new(0.0761421323, 0, 0.251819462, 0)
  547. AddBalloonLabel.Size = UDim2.new(0, 167, 0, 35)
  548. AddBalloonLabel.Font = Enum.Font.Highway
  549. AddBalloonLabel.Text = "ADD-BALLOONS"
  550. AddBalloonLabel.TextColor3 = Color3.new(0.917647, 1, 0)
  551. AddBalloonLabel.TextScaled = true
  552. AddBalloonLabel.TextSize = 14
  553. AddBalloonLabel.TextWrapped = true
  554.  
  555.  
  556.  
  557. AddBalloonButton.Name = "AddBalloonButton"
  558. AddBalloonButton.Parent = AddBalloonLabel
  559. AddBalloonButton.BackgroundColor3 = Color3.new(0.317647, 1, 0)
  560. AddBalloonButton.Position = UDim2.new(0.754098475, 0, 0.997619629, 0)
  561. AddBalloonButton.Size = UDim2.new(0, 41, 0, 30)
  562. AddBalloonButton.Font = Enum.Font.SourceSans
  563. AddBalloonButton.Text = "ADD"
  564. AddBalloonButton.TextColor3 = Color3.new(0, 0, 0)
  565. AddBalloonButton.TextScaled = true
  566. AddBalloonButton.TextSize = 14
  567. AddBalloonButton.TextWrapped = true
  568.  
  569. AddBalloonButton.MouseButton1Click:Connect(function()
  570. replicatedStorage.FillBalloon:FireServer(100)
  571. end)
  572.  
  573.  
  574.  
  575. TextBox.Parent = AddBalloonLabel
  576. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  577. TextBox.Position = UDim2.new(-0.0202271268, 0, 0.971428573, 0)
  578. TextBox.Size = UDim2.new(0, 123, 0, 30)
  579. TextBox.Font = Enum.Font.SourceSans
  580. TextBox.Text = ""
  581. TextBox.TextColor3 = Color3.new(0, 0, 0)
  582. TextBox.TextScaled = true
  583. TextBox.TextSize = 14
  584. TextBox.TextWrapped = true
  585.  
  586.  
  587.  
  588. InfiniteBackpackButton.Name = "InfiniteBackpackButton"
  589. InfiniteBackpackButton.Parent = ScriptsFrame
  590. InfiniteBackpackButton.BackgroundColor3 = Color3.new(0.317647, 1, 0)
  591. InfiniteBackpackButton.Position = UDim2.new(0.0761421323, 0, 0.14254719, 0)
  592. InfiniteBackpackButton.Size = UDim2.new(0, 167, 0, 30)
  593. InfiniteBackpackButton.Font = Enum.Font.SourceSans
  594. InfiniteBackpackButton.Text = "Infinite Niggers"
  595. InfiniteBackpackButton.TextColor3 = Color3.new(0, 0, 0)
  596. InfiniteBackpackButton.TextScaled = true
  597. InfiniteBackpackButton.TextSize = 14
  598. InfiniteBackpackButton.TextWrapped = true
  599.  
  600. InfiniteBackpackButton.MouseButton1Click:Connect(function()
  601. replicatedStorage.FillBalloon:FireServer(100000000)
  602. sellPart.CFrame = plr.Character.HumanoidRootPart.CFrame
  603. replicatedStorage.BuyBalloon:InvokeServer("Unlimited")
  604. end)
  605.  
  606.  
  607.  
  608. HomeFrame.Name = "HomeFrame"
  609. HomeFrame.Parent = MainFrame
  610. HomeFrame.BackgroundColor3 = Color3.new(1, 0, 0.866667)
  611. HomeFrame.BackgroundTransparency = 0.60000002384186
  612. HomeFrame.NextSelectionDown = CreditsButton
  613. HomeFrame.Position = UDim2.new(0.157165527, 0, 0.00623737974, 0)
  614. HomeFrame.Selectable = true
  615. HomeFrame.Size = UDim2.new(0, 196, 0, 244)
  616.  
  617.  
  618.  
  619. WelcomeLabel.Name = "WelcomeLabel"
  620. WelcomeLabel.Parent = HomeFrame
  621. WelcomeLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  622. WelcomeLabel.BackgroundTransparency = 1
  623. WelcomeLabel.Position = UDim2.new(0.0629163459, 0, -0.00104116742, 0)
  624. WelcomeLabel.Selectable = true
  625. WelcomeLabel.Size = UDim2.new(0, 170, 0, 71)
  626. WelcomeLabel.Font = Enum.Font.SourceSans
  627. WelcomeLabel.Text = "Welcome to Nigger Factory \n By Lairlis"
  628. WelcomeLabel.TextColor3 = Color3.new(0, 1, 0.717647)
  629. WelcomeLabel.TextScaled = true
  630. WelcomeLabel.TextSize = 14
  631. WelcomeLabel.TextStrokeTransparency = 0
  632. WelcomeLabel.TextWrapped = true
  633.  
  634.  
  635.  
  636. FeaturesLabel.Name = "FeaturesLabel"
  637. FeaturesLabel.Parent = HomeFrame
  638. FeaturesLabel.BackgroundColor3 = Color3.new(0.67451, 0.666667, 0.670588)
  639. FeaturesLabel.BackgroundTransparency = 1
  640. FeaturesLabel.Position = UDim2.new(0.0631128401, 0, 0.325008512, 0)
  641. FeaturesLabel.Selectable = true
  642. FeaturesLabel.Size = UDim2.new(0, 183, 0, 155)
  643. FeaturesLabel.Font = Enum.Font.SourceSans
  644. FeaturesLabel.Text = "Features : \n1. ADD-Balloons(No limit)\n2. Auto-Sell\n3. Auto-Farms\n4. Teleports To All Areas"
  645. FeaturesLabel.TextColor3 = Color3.new(0.984314, 1, 0)
  646. FeaturesLabel.TextScaled = true
  647. FeaturesLabel.TextSize = 14
  648. FeaturesLabel.TextStrokeTransparency = 0
  649. FeaturesLabel.TextWrapped = true
  650. FeaturesLabel.TextXAlignment = Enum.TextXAlignment.Left
  651.  
  652.  
  653.  
  654. HomeButton.Name = "HomeButton"
  655. HomeButton.Parent = MainFrame
  656. HomeButton.BackgroundColor3 = Color3.new(0.431373, 0.027451, 0.376471)
  657. HomeButton.BackgroundTransparency = 0.10000000149012
  658. HomeButton.BorderSizePixel = 2
  659. HomeButton.Position = UDim2.new(-0.0737414062, 0, 0.0624616183, 0)
  660. HomeButton.Size = UDim2.new(0, 67, 0, 38)
  661. HomeButton.ZIndex = 2
  662. HomeButton.Font = Enum.Font.SciFi
  663. HomeButton.Text = "Home"
  664. HomeButton.TextColor3 = Color3.new(0, 0, 0)
  665. HomeButton.TextScaled = true
  666. HomeButton.TextSize = 14
  667. HomeButton.TextWrapped = true
  668.  
  669. HomeButton.MouseButton1Click:Connect(function()
  670. HideAllFrames()
  671. MainButtonsColorReset()
  672. HomeFrame.Visible = true
  673. HomeButton.BackgroundColor3 = Color3.fromRGB(110, 7, 96)
  674. end)
  675.  
  676.  
  677.  
  678. ScriptsButton.Name = "ScriptsButton"
  679. ScriptsButton.Parent = MainFrame
  680. ScriptsButton.BackgroundColor3 = Color3.new(0.117647, 0.913726, 1)
  681. ScriptsButton.BackgroundTransparency = 0.10000000149012
  682. ScriptsButton.BorderSizePixel = 2
  683. ScriptsButton.Position = UDim2.new(-0.0737414062, 0, 0.260165691, 0)
  684. ScriptsButton.Size = UDim2.new(0, 67, 0, 38)
  685. ScriptsButton.ZIndex = 2
  686. ScriptsButton.Font = Enum.Font.SciFi
  687. ScriptsButton.Text = "Scripts"
  688. ScriptsButton.TextColor3 = Color3.new(0, 0, 0)
  689. ScriptsButton.TextScaled = true
  690. ScriptsButton.TextSize = 14
  691. ScriptsButton.TextWrapped = true
  692.  
  693. ScriptsButton.MouseButton1Click:Connect(function()
  694. HideAllFrames()
  695. MainButtonsColorReset()
  696. ScriptsFrame.Visible = true
  697. ScriptsButton.BackgroundColor3 = Color3.fromRGB(110, 7, 96)
  698. end)
  699.  
  700.  
  701.  
  702. TeleportsButton.Name = "TeleportsButton"
  703. TeleportsButton.Parent = MainFrame
  704. TeleportsButton.BackgroundColor3 = Color3.new(0.117647, 0.913726, 1)
  705. TeleportsButton.BackgroundTransparency = 0.10000000149012
  706. TeleportsButton.BorderSizePixel = 2
  707. TeleportsButton.Position = UDim2.new(-0.0737414062, 0, 0.464687884, 0)
  708. TeleportsButton.Size = UDim2.new(0, 67, 0, 38)
  709. TeleportsButton.ZIndex = 2
  710. TeleportsButton.Font = Enum.Font.SciFi
  711. TeleportsButton.Text = "Teleport"
  712. TeleportsButton.TextColor3 = Color3.new(0, 0, 0)
  713. TeleportsButton.TextScaled = true
  714. TeleportsButton.TextSize = 14
  715. TeleportsButton.TextWrapped = true
  716.  
  717. TeleportsButton.MouseButton1Click:Connect(function()
  718. HideAllFrames()
  719. MainButtonsColorReset()
  720. TeleportsFrame.Visible = true
  721. TeleportsButton.BackgroundColor3 = Color3.fromRGB(110, 7, 96)
  722. end)
  723.  
  724.  
  725.  
  726. SettingsButton.Name = "SettingsButton"
  727. SettingsButton.Parent = MainFrame
  728. SettingsButton.BackgroundColor3 = Color3.new(0.117647, 0.913726, 1)
  729. SettingsButton.BackgroundTransparency = 0.10000000149012
  730. SettingsButton.BorderSizePixel = 2
  731. SettingsButton.Position = UDim2.new(-0.0737414062, 0, 0.666379213, 0)
  732. SettingsButton.Size = UDim2.new(0, 67, 0, 38)
  733. SettingsButton.ZIndex = 2
  734. SettingsButton.Font = Enum.Font.SciFi
  735. SettingsButton.Text = "Settings"
  736. SettingsButton.TextColor3 = Color3.new(0, 0, 0)
  737. SettingsButton.TextScaled = true
  738. SettingsButton.TextSize = 14
  739. SettingsButton.TextWrapped = true
  740.  
  741. SettingsButton.MouseButton1Click:Connect(function()
  742. HideAllFrames()
  743. MainButtonsColorReset()
  744. SettingsButton.Visible = true
  745. SettingsButton.BackgroundColor3 = Color3.fromRGB(110, 7, 96)
  746. end)
  747.  
  748.  
  749.  
  750. CreditsButton.Name = "CreditsButton"
  751. CreditsButton.Parent = MainFrame
  752. CreditsButton.BackgroundColor3 = Color3.new(0.117647, 0.913726, 1)
  753. CreditsButton.BackgroundTransparency = 0.10000000149012
  754. CreditsButton.BorderSizePixel = 2
  755. CreditsButton.Position = UDim2.new(-0.0737414062, 0, 0.86716938, 0)
  756. CreditsButton.Size = UDim2.new(0, 67, 0, 38)
  757. CreditsButton.ZIndex = 2
  758. CreditsButton.Font = Enum.Font.SciFi
  759. CreditsButton.Text = "Credits"
  760. CreditsButton.TextColor3 = Color3.new(0, 0, 0)
  761. CreditsButton.TextScaled = true
  762. CreditsButton.TextSize = 14
  763. CreditsButton.TextWrapped = true
  764.  
  765. CreditsButton.MouseButton1Click:Connect(function()
  766. HideAllFrames()
  767. MainButtonsColorReset()
  768. CreditsFrame.Visible = true
  769. CreditsButton.BackgroundColor3 = Color3.fromRGB(110, 7, 96)
  770. end)
  771.  
  772.  
  773.  
  774. MinimizeButton.Name = "MinimizeButton"
  775. MinimizeButton.Parent = DragFrame
  776. MinimizeButton.BackgroundColor3 = Color3.new(1, 0.968628, 0)
  777. MinimizeButton.BackgroundTransparency = 0.10000000149012
  778. MinimizeButton.Position = UDim2.new(0.776956499, 0, 0.010268813, 0)
  779. MinimizeButton.Size = UDim2.new(0, 26, 0, 26)
  780. MinimizeButton.Font = Enum.Font.SourceSans
  781. MinimizeButton.Text = "-"
  782. MinimizeButton.TextColor3 = Color3.new(0, 0, 0)
  783. MinimizeButton.TextScaled = true
  784. MinimizeButton.TextSize = 14
  785. MinimizeButton.TextWrapped = true
  786.  
  787. MinimizeButton.MouseButton1Click:Connect(function()
  788. MinimizeButton.Visible = false
  789. MaximiseButton.Visible = true
  790. MainFrame.Visible = false
  791. DragFrame:TweenSize(UDim2.new(0, 240, 0, 30), Enum.EasingDirection.In, Enum.EasingStyle.Linear, .7, false)
  792. end)
  793.  
  794.  
  795.  
  796. MaximiseButton.Name = "MaximiseButton"
  797. MaximiseButton.Parent = DragFrame
  798. MaximiseButton.BackgroundColor3 = Color3.new(0, 1, 0)
  799. MaximiseButton.BackgroundTransparency = 0.10000000149012
  800. MaximiseButton.Position = UDim2.new(0.776956499, 0, 0.010268813, 0)
  801. MaximiseButton.Size = UDim2.new(0, 26, 0, 26)
  802. MaximiseButton.Visible = false
  803. MaximiseButton.Font = Enum.Font.SourceSans
  804. MaximiseButton.Text = "+"
  805. MaximiseButton.TextColor3 = Color3.new(0, 0, 0)
  806. MaximiseButton.TextScaled = true
  807. MaximiseButton.TextSize = 14
  808. MaximiseButton.TextWrapped = true
  809.  
  810. MaximiseButton.MouseButton1Click:Connect(function()
  811. MinimizeButton.Visible = true
  812. MaximiseButton.Visible = false
  813. DragFrame:TweenSize(UDim2.new(0, 240, 0, 277), Enum.EasingDirection.Out, Enum.EasingStyle.Linear, .7, false)
  814. wait(.7)
  815. MainFrame.Visible = true
  816. end)
  817.  
  818.  
  819.  
  820. ExitButton.Name = "ExitButton"
  821. ExitButton.Parent = DragFrame
  822. ExitButton.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  823. ExitButton.BackgroundTransparency = 0.10000000149012
  824. ExitButton.Position = UDim2.new(0.893552125, 0, 0, 0)
  825. ExitButton.Size = UDim2.new(0, 26, 0, 28)
  826. ExitButton.Font = Enum.Font.SourceSans
  827. ExitButton.Text = "X"
  828. ExitButton.TextColor3 = Color3.new(0, 0, 0)
  829. ExitButton.TextScaled = true
  830. ExitButton.TextSize = 14
  831. ExitButton.TextWrapped = true
  832.  
  833. ExitButton.MouseButton1Click:Connect(function()
  834. BalloonSimulator:Destroy()
  835. end)
  836.  
  837.  
  838.  
  839. heading.Name = "heading"
  840. heading.Parent = DragFrame
  841. heading.BackgroundColor3 = Color3.new(0.133333, 1, 0)
  842. heading.BackgroundTransparency = 0.80000001192093
  843. heading.Position = UDim2.new(0.000450326625, 0, 0.00240862928, 0)
  844. heading.Size = UDim2.new(0, 185, 0, 28)
  845. heading.Font = Enum.Font.Highway
  846. heading.Text = "NiggerHook"
  847. heading.TextColor3 = Color3.new(1, 1, 1)
  848. heading.TextScaled = true
  849. heading.TextSize = 14
  850. heading.TextWrapped = true
  851.  
  852. print("Success.\n Lairlis is a nigger")
Add Comment
Please, Sign In to add comment