Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- This GUI is made By : xDDD
- Don't Forget to Vouch
- --]]
- print("Getting Player...")
- local plr = game:GetService("Players").LocalPlayer
- print("Success.")
- print("Getting ReplicatedStorage...")
- local replicatedStorage = game:GetService("ReplicatedStorage")
- print("Success.")
- print("Creating Instances...")
- -- Instances:
- local BalloonSimulator = Instance.new("ScreenGui")
- local DragFrame = Instance.new("Frame")
- local MainFrame = Instance.new("Frame")
- local CreditsFrame = Instance.new("Frame")
- local CreatorLabel = Instance.new("TextLabel")
- local ScriptsByLabel = Instance.new("TextLabel")
- local DiscordLabel = Instance.new("TextLabel")
- local TeleportsFrame = Instance.new("ScrollingFrame")
- local TpSpawnButton = Instance.new("TextButton")
- local TpChestsLabel = Instance.new("TextLabel")
- local TpArcherChestButton = Instance.new("TextButton")
- local TpBeachChestButton = Instance.new("TextButton")
- local TpAncientChestButton = Instance.new("TextButton")
- local TpTropicalParadiseButton = Instance.new("TextButton")
- local TpCandylandButton = Instance.new("TextButton")
- local TpArchervilleButton = Instance.new("TextButton")
- local TpAncientGreeceButton = Instance.new("TextButton")
- local TpSkylandButton = Instance.new("TextButton")
- local SettingsFrame = Instance.new("ScrollingFrame")
- local ScriptsFrame = Instance.new("ScrollingFrame")
- local ScriptsLabel = Instance.new("TextLabel")
- local FarmCoinsLabel = Instance.new("TextLabel")
- local FarmCoinsButton = Instance.new("TextButton")
- local FarmGemsLabel = Instance.new("TextLabel")
- local FarmGemsButton = Instance.new("TextButton")
- local AutoSellLabel = Instance.new("TextLabel")
- local AutoSellButton = Instance.new("TextButton")
- local AddBalloonLabel = Instance.new("TextLabel")
- local AddBalloonButton = Instance.new("TextButton")
- local TextBox = Instance.new("TextBox")
- local InfiniteBackpackButton = Instance.new("TextButton")
- local HomeFrame = Instance.new("Frame")
- local WelcomeLabel = Instance.new("TextLabel")
- local FeaturesLabel = Instance.new("TextLabel")
- local CreditsButton = Instance.new("TextButton")
- local HomeButton = Instance.new("TextButton")
- local ScriptsButton = Instance.new("TextButton")
- local SettingsButton = Instance.new("TextButton")
- local TeleportsButton = Instance.new("TextButton")
- local MinimizeButton = Instance.new("TextButton")
- local MaximiseButton = Instance.new("TextButton")
- local ExitButton = Instance.new("TextButton")
- local heading = Instance.new("TextLabel")
- print("Extracting and Setting up required game data...")
- --Game Data Extraction
- local locations = game.Workspace.Destinations
- local chests = game.Workspace.Chests
- local coins = game.Workspace.Coins
- local gems = game.Workspace.Gems
- local sellPart = game.Workspace.UITriggers.Sell
- print("Success.\nSorting GUI items, properties and Scripts...")
- --More Variables:
- local mainTabs = {
- HomeFrame,
- ScriptsFrame,
- TeleportsFrame,
- SettingsFrame,
- CreditsFrame
- }
- local mainButtons = {
- HomeButton,
- ScriptsButton,
- TeleportsButton,
- SettingsButton,
- CreditsButton
- }
- --Utitity Functions
- local function HideAllFrames()
- for i,v in pairs(mainTabs) do
- v.Visible = false
- end
- end
- local function MainButtonsColorReset()
- for i,v in pairs(mainButtons) do
- v.BackgroundColor3 = Color3.fromRGB(30, 233, 255)
- end
- end
- --Properties:
- BalloonSimulator.Name = "BalloonSimulator"
- BalloonSimulator.Parent = game.CoreGui
- BalloonSimulator.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- DragFrame.Name = "DragFrame"
- DragFrame.Parent = BalloonSimulator
- DragFrame.Active = true
- DragFrame.BackgroundColor3 = Color3.new(0, 0, 0)
- DragFrame.BackgroundTransparency = 0.10000000149012
- DragFrame.Position = UDim2.new(0.617296696, 0, 0.124050632, 0)
- DragFrame.Selectable = true
- DragFrame.Size = UDim2.new(0, 240, 0, 277)
- DragFrame.Draggable = true
- MainFrame.Name = "MainFrame"
- MainFrame.Parent = DragFrame
- MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
- MainFrame.BackgroundTransparency = 1
- MainFrame.Position = UDim2.new(-0.00357542909, 0, 0.107313655, 0)
- MainFrame.Selectable = true
- MainFrame.Size = UDim2.new(0, 240, 0, 229)
- CreditsFrame.Name = "CreditsFrame"
- CreditsFrame.Parent = MainFrame
- CreditsFrame.BackgroundColor3 = Color3.new(1, 0, 0.866667)
- CreditsFrame.BackgroundTransparency = 0.60000002384186
- CreditsFrame.NextSelectionDown = CreditsButton
- CreditsFrame.Position = UDim2.new(0.157165527, 0, 0.00623737974, 0)
- CreditsFrame.Selectable = true
- CreditsFrame.Size = UDim2.new(0, 196, 0, 244)
- CreditsFrame.Visible = false
- CreatorLabel.Name = "CreatorLabel"
- CreatorLabel.Parent = CreditsFrame
- CreatorLabel.BackgroundColor3 = Color3.new(0.0666667, 1, 0)
- CreatorLabel.BackgroundTransparency = 0.80000001192093
- CreatorLabel.Position = UDim2.new(0.076530613, 0, 0.100917429, 0)
- CreatorLabel.Size = UDim2.new(0, 179, 0, 40)
- CreatorLabel.Font = Enum.Font.Highway
- CreatorLabel.Text = "Created By : Lairlis "
- CreatorLabel.TextColor3 = Color3.new(0, 0, 0)
- CreatorLabel.TextScaled = true
- CreatorLabel.TextSize = 14
- CreatorLabel.TextWrapped = true
- ScriptsByLabel.Name = "ScriptsByLabel"
- ScriptsByLabel.Parent = CreditsFrame
- ScriptsByLabel.BackgroundColor3 = Color3.new(0.0666667, 1, 0)
- ScriptsByLabel.BackgroundTransparency = 0.80000001192093
- ScriptsByLabel.Position = UDim2.new(0.122448981, 0, 0.394495338, 0)
- ScriptsByLabel.Size = UDim2.new(0, 161, 0, 120)
- ScriptsByLabel.Font = Enum.Font.Highway
- ScriptsByLabel.Text = "Nigger: Lairlis"
- ScriptsByLabel.TextColor3 = Color3.new(0, 0, 0)
- ScriptsByLabel.TextScaled = true
- ScriptsByLabel.TextSize = 14
- ScriptsByLabel.TextWrapped = true
- DiscordLabel.Name = "DiscordLabel"
- DiscordLabel.Parent = CreditsFrame
- DiscordLabel.BackgroundColor3 = Color3.new(0.0666667, 1, 0)
- DiscordLabel.BackgroundTransparency = 0.80000001192093
- DiscordLabel.Position = UDim2.new(0.228337705, 0, 0.282568783, 0)
- DiscordLabel.Size = UDim2.new(0, 149, 0, 24)
- DiscordLabel.Font = Enum.Font.Highway
- DiscordLabel.Text = "lairlis.tk"
- DiscordLabel.TextColor3 = Color3.new(0, 0, 0)
- DiscordLabel.TextScaled = true
- DiscordLabel.TextSize = 14
- DiscordLabel.TextWrapped = true
- TeleportsFrame.Name = "TeleportsFrame"
- TeleportsFrame.Parent = MainFrame
- TeleportsFrame.Active = true
- TeleportsFrame.BackgroundColor3 = Color3.new(1, 0, 0.866667)
- TeleportsFrame.BackgroundTransparency = 0.60000002384186
- TeleportsFrame.Position = UDim2.new(0.156999975, 0, 0.00599996885, 0)
- TeleportsFrame.Size = UDim2.new(0, 197, 0, 245)
- TeleportsFrame.Visible = false
- TeleportsFrame.CanvasPosition = Vector2.new(0, 213)
- TeleportsFrame.ScrollBarThickness = 8
- TpSpawnButton.Name = "TpSpawnButton"
- TpSpawnButton.Parent = TeleportsFrame
- TpSpawnButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
- TpSpawnButton.Position = UDim2.new(0.0893300623, 0, -0.000117009506, 0)
- TpSpawnButton.Size = UDim2.new(0, 168, 0, 35)
- TpSpawnButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
- TpSpawnButton.Font = Enum.Font.SourceSans
- TpSpawnButton.Text = "Spawn"
- TpSpawnButton.TextColor3 = Color3.new(0, 0, 0)
- TpSpawnButton.TextScaled = true
- TpSpawnButton.TextSize = 14
- TpSpawnButton.TextWrapped = true
- TpSpawnButton.MouseButton1Click:Connect(function()
- plr.Character.HumanoidRootPart.CFrame = locations.Skyland.CFrame
- end)
- TpChestsLabel.Name = "TpChestsLabel"
- TpChestsLabel.Parent = TeleportsFrame
- TpChestsLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TpChestsLabel.BackgroundTransparency = 1
- TpChestsLabel.Position = UDim2.new(0.0994823501, 0, 0.0754913315, 0)
- TpChestsLabel.Size = UDim2.new(0, 162, 0, 40)
- TpChestsLabel.Font = Enum.Font.SciFi
- TpChestsLabel.Text = "Chests"
- TpChestsLabel.TextColor3 = Color3.new(0, 1, 0.0313726)
- TpChestsLabel.TextScaled = true
- TpChestsLabel.TextSize = 14
- TpChestsLabel.TextWrapped = true
- TpArcherChestButton.Name = "TpArcherChestButton"
- TpArcherChestButton.Parent = TpChestsLabel
- TpArcherChestButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
- TpArcherChestButton.Position = UDim2.new(0, 0, 0.916001916, 0)
- TpArcherChestButton.Size = UDim2.new(0, 165, 0, 33)
- TpArcherChestButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
- TpArcherChestButton.Font = Enum.Font.SourceSans
- TpArcherChestButton.Text = "Archer Chest"
- TpArcherChestButton.TextColor3 = Color3.new(0, 0, 0)
- TpArcherChestButton.TextScaled = true
- TpArcherChestButton.TextSize = 14
- TpArcherChestButton.TextWrapped = true
- TpArcherChestButton.MouseButton1Click:Connect(function()
- plr.Character.HumanoidRootPart.CFrame = chests.ArcherChest.CFrame
- end)
- TpBeachChestButton.Name = "TpBeachChestButton"
- TpBeachChestButton.Parent = TpChestsLabel
- TpBeachChestButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
- TpBeachChestButton.Position = UDim2.new(-0.0123456791, 0, 1.76600194, 0)
- TpBeachChestButton.Size = UDim2.new(0, 165, 0, 33)
- TpBeachChestButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
- TpBeachChestButton.Font = Enum.Font.SourceSans
- TpBeachChestButton.Text = "Beach Chest"
- TpBeachChestButton.TextColor3 = Color3.new(0, 0, 0)
- TpBeachChestButton.TextScaled = true
- TpBeachChestButton.TextSize = 14
- TpBeachChestButton.TextWrapped = true
- TpBeachChestButton.MouseButton1Click:Connect(function()
- plr.Character.HumanoidRootPart.CFrame = chests.BeachChest.CFrame
- end)
- TpAncientChestButton.Name = "TpAncientChestButton"
- TpAncientChestButton.Parent = TpChestsLabel
- TpAncientChestButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
- TpAncientChestButton.Position = UDim2.new(0, 0, 2.59100199, 0)
- TpAncientChestButton.Size = UDim2.new(0, 165, 0, 33)
- TpAncientChestButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
- TpAncientChestButton.Font = Enum.Font.SourceSans
- TpAncientChestButton.Text = "Ancient Chest"
- TpAncientChestButton.TextColor3 = Color3.new(0, 0, 0)
- TpAncientChestButton.TextScaled = true
- TpAncientChestButton.TextSize = 14
- TpAncientChestButton.TextWrapped = true
- TpAncientChestButton.MouseButton1Click:Connect(function()
- plr.Character.HumanoidRootPart.CFrame = chests.AncientChest.CFrame
- end)
- TpTropicalParadiseButton.Name = "TpTropicalParadiseButton"
- TpTropicalParadiseButton.Parent = TeleportsFrame
- TpTropicalParadiseButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
- TpTropicalParadiseButton.Position = UDim2.new(0.0842539147, 0, 0.445297778, 0)
- TpTropicalParadiseButton.Size = UDim2.new(0, 168, 0, 49)
- TpTropicalParadiseButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
- TpTropicalParadiseButton.Font = Enum.Font.SourceSans
- TpTropicalParadiseButton.Text = "Tropical Paradise"
- TpTropicalParadiseButton.TextColor3 = Color3.new(0, 0, 0)
- TpTropicalParadiseButton.TextScaled = true
- TpTropicalParadiseButton.TextSize = 14
- TpTropicalParadiseButton.TextWrapped = true
- TpTropicalParadiseButton.MouseButton1Click:Connect(function()
- plr.Character.HumanoidRootPart.CFrame = locations["Tropical Paradise"].CFrame
- end)
- TpCandylandButton.Name = "TpCandylandButton"
- TpCandylandButton.Parent = TeleportsFrame
- TpCandylandButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
- TpCandylandButton.Position = UDim2.new(0.0842539147, 0, 0.554468095, 0)
- TpCandylandButton.Size = UDim2.new(0, 168, 0, 49)
- TpCandylandButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
- TpCandylandButton.Font = Enum.Font.SourceSans
- TpCandylandButton.Text = "Candyland"
- TpCandylandButton.TextColor3 = Color3.new(0, 0, 0)
- TpCandylandButton.TextScaled = true
- TpCandylandButton.TextSize = 14
- TpCandylandButton.TextWrapped = true
- TpCandylandButton.MouseButton1Click:Connect(function()
- plr.Character.HumanoidRootPart.CFrame = locations.Candyland.CFrame
- end)
- TpArchervilleButton.Name = "TpArchervilleButton"
- TpArchervilleButton.Parent = TeleportsFrame
- TpArchervilleButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
- TpArchervilleButton.Position = UDim2.new(0.0842539147, 0, 0.661454976, 0)
- TpArchervilleButton.Size = UDim2.new(0, 168, 0, 49)
- TpArchervilleButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
- TpArchervilleButton.Font = Enum.Font.SourceSans
- TpArchervilleButton.Text = "Archerville"
- TpArchervilleButton.TextColor3 = Color3.new(0, 0, 0)
- TpArchervilleButton.TextScaled = true
- TpArchervilleButton.TextSize = 14
- TpArchervilleButton.TextWrapped = true
- TpArchervilleButton.MouseButton1Click:Connect(function()
- plr.Character.HumanoidRootPart.CFrame = locations.Archerville.CFrame
- end)
- TpAncientGreeceButton.Name = "TpAncientGreeceButton"
- TpAncientGreeceButton.Parent = TeleportsFrame
- TpAncientGreeceButton.BackgroundColor3 = Color3.new(0.913726, 1, 0.12549)
- TpAncientGreeceButton.Position = UDim2.new(0.0842539147, 0, 0.770625293, 0)
- TpAncientGreeceButton.Size = UDim2.new(0, 168, 0, 49)
- TpAncientGreeceButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
- TpAncientGreeceButton.Font = Enum.Font.SourceSans
- TpAncientGreeceButton.Text = "Ancient Greece"
- TpAncientGreeceButton.TextColor3 = Color3.new(0, 0, 0)
- TpAncientGreeceButton.TextScaled = true
- TpAncientGreeceButton.TextSize = 14
- TpAncientGreeceButton.TextWrapped = true
- TpAncientGreeceButton.MouseButton1Click:Connect(function()
- plr.Character.HumanoidRootPart.CFrame = locations["Ancient Greece"].CFrame
- end)
- SettingsFrame.Name = "SettingsFrame"
- SettingsFrame.Parent = MainFrame
- SettingsFrame.Active = true
- SettingsFrame.BackgroundColor3 = Color3.new(1, 0, 0.866667)
- SettingsFrame.BackgroundTransparency = 0.60000002384186
- SettingsFrame.Position = UDim2.new(0.156999975, 0, 0.00599996885, 0)
- SettingsFrame.Size = UDim2.new(0, 197, 0, 245)
- SettingsFrame.Visible = false
- SettingsFrame.ScrollBarThickness = 8
- ScriptsFrame.Name = "ScriptsFrame"
- ScriptsFrame.Parent = MainFrame
- ScriptsFrame.BackgroundColor3 = Color3.new(1, 0, 0.866667)
- ScriptsFrame.BackgroundTransparency = 0.60000002384186
- ScriptsFrame.Position = UDim2.new(0.156999975, 0, 0.00599996885, 0)
- ScriptsFrame.Size = UDim2.new(0, 197, 0, 245)
- ScriptsFrame.Visible = false
- ScriptsFrame.CanvasSize = UDim2.new(0, 0, 1.20000005, 0)
- ScriptsFrame.ScrollBarThickness = 8
- ScriptsLabel.Name = "ScriptsLabel"
- ScriptsLabel.Parent = ScriptsFrame
- ScriptsLabel.BackgroundColor3 = Color3.new(0, 1, 1)
- ScriptsLabel.BackgroundTransparency = 1
- ScriptsLabel.BorderColor3 = Color3.new(0, 0, 0)
- ScriptsLabel.Position = UDim2.new(0.187817261, 0, 0, 0)
- ScriptsLabel.Size = UDim2.new(0, 122, 0, 27)
- ScriptsLabel.Text = "Scripts"
- ScriptsLabel.TextColor3 = Color3.new(0, 1, 1)
- ScriptsLabel.TextScaled = true
- ScriptsLabel.TextSize = 14
- ScriptsLabel.TextWrapped = true
- FarmCoinsLabel.Name = "FarmCoinsLabel"
- FarmCoinsLabel.Parent = ScriptsFrame
- FarmCoinsLabel.BackgroundColor3 = Color3.new(1, 0.466667, 0)
- FarmCoinsLabel.Position = UDim2.new(0.0761421323, 0, 0.513828218, 0)
- FarmCoinsLabel.Size = UDim2.new(0, 122, 0, 35)
- FarmCoinsLabel.Font = Enum.Font.SourceSans
- FarmCoinsLabel.Text = "Farm-Coins"
- FarmCoinsLabel.TextColor3 = Color3.new(0, 0, 0)
- FarmCoinsLabel.TextScaled = true
- FarmCoinsLabel.TextSize = 14
- FarmCoinsLabel.TextWrapped = true
- FarmCoinsButton.Name = "FarmCoinsButton"
- FarmCoinsButton.Parent = FarmCoinsLabel
- FarmCoinsButton.BackgroundColor3 = Color3.new(1, 0, 0)
- FarmCoinsButton.Position = UDim2.new(1.12295079, 0, 0.0547619462, 0)
- FarmCoinsButton.Size = UDim2.new(0, 30, 0, 30)
- FarmCoinsButton.Font = Enum.Font.SourceSans
- FarmCoinsButton.Text = ""
- FarmCoinsButton.TextColor3 = Color3.new(0, 0, 0)
- FarmCoinsButton.TextSize = 14
- AutoFarmCoinsToggle = false
- FarmCoinsButton.MouseButton1Click:Connect(function()
- if AutoFarmCoinsToggle then
- AutoFarmCoinsToggle = false
- FarmCoinsButton.BackgroundColor3 = Color3.fromRGB(255,0,0)
- else
- AutoFarmCoinsToggle = true
- FarmCoinsButton.BackgroundColor3 = Color3.fromRGB(0,255,0)
- end
- while AutoFarmCoinsToggle do
- for i,coin in pairs(coins:GetChildren()) do
- wait(0.01)
- coin.CFrame = plr.Character.HumanoidRootPart.CFrame
- end
- wait(20)
- end
- end)
- FarmGemsLabel.Name = "FarmGemsLabel"
- FarmGemsLabel.Parent = ScriptsFrame
- FarmGemsLabel.BackgroundColor3 = Color3.new(1, 0.466667, 0)
- FarmGemsLabel.Position = UDim2.new(0.0761421323, 0, 0.677583635, 0)
- FarmGemsLabel.Size = UDim2.new(0, 122, 0, 35)
- FarmGemsLabel.Font = Enum.Font.SourceSans
- FarmGemsLabel.Text = "Farm-Gems"
- FarmGemsLabel.TextColor3 = Color3.new(0, 0, 0)
- FarmGemsLabel.TextScaled = true
- FarmGemsLabel.TextSize = 14
- FarmGemsLabel.TextWrapped = true
- FarmGemsButton.Name = "FarmGemsButton"
- FarmGemsButton.Parent = FarmGemsLabel
- FarmGemsButton.BackgroundColor3 = Color3.new(1, 0, 0)
- FarmGemsButton.Position = UDim2.new(1.12295079, 0, 0.0547619462, 0)
- FarmGemsButton.Size = UDim2.new(0, 30, 0, 30)
- FarmGemsButton.Font = Enum.Font.SourceSans
- FarmGemsButton.Text = ""
- FarmGemsButton.TextColor3 = Color3.new(0, 0, 0)
- FarmGemsButton.TextSize = 14
- AutoFarmGemsToggle = false
- FarmGemsButton.MouseButton1Click:Connect(function()
- if AutoFarmGemsToggle then
- AutoFarmGemsToggle = false
- FarmGemsButton.BackgroundColor3 = Color3.fromRGB(255,0,0)
- else
- AutoFarmGemsToggle = true
- FarmGemsButton.BackgroundColor3 = Color3.fromRGB(0,255,0)
- end
- while AutoFarmGemsToggle do
- for i,gem in pairs(gems:GetChildren()) do
- wait(0.01)
- gem.CFrame = plr.Character.HumanoidRootPart.CFrame
- end
- wait(20)
- end
- end)
- AutoSellLabel.Name = "AutoSellLabel"
- AutoSellLabel.Parent = ScriptsFrame
- AutoSellLabel.BackgroundColor3 = Color3.new(1, 0.466667, 0)
- AutoSellLabel.Position = UDim2.new(0.0761421323, 0, 0.834788859, 0)
- AutoSellLabel.Size = UDim2.new(0, 122, 0, 35)
- AutoSellLabel.Font = Enum.Font.SourceSans
- AutoSellLabel.Text = "Auto-Sell"
- AutoSellLabel.TextColor3 = Color3.new(0, 0, 0)
- AutoSellLabel.TextScaled = true
- AutoSellLabel.TextSize = 14
- AutoSellLabel.TextWrapped = true
- AutoSellButton.Name = "AutoSellButton"
- AutoSellButton.Parent = AutoSellLabel
- AutoSellButton.BackgroundColor3 = Color3.new(1, 0, 0)
- AutoSellButton.Position = UDim2.new(1.12295079, 0, 0.0547619462, 0)
- AutoSellButton.Size = UDim2.new(0, 30, 0, 30)
- AutoSellButton.Font = Enum.Font.SourceSans
- AutoSellButton.Text = ""
- AutoSellButton.TextColor3 = Color3.new(0, 0, 0)
- AutoSellButton.TextSize = 14
- AutoSellToggle = false
- AutoSellButton.MouseButton1Click:Connect(function()
- if AutoSellToggle then
- AutoSellToggle = false
- AutoSellButton.BackgroundColor3 = Color3.fromRGB(255,0,0)
- else
- AutoSellToggle = true
- AutoSellButton.BackgroundColor3 = Color3.fromRGB(0,255,0)
- end
- while AutoSellToggle do
- wait(1)
- sellPart.CFrame = plr.Character.HumanoidRootPart.CFrame
- end
- end)
- AddBalloonLabel.Name = "AddBalloonLabel"
- AddBalloonLabel.Parent = ScriptsFrame
- AddBalloonLabel.BackgroundColor3 = Color3.new(0, 1, 1)
- AddBalloonLabel.BackgroundTransparency = 1
- AddBalloonLabel.Position = UDim2.new(0.0761421323, 0, 0.251819462, 0)
- AddBalloonLabel.Size = UDim2.new(0, 167, 0, 35)
- AddBalloonLabel.Font = Enum.Font.Highway
- AddBalloonLabel.Text = "ADD-BALLOONS"
- AddBalloonLabel.TextColor3 = Color3.new(0.917647, 1, 0)
- AddBalloonLabel.TextScaled = true
- AddBalloonLabel.TextSize = 14
- AddBalloonLabel.TextWrapped = true
- AddBalloonButton.Name = "AddBalloonButton"
- AddBalloonButton.Parent = AddBalloonLabel
- AddBalloonButton.BackgroundColor3 = Color3.new(0.317647, 1, 0)
- AddBalloonButton.Position = UDim2.new(0.754098475, 0, 0.997619629, 0)
- AddBalloonButton.Size = UDim2.new(0, 41, 0, 30)
- AddBalloonButton.Font = Enum.Font.SourceSans
- AddBalloonButton.Text = "ADD"
- AddBalloonButton.TextColor3 = Color3.new(0, 0, 0)
- AddBalloonButton.TextScaled = true
- AddBalloonButton.TextSize = 14
- AddBalloonButton.TextWrapped = true
- AddBalloonButton.MouseButton1Click:Connect(function()
- replicatedStorage.FillBalloon:FireServer(100)
- end)
- TextBox.Parent = AddBalloonLabel
- TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
- TextBox.Position = UDim2.new(-0.0202271268, 0, 0.971428573, 0)
- TextBox.Size = UDim2.new(0, 123, 0, 30)
- TextBox.Font = Enum.Font.SourceSans
- TextBox.Text = ""
- TextBox.TextColor3 = Color3.new(0, 0, 0)
- TextBox.TextScaled = true
- TextBox.TextSize = 14
- TextBox.TextWrapped = true
- InfiniteBackpackButton.Name = "InfiniteBackpackButton"
- InfiniteBackpackButton.Parent = ScriptsFrame
- InfiniteBackpackButton.BackgroundColor3 = Color3.new(0.317647, 1, 0)
- InfiniteBackpackButton.Position = UDim2.new(0.0761421323, 0, 0.14254719, 0)
- InfiniteBackpackButton.Size = UDim2.new(0, 167, 0, 30)
- InfiniteBackpackButton.Font = Enum.Font.SourceSans
- InfiniteBackpackButton.Text = "Infinite Niggers"
- InfiniteBackpackButton.TextColor3 = Color3.new(0, 0, 0)
- InfiniteBackpackButton.TextScaled = true
- InfiniteBackpackButton.TextSize = 14
- InfiniteBackpackButton.TextWrapped = true
- InfiniteBackpackButton.MouseButton1Click:Connect(function()
- replicatedStorage.FillBalloon:FireServer(100000000)
- sellPart.CFrame = plr.Character.HumanoidRootPart.CFrame
- replicatedStorage.BuyBalloon:InvokeServer("Unlimited")
- end)
- HomeFrame.Name = "HomeFrame"
- HomeFrame.Parent = MainFrame
- HomeFrame.BackgroundColor3 = Color3.new(1, 0, 0.866667)
- HomeFrame.BackgroundTransparency = 0.60000002384186
- HomeFrame.NextSelectionDown = CreditsButton
- HomeFrame.Position = UDim2.new(0.157165527, 0, 0.00623737974, 0)
- HomeFrame.Selectable = true
- HomeFrame.Size = UDim2.new(0, 196, 0, 244)
- WelcomeLabel.Name = "WelcomeLabel"
- WelcomeLabel.Parent = HomeFrame
- WelcomeLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- WelcomeLabel.BackgroundTransparency = 1
- WelcomeLabel.Position = UDim2.new(0.0629163459, 0, -0.00104116742, 0)
- WelcomeLabel.Selectable = true
- WelcomeLabel.Size = UDim2.new(0, 170, 0, 71)
- WelcomeLabel.Font = Enum.Font.SourceSans
- WelcomeLabel.Text = "Welcome to Nigger Factory \n By Lairlis"
- WelcomeLabel.TextColor3 = Color3.new(0, 1, 0.717647)
- WelcomeLabel.TextScaled = true
- WelcomeLabel.TextSize = 14
- WelcomeLabel.TextStrokeTransparency = 0
- WelcomeLabel.TextWrapped = true
- FeaturesLabel.Name = "FeaturesLabel"
- FeaturesLabel.Parent = HomeFrame
- FeaturesLabel.BackgroundColor3 = Color3.new(0.67451, 0.666667, 0.670588)
- FeaturesLabel.BackgroundTransparency = 1
- FeaturesLabel.Position = UDim2.new(0.0631128401, 0, 0.325008512, 0)
- FeaturesLabel.Selectable = true
- FeaturesLabel.Size = UDim2.new(0, 183, 0, 155)
- FeaturesLabel.Font = Enum.Font.SourceSans
- FeaturesLabel.Text = "Features : \n1. ADD-Balloons(No limit)\n2. Auto-Sell\n3. Auto-Farms\n4. Teleports To All Areas"
- FeaturesLabel.TextColor3 = Color3.new(0.984314, 1, 0)
- FeaturesLabel.TextScaled = true
- FeaturesLabel.TextSize = 14
- FeaturesLabel.TextStrokeTransparency = 0
- FeaturesLabel.TextWrapped = true
- FeaturesLabel.TextXAlignment = Enum.TextXAlignment.Left
- HomeButton.Name = "HomeButton"
- HomeButton.Parent = MainFrame
- HomeButton.BackgroundColor3 = Color3.new(0.431373, 0.027451, 0.376471)
- HomeButton.BackgroundTransparency = 0.10000000149012
- HomeButton.BorderSizePixel = 2
- HomeButton.Position = UDim2.new(-0.0737414062, 0, 0.0624616183, 0)
- HomeButton.Size = UDim2.new(0, 67, 0, 38)
- HomeButton.ZIndex = 2
- HomeButton.Font = Enum.Font.SciFi
- HomeButton.Text = "Home"
- HomeButton.TextColor3 = Color3.new(0, 0, 0)
- HomeButton.TextScaled = true
- HomeButton.TextSize = 14
- HomeButton.TextWrapped = true
- HomeButton.MouseButton1Click:Connect(function()
- HideAllFrames()
- MainButtonsColorReset()
- HomeFrame.Visible = true
- HomeButton.BackgroundColor3 = Color3.fromRGB(110, 7, 96)
- end)
- ScriptsButton.Name = "ScriptsButton"
- ScriptsButton.Parent = MainFrame
- ScriptsButton.BackgroundColor3 = Color3.new(0.117647, 0.913726, 1)
- ScriptsButton.BackgroundTransparency = 0.10000000149012
- ScriptsButton.BorderSizePixel = 2
- ScriptsButton.Position = UDim2.new(-0.0737414062, 0, 0.260165691, 0)
- ScriptsButton.Size = UDim2.new(0, 67, 0, 38)
- ScriptsButton.ZIndex = 2
- ScriptsButton.Font = Enum.Font.SciFi
- ScriptsButton.Text = "Scripts"
- ScriptsButton.TextColor3 = Color3.new(0, 0, 0)
- ScriptsButton.TextScaled = true
- ScriptsButton.TextSize = 14
- ScriptsButton.TextWrapped = true
- ScriptsButton.MouseButton1Click:Connect(function()
- HideAllFrames()
- MainButtonsColorReset()
- ScriptsFrame.Visible = true
- ScriptsButton.BackgroundColor3 = Color3.fromRGB(110, 7, 96)
- end)
- TeleportsButton.Name = "TeleportsButton"
- TeleportsButton.Parent = MainFrame
- TeleportsButton.BackgroundColor3 = Color3.new(0.117647, 0.913726, 1)
- TeleportsButton.BackgroundTransparency = 0.10000000149012
- TeleportsButton.BorderSizePixel = 2
- TeleportsButton.Position = UDim2.new(-0.0737414062, 0, 0.464687884, 0)
- TeleportsButton.Size = UDim2.new(0, 67, 0, 38)
- TeleportsButton.ZIndex = 2
- TeleportsButton.Font = Enum.Font.SciFi
- TeleportsButton.Text = "Teleport"
- TeleportsButton.TextColor3 = Color3.new(0, 0, 0)
- TeleportsButton.TextScaled = true
- TeleportsButton.TextSize = 14
- TeleportsButton.TextWrapped = true
- TeleportsButton.MouseButton1Click:Connect(function()
- HideAllFrames()
- MainButtonsColorReset()
- TeleportsFrame.Visible = true
- TeleportsButton.BackgroundColor3 = Color3.fromRGB(110, 7, 96)
- end)
- SettingsButton.Name = "SettingsButton"
- SettingsButton.Parent = MainFrame
- SettingsButton.BackgroundColor3 = Color3.new(0.117647, 0.913726, 1)
- SettingsButton.BackgroundTransparency = 0.10000000149012
- SettingsButton.BorderSizePixel = 2
- SettingsButton.Position = UDim2.new(-0.0737414062, 0, 0.666379213, 0)
- SettingsButton.Size = UDim2.new(0, 67, 0, 38)
- SettingsButton.ZIndex = 2
- SettingsButton.Font = Enum.Font.SciFi
- SettingsButton.Text = "Settings"
- SettingsButton.TextColor3 = Color3.new(0, 0, 0)
- SettingsButton.TextScaled = true
- SettingsButton.TextSize = 14
- SettingsButton.TextWrapped = true
- SettingsButton.MouseButton1Click:Connect(function()
- HideAllFrames()
- MainButtonsColorReset()
- SettingsButton.Visible = true
- SettingsButton.BackgroundColor3 = Color3.fromRGB(110, 7, 96)
- end)
- CreditsButton.Name = "CreditsButton"
- CreditsButton.Parent = MainFrame
- CreditsButton.BackgroundColor3 = Color3.new(0.117647, 0.913726, 1)
- CreditsButton.BackgroundTransparency = 0.10000000149012
- CreditsButton.BorderSizePixel = 2
- CreditsButton.Position = UDim2.new(-0.0737414062, 0, 0.86716938, 0)
- CreditsButton.Size = UDim2.new(0, 67, 0, 38)
- CreditsButton.ZIndex = 2
- CreditsButton.Font = Enum.Font.SciFi
- CreditsButton.Text = "Credits"
- CreditsButton.TextColor3 = Color3.new(0, 0, 0)
- CreditsButton.TextScaled = true
- CreditsButton.TextSize = 14
- CreditsButton.TextWrapped = true
- CreditsButton.MouseButton1Click:Connect(function()
- HideAllFrames()
- MainButtonsColorReset()
- CreditsFrame.Visible = true
- CreditsButton.BackgroundColor3 = Color3.fromRGB(110, 7, 96)
- end)
- MinimizeButton.Name = "MinimizeButton"
- MinimizeButton.Parent = DragFrame
- MinimizeButton.BackgroundColor3 = Color3.new(1, 0.968628, 0)
- MinimizeButton.BackgroundTransparency = 0.10000000149012
- MinimizeButton.Position = UDim2.new(0.776956499, 0, 0.010268813, 0)
- MinimizeButton.Size = UDim2.new(0, 26, 0, 26)
- MinimizeButton.Font = Enum.Font.SourceSans
- MinimizeButton.Text = "-"
- MinimizeButton.TextColor3 = Color3.new(0, 0, 0)
- MinimizeButton.TextScaled = true
- MinimizeButton.TextSize = 14
- MinimizeButton.TextWrapped = true
- MinimizeButton.MouseButton1Click:Connect(function()
- MinimizeButton.Visible = false
- MaximiseButton.Visible = true
- MainFrame.Visible = false
- DragFrame:TweenSize(UDim2.new(0, 240, 0, 30), Enum.EasingDirection.In, Enum.EasingStyle.Linear, .7, false)
- end)
- MaximiseButton.Name = "MaximiseButton"
- MaximiseButton.Parent = DragFrame
- MaximiseButton.BackgroundColor3 = Color3.new(0, 1, 0)
- MaximiseButton.BackgroundTransparency = 0.10000000149012
- MaximiseButton.Position = UDim2.new(0.776956499, 0, 0.010268813, 0)
- MaximiseButton.Size = UDim2.new(0, 26, 0, 26)
- MaximiseButton.Visible = false
- MaximiseButton.Font = Enum.Font.SourceSans
- MaximiseButton.Text = "+"
- MaximiseButton.TextColor3 = Color3.new(0, 0, 0)
- MaximiseButton.TextScaled = true
- MaximiseButton.TextSize = 14
- MaximiseButton.TextWrapped = true
- MaximiseButton.MouseButton1Click:Connect(function()
- MinimizeButton.Visible = true
- MaximiseButton.Visible = false
- DragFrame:TweenSize(UDim2.new(0, 240, 0, 277), Enum.EasingDirection.Out, Enum.EasingStyle.Linear, .7, false)
- wait(.7)
- MainFrame.Visible = true
- end)
- ExitButton.Name = "ExitButton"
- ExitButton.Parent = DragFrame
- ExitButton.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
- ExitButton.BackgroundTransparency = 0.10000000149012
- ExitButton.Position = UDim2.new(0.893552125, 0, 0, 0)
- ExitButton.Size = UDim2.new(0, 26, 0, 28)
- ExitButton.Font = Enum.Font.SourceSans
- ExitButton.Text = "X"
- ExitButton.TextColor3 = Color3.new(0, 0, 0)
- ExitButton.TextScaled = true
- ExitButton.TextSize = 14
- ExitButton.TextWrapped = true
- ExitButton.MouseButton1Click:Connect(function()
- BalloonSimulator:Destroy()
- end)
- heading.Name = "heading"
- heading.Parent = DragFrame
- heading.BackgroundColor3 = Color3.new(0.133333, 1, 0)
- heading.BackgroundTransparency = 0.80000001192093
- heading.Position = UDim2.new(0.000450326625, 0, 0.00240862928, 0)
- heading.Size = UDim2.new(0, 185, 0, 28)
- heading.Font = Enum.Font.Highway
- heading.Text = "NiggerHook"
- heading.TextColor3 = Color3.new(1, 1, 1)
- heading.TextScaled = true
- heading.TextSize = 14
- heading.TextWrapped = true
- print("Success.\n Lairlis is a nigger")
Add Comment
Please, Sign In to add comment