Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --by cryptic
- -- Instances:
- local bubblegumtycoon = Instance.new("ScreenGui")
- local backround = Instance.new("Frame")
- local title = Instance.new("TextLabel")
- local frame = Instance.new("Frame")
- local exit = Instance.new("TextButton")
- local freebadges = Instance.new("TextButton")
- local UICorner = Instance.new("UICorner")
- local AutofarmObbys = Instance.new("TextButton")
- local UICorner_2 = Instance.new("UICorner")
- local HighWalkspeed = Instance.new("TextButton")
- local UICorner_3 = Instance.new("UICorner")
- --Properties:
- bubblegumtycoon.Name = "bubblegumtycoon"
- bubblegumtycoon.Parent = game.CoreGui
- backround.Name = "backround"
- backround.Parent = bubblegumtycoon
- backround.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- backround.BorderSizePixel = 0
- backround.Position = UDim2.new(0.105703421, 0, 0.503059983, 0)
- backround.Size = UDim2.new(0, 438, 0, 357)
- title.Name = "title"
- title.Parent = backround
- title.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- title.BorderSizePixel = 0
- title.Size = UDim2.new(0, 438, 0, 44)
- title.Font = Enum.Font.SourceSans
- title.Text = "Bubblegum Tycoon | made by ProxodionDev"
- title.TextColor3 = Color3.fromRGB(255, 0, 4)
- title.TextSize = 23.000
- title.TextWrapped = true
- title.TextXAlignment = Enum.TextXAlignment.Left
- frame.Name = "frame"
- frame.Parent = title
- frame.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
- frame.BorderSizePixel = 0
- frame.Position = UDim2.new(0, 0, 1, 0)
- frame.Size = UDim2.new(0, 438, 0, 1)
- exit.Name = "exit"
- exit.Parent = title
- exit.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- exit.BackgroundTransparency = 1.000
- exit.BorderSizePixel = 0
- exit.Position = UDim2.new(0.874429226, 0, 0, 0)
- exit.Size = UDim2.new(0, 55, 0, 44)
- exit.Font = Enum.Font.Gotham
- exit.Text = "X"
- exit.TextColor3 = Color3.fromRGB(255, 0, 4)
- exit.TextScaled = true
- exit.TextSize = 14.000
- exit.TextWrapped = true
- freebadges.Name = "freebadges"
- freebadges.Parent = backround
- freebadges.BackgroundColor3 = Color3.fromRGB(21, 21, 21)
- freebadges.BorderColor3 = Color3.fromRGB(46, 46, 46)
- freebadges.BorderSizePixel = 0
- freebadges.Position = UDim2.new(0.0319634713, 0, 0.15126051, 0)
- freebadges.Size = UDim2.new(0, 200, 0, 198)
- freebadges.Font = Enum.Font.Gotham
- freebadges.Text = "2 Free Badges (Obby Badges)"
- freebadges.TextColor3 = Color3.fromRGB(255, 0, 4)
- freebadges.TextSize = 12.000
- UICorner.CornerRadius = UDim.new(0, 4)
- UICorner.Parent = freebadges
- AutofarmObbys.Name = "Autofarm (Obbys)"
- AutofarmObbys.Parent = backround
- AutofarmObbys.BackgroundColor3 = Color3.fromRGB(21, 21, 21)
- AutofarmObbys.BorderColor3 = Color3.fromRGB(46, 46, 46)
- AutofarmObbys.BorderSizePixel = 0
- AutofarmObbys.Position = UDim2.new(0.51826483, 0, 0.15126051, 0)
- AutofarmObbys.Size = UDim2.new(0, 200, 0, 198)
- AutofarmObbys.Font = Enum.Font.Gotham
- AutofarmObbys.Text = "Autofarm (Booster Farm) - very slow"
- AutofarmObbys.TextColor3 = Color3.fromRGB(255, 0, 4)
- AutofarmObbys.TextSize = 11.000
- UICorner_2.CornerRadius = UDim.new(0, 4)
- UICorner_2.Parent = AutofarmObbys
- HighWalkspeed.Name = "High Walkspeed"
- HighWalkspeed.Parent = backround
- HighWalkspeed.BackgroundColor3 = Color3.fromRGB(21, 21, 21)
- HighWalkspeed.BorderColor3 = Color3.fromRGB(46, 46, 46)
- HighWalkspeed.BorderSizePixel = 0
- HighWalkspeed.Position = UDim2.new(0.0319634713, 0, 0.731092453, 0)
- HighWalkspeed.Size = UDim2.new(0, 413, 0, 86)
- HighWalkspeed.Font = Enum.Font.Gotham
- HighWalkspeed.Text = "Double Walkspeed (32)"
- HighWalkspeed.TextColor3 = Color3.fromRGB(255, 0, 4)
- HighWalkspeed.TextSize = 12.000
- UICorner_3.CornerRadius = UDim.new(0, 4)
- UICorner_3.Parent = HighWalkspeed
- -- Scripts:
- local function JDKNS_fake_script() -- exit.lclscript
- local script = Instance.new('LocalScript', exit)
- local btn = script.Parent
- local screengui = btn.Parent.Parent.Parent
- btn.MouseButton1Click:Connect(function()
- screengui:Destroy()
- end)
- end
- coroutine.wrap(JDKNS_fake_script)()
- local function WLLQA_fake_script() -- backround.dragabble
- local script = Instance.new('LocalScript', backround)
- local UserInputService = game:GetService("UserInputService")
- local gui = script.Parent
- local dragging
- local dragInput
- local dragStart
- local startPos
- local function update(input)
- local delta = input.Position - dragStart
- gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
- end
- gui.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
- dragging = true
- dragStart = input.Position
- startPos = gui.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- dragging = false
- end
- end)
- end
- end)
- gui.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
- dragInput = input
- end
- end)
- UserInputService.InputChanged:Connect(function(input)
- if input == dragInput and dragging then
- update(input)
- end
- end)
- end
- coroutine.wrap(WLLQA_fake_script)()
- local function PAIZ_fake_script() -- freebadges.lclscript
- local script = Instance.new('LocalScript', freebadges)
- local easyObby = game.Workspace.Obbies.EasyObby.Win
- local hardObby = game.Workspace.Obbies.HardObby.Win
- local btn = script.Parent
- local root = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
- btn.MouseButton1Click:Connect(function()
- root.CFrame = easyObby.CFrame
- wait(.1)
- root.CFrame = hardObby.CFrame
- end)
- end
- coroutine.wrap(PAIZ_fake_script)()
- local function BMREZ_fake_script() -- AutofarmObbys.lclscript
- local script = Instance.new('LocalScript', AutofarmObbys)
- local easyObby = game.Workspace.Obbies.EasyObby.Win
- local hardObby = game.Workspace.Obbies.HardObby.Win
- local btn = script.Parent
- local root = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
- btn.MouseButton1Click:Connect(function()
- while wait() do
- root.CFrame = easyObby.CFrame
- wait(.1)
- root.CFrame = hardObby.CFrame
- wait(88)
- end
- end)
- end
- coroutine.wrap(BMREZ_fake_script)()
- local function RXPQDR_fake_script() -- HighWalkspeed.lclscript
- local script = Instance.new('LocalScript', HighWalkspeed)
- local btn = script.Parent
- local plr = game.Players.LocalPlayer
- btn.MouseButton1Click:Connect(function()
- plr.Character.Humanoid.WalkSpeed = 32
- end)
- end
- coroutine.wrap(RXPQDR_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement