Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Made By Roadine
- -- Objects
- local BoogaHub = Instance.new("ScreenGui")
- local Main = Instance.new("Frame")
- local Title = Instance.new("TextLabel")
- local Jump = Instance.new("TextButton")
- local reffects = Instance.new("TextButton")
- local craftitem = Instance.new("TextBox")
- local craft = Instance.new("TextButton")
- local credits = Instance.new("TextLabel")
- -- Properties
- BoogaHub.Name = "Booga Hub"
- BoogaHub.Parent = game.Players.LocalPlayer.PlayerGui
- Main.Name = "Main"
- Main.Parent = BoogaHub
- Main.Active = true
- Main.Draggable = true
- Main.BackgroundColor3 = Color3.new(255, 0, 191)
- Main.BackgroundTransparency = 0.10000000149012
- Main.BorderSizePixel = 0
- Main.ClipsDescendants = true
- Main.Position = UDim2.new(0.440909088, 0, 0.289044321, 0)
- Main.Selectable = true
- Main.Size = UDim2.new(0, 328, 0, 357)
- Title.Name = "Title"
- Title.Parent = Main
- Title.BackgroundColor3 = Color3.new(117, 0, 0)
- Title.BackgroundTransparency = 0.10000000149012
- Title.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
- Title.BorderSizePixel = 4
- Title.Position = UDim2.new(0.164102569, 0, 0.0705394223, 0)
- Title.Size = UDim2.new(0, 225, 0, 41)
- Title.Font = Enum.Font.ArialBold
- Title.Text = "Booga Hub by Bottle Flip P_P"
- Title.TextColor3 = Color3.new(1, 1, 1)
- Title.TextScaled = true
- Title.TextSize = 14
- Title.TextWrapped = true
- Jump.Name = "Jump"
- Jump.Parent = Main
- Jump.BackgroundColor3 = Color3.new(117, 0, 0)
- Jump.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
- Jump.BorderSizePixel = 4
- Jump.Position = UDim2.new(0.164102569, 0, 0.294605821, 0)
- Jump.Size = UDim2.new(0, 100, 0, 29)
- Jump.Font = Enum.Font.ArialBold
- Jump.Text = "WalkSpeed And JumpPower (WalkSpeed Press Q)"
- Jump.TextColor3 = Color3.new(1, 1, 1)
- Jump.TextScaled = true
- Jump.TextSize = 14
- Jump.TextWrapped = true
- reffects.Name = "reffects"
- reffects.Parent = Main
- reffects.Active = false
- reffects.BackgroundColor3 = Color3.new(0, 0, 225)
- reffects.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
- reffects.BorderSizePixel = 4
- reffects.Position = UDim2.new(0.543589771, 0, 0.294605821, 0)
- reffects.Size = UDim2.new(0, 100, 0, 29)
- reffects.Font = Enum.Font.ArialBold
- reffects.Text = "Remove Fogs"
- reffects.TextColor3 = Color3.new(1, 1, 1)
- reffects.TextScaled = true
- reffects.TextSize = 14
- reffects.TextWrapped = true
- craftitem.Name = "craft item"
- craftitem.Parent = Main
- craftitem.Active = false
- craftitem.BackgroundColor3 = Color3.new(0, 0, 225)
- craftitem.BackgroundTransparency = 0.10000000149012
- craftitem.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
- craftitem.BorderSizePixel = 4
- craftitem.Position = UDim2.new(0.200000003, 0, 0.74219954, 0)
- craftitem.Size = UDim2.new(0, 198, 0, 29)
- craftitem.Font = Enum.Font.ArialBold
- craftitem.Text = "Item To Craft Here!"
- craftitem.TextColor3 = Color3.new(1, 1, 1)
- craftitem.TextScaled = true
- craftitem.TextSize = 14
- craftitem.TextWrapped = true
- craft.Name = "craft"
- craft.Parent = Main
- craft.Active = false
- craft.BackgroundColor3 = Color3.new(0, 0, 225)
- craft.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
- craft.BorderSizePixel = 4
- craft.Position = UDim2.new(0.225641027, 0, 0.517283678, 0)
- craft.Size = UDim2.new(0, 180, 0, 41)
- craft.Font = Enum.Font.ArialBold
- craft.Text = "Craft Item"
- craft.TextColor3 = Color3.new(1, 1, 1)
- craft.TextScaled = true
- craft.TextSize = 14
- craft.TextWrapped = true
- credits.Name = "credits"
- credits.Parent = Main
- credits.BackgroundColor3 = Color3.new(117, 0, 0)
- credits.BackgroundTransparency = 0.10000000149012
- credits.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
- credits.BorderSizePixel = 0
- credits.Position = UDim2.new(0.0153846154, 0, 0.905511796, 0)
- credits.Size = UDim2.new(0, 317, 0, 35)
- credits.Font = Enum.Font.ArialBold
- credits.Text = "Made By Bottle Flip Game and iiiPipe"
- credits.TextColor3 = Color3.new(1, 1, 1)
- credits.TextScaled = true
- credits.TextSize = 14
- credits.TextWrapped = true
- -- Scripts
- Jump.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150
- local plr = game:GetService("Players").LocalPlayer
- local char = plr.Character
- local mouse = game:GetService("Players").LocalPlayer:GetMouse()
- local hum = char:FindFirstChild("HumanoidRootPart")
- local speed = 3
- mouse.KeyDown:connect(function(key)
- if key == "q" then
- loop = true
- while loop do
- hum.CFrame = hum.CFrame + hum.CFrame.lookVector * speed
- wait()
- end
- end
- end)
- mouse.KeyUp:connect(function(key)
- if key == "q" then
- loop = false
- end
- end)
- end)
- reffects.MouseButton1Down:connect(function()
- game.Lighting.FogEnd = 1200000
- game.Lighting.Brightness = 3
- game.Lighting.GlobalShadows = false
- end)
- craft.MouseButton1Down:connect(function()
- local item = craftitem.Text
- local CI = item
- local Event = game:GetService("ReplicatedStorage").Events.CraftItem
- Event:FireServer(CI)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement