Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local BoogaGUI = Instance.new("ScreenGui")
- local MainFrame = Instance.new("Frame")
- local bar = Instance.new("Frame")
- local bar1 = Instance.new("Frame")
- local powered = Instance.new("TextLabel")
- local title = Instance.new("TextLabel")
- local clicktp = Instance.new("TextButton")
- local infjump = Instance.new("TextButton")
- local walkspeed = Instance.new("TextButton")
- local removeeffects = Instance.new("TextButton")
- local jumppower = Instance.new("TextButton")
- local xray = Instance.new("TextButton")
- local stuffslabel = Instance.new("TextLabel")
- local walkspeedkeybind = Instance.new("TextBox")
- local walkspeednum = Instance.new("TextBox")
- local jpnum = Instance.new("TextBox")
- local jplabel = Instance.new("TextLabel")
- local wslabel = Instance.new("TextLabel")
- local openbtn = Instance.new("TextButton")
- -- Properties
- BoogaGUI.Name = "BoogaGUI"
- BoogaGUI.Parent = game.Players.LocalPlayer.PlayerGui
- MainFrame.Name = "MainFrame"
- MainFrame.Parent = BoogaGUI
- MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
- MainFrame.BorderSizePixel = 0
- MainFrame.Position = UDim2.new(0.239999995, 0, 0.170000002, 0)
- MainFrame.Size = UDim2.new(0, 707, 0, 381)
- MainFrame.Visible = false
- MainFrame.Active = true
- MainFrame.Draggable = true
- bar.Name = "bar"
- bar.Parent = MainFrame
- bar.BackgroundColor3 = Color3.new(0, 0.839216, 0.839216)
- bar.BorderSizePixel = 0
- bar.Size = UDim2.new(0, 707, 0, 22)
- bar1.Name = "bar1"
- bar1.Parent = MainFrame
- bar1.BackgroundColor3 = Color3.new(0, 1, 1)
- bar1.BorderSizePixel = 0
- bar1.Position = UDim2.new(0, 0, 0.0367454067, 0)
- bar1.Size = UDim2.new(0, 707, 0, 58)
- powered.Name = "powered"
- powered.Parent = MainFrame
- powered.BackgroundColor3 = Color3.new(1, 1, 1)
- powered.BackgroundTransparency = 1
- powered.BorderSizePixel = 0
- powered.Position = UDim2.new(0, 0, 0.93651861, 0)
- powered.Size = UDim2.new(0, 137, 0, 24)
- powered.Font = Enum.Font.Fantasy
- powered.Text = "Powered By BlueHack"
- powered.TextColor3 = Color3.new(0, 0, 0)
- powered.TextSize = 14
- title.Name = "title"
- title.Parent = MainFrame
- title.BackgroundColor3 = Color3.new(1, 1, 1)
- title.BackgroundTransparency = 1
- title.BorderSizePixel = 0
- title.Position = UDim2.new(0.0410183892, 0, 0.0367454067, 0)
- title.Size = UDim2.new(0, 218, 0, 58)
- title.Font = Enum.Font.Cartoon
- title.Text = "Booga Booga GUI"
- title.TextColor3 = Color3.new(1, 1, 1)
- title.TextScaled = true
- title.TextSize = 14
- title.TextWrapped = true
- clicktp.Name = "clicktp"
- clicktp.Parent = MainFrame
- clicktp.BackgroundColor3 = Color3.new(1, 1, 1)
- clicktp.BorderColor3 = Color3.new(0.505882, 0.792157, 0.992157)
- clicktp.BorderSizePixel = 10
- clicktp.Position = UDim2.new(0.0410183892, 0, 0.288211465, 0)
- clicktp.Size = UDim2.new(0, 218, 0, 50)
- clicktp.Font = Enum.Font.SciFi
- clicktp.Text = "Ctrl + Click Teleport"
- clicktp.TextColor3 = Color3.new(0, 0, 0)
- clicktp.TextSize = 20
- clicktp.MouseButton1Down:connect(function()
- local Plr = game:GetService('Players').LocalPlayer
- local Mouse = Plr:GetMouse() Mouse.Button1Down:connect(function()
- if not game:GetService('UserInputService'):IsKeyDown(Enum.KeyCode.LeftControl) then
- return
- end
- if not Mouse.Target then return end Plr.Character:MoveTo(Mouse.Hit.p) end)
- end)
- infjump.Name = "infjump"
- infjump.Parent = MainFrame
- infjump.BackgroundColor3 = Color3.new(1, 1, 1)
- infjump.BorderColor3 = Color3.new(0.505882, 0.792157, 0.992157)
- infjump.BorderSizePixel = 10
- infjump.Position = UDim2.new(0.394625187, 0, 0.288211465, 0)
- infjump.Size = UDim2.new(0, 218, 0, 50)
- infjump.Font = Enum.Font.SciFi
- infjump.Text = "Infinite Jump"
- infjump.TextColor3 = Color3.new(0, 0, 0)
- infjump.TextSize = 25
- infjump.MouseButton1Down:connect(function()
- local plr = game:GetService'Players'.LocalPlayer
- local m = plr:GetMouse()
- m.KeyDown:connect(function(k)
- if k == ' ' then
- game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState('Jumping')
- wait()
- game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState('Seated')
- end
- end)
- end)
- walkspeed.Name = "walkspeed"
- walkspeed.Parent = MainFrame
- walkspeed.BackgroundColor3 = Color3.new(1, 1, 1)
- walkspeed.BorderColor3 = Color3.new(0.505882, 0.792157, 0.992157)
- walkspeed.BorderSizePixel = 10
- walkspeed.Position = UDim2.new(0.0410183892, 0, 0.512921691, 0)
- walkspeed.Size = UDim2.new(0, 218, 0, 50)
- walkspeed.Font = Enum.Font.SciFi
- walkspeed.Text = "Walkspeed [q]"
- walkspeed.TextColor3 = Color3.new(0, 0, 0)
- walkspeed.TextSize = 25
- local plr = game:GetService("Players").LocalPlayer
- local char = plr.Character
- local mouse = game:GetService("Players").LocalPlayer:GetMouse()
- local hum = char:FindFirstChild("HumanoidRootPart")
- walkspeed.MouseButton1Down:connect(function()
- local plr = game:GetService("Players").LocalPlayer
- local char = plr.Character
- local mouse = game:GetService("Players").LocalPlayer:GetMouse()
- local hum = char:FindFirstChild("HumanoidRootPart")
- mouse.KeyDown:connect(function(key)
- if key == walkspeedkeybind.Text then
- loop = true
- while loop do
- hum.CFrame = hum.CFrame + hum.CFrame.lookVector * walkspeednum.Text
- wait()
- end
- end
- end)
- end)
- mouse.KeyUp:connect(function(key)
- if key == walkspeedkeybind.Text then
- loop = false
- end
- end)
- removeeffects.Name = "removeeffects"
- removeeffects.Parent = MainFrame
- removeeffects.BackgroundColor3 = Color3.new(1, 1, 1)
- removeeffects.BorderColor3 = Color3.new(0.505882, 0.792157, 0.992157)
- removeeffects.BorderSizePixel = 10
- removeeffects.Position = UDim2.new(0.0410183892, 0, 0.727133334, 0)
- removeeffects.Size = UDim2.new(0, 218, 0, 50)
- removeeffects.Font = Enum.Font.SciFi
- removeeffects.Text = "Remove Effects"
- removeeffects.TextColor3 = Color3.new(0, 0, 0)
- removeeffects.TextSize = 25
- removeeffects.MouseButton1Down:connect(function()
- game.Lighting.FogEnd = 1200000
- game.Lighting.Brightness = 3
- game.Lighting.GlobalShadows = false
- end)
- jumppower.Name = "jumppower"
- jumppower.Parent = MainFrame
- jumppower.BackgroundColor3 = Color3.new(1, 1, 1)
- jumppower.BorderColor3 = Color3.new(0.505882, 0.792157, 0.992157)
- jumppower.BorderSizePixel = 10
- jumppower.Position = UDim2.new(0.394625187, 0, 0.512921691, 0)
- jumppower.Size = UDim2.new(0, 218, 0, 50)
- jumppower.Font = Enum.Font.SciFi
- jumppower.Text = "JumpPower"
- jumppower.TextColor3 = Color3.new(0, 0, 0)
- jumppower.TextSize = 25
- jumppower.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = jpnum.text
- end)
- xray.Name = "xray"
- xray.Parent = MainFrame
- xray.BackgroundColor3 = Color3.new(1, 1, 1)
- xray.BorderColor3 = Color3.new(0.505882, 0.792157, 0.992157)
- xray.BorderSizePixel = 10
- xray.Position = UDim2.new(0.394625187, 0, 0.727133334, 0)
- xray.Size = UDim2.new(0, 218, 0, 50)
- xray.Font = Enum.Font.SciFi
- xray.Text = "Xray"
- xray.TextColor3 = Color3.new(0, 0, 0)
- xray.TextSize = 25
- Important = {Players = game:GetService("Players"), Workspace = game:GetService("Workspace"), CoreGui = game.Players.LocalPlayer.PlayerGui}
- local enabledesp = false
- function CreateESP(plr)
- if plr ~= nil then
- local GetChar = plr.Character
- if not GetChar then return end
- local GetHead do
- repeat wait() until GetChar:FindFirstChild("Head")
- end
- GetHead = GetChar.Head
- local bb = Instance.new("BillboardGui", Important.CoreGui)
- bb.Adornee = GetHead
- bb.ExtentsOffset = Vector3.new(0, 1, 0)
- bb.AlwaysOnTop = true
- bb.Size = UDim2.new(0, 5, 0, 5)
- bb.StudsOffset = Vector3.new(0, 3, 0)
- bb.Name = "ESP_PLAYER_" .. plr.Name
- local displayframe = Instance.new("Frame", bb)
- displayframe.ZIndex = 10
- displayframe.BackgroundTransparency = 1
- displayframe.Size = UDim2.new(1,0,1,0)
- local name = Instance.new("TextLabel", displayframe)
- name.Name = "Name"
- name.ZIndex = 10
- name.Text = plr.Name
- name.Visible = true
- name.TextColor3 = Color3.new(170,0,0)
- name.BackgroundTransparency = 1
- name.Size = UDim2.new(1,0,10,0)
- name.Font = Enum.Font.SourceSansLight
- name.TextSize = 20
- name.TextStrokeTransparency = .5
- end
- end
- xray.MouseButton1Down:connect(function()
- for i,v in pairs(Important.Players:GetChildren()) do
- CreateESP(v)
- end
- end)
- stuffslabel.Name = "stuffslabel"
- stuffslabel.Parent = MainFrame
- stuffslabel.BackgroundColor3 = Color3.new(1, 1, 1)
- stuffslabel.BorderSizePixel = 0
- stuffslabel.Position = UDim2.new(0.717114568, 0, 0.265091866, 0)
- stuffslabel.Size = UDim2.new(0, 200, 0, 50)
- stuffslabel.Font = Enum.Font.Cartoon
- stuffslabel.Text = "Stuffs"
- stuffslabel.TextColor3 = Color3.new(0, 0, 0)
- stuffslabel.TextSize = 30
- stuffslabel.TextWrapped = true
- wslabel.Name = "wslabel"
- wslabel.Parent = MainFrame
- wslabel.BackgroundColor3 = Color3.new(1, 1, 1)
- wslabel.BackgroundTransparency = 1
- wslabel.Position = UDim2.new(0.717114568, 0, 0.367454022, 0)
- wslabel.Size = UDim2.new(0, 200, 0, 20)
- wslabel.Font = Enum.Font.SourceSans
- wslabel.Text = "WalkSpeed"
- wslabel.TextColor3 = Color3.new(0, 0, 0)
- wslabel.TextSize = 14
- jplabel.Name = "jplabel"
- jplabel.Parent = MainFrame
- jplabel.BackgroundColor3 = Color3.new(1, 1, 1)
- jplabel.BackgroundTransparency = 1
- jplabel.Position = UDim2.new(0.717114568, 0, 0.6404199, 0)
- jplabel.Size = UDim2.new(0, 200, 0, 20)
- jplabel.Font = Enum.Font.SourceSans
- jplabel.Text = "JumpPower"
- jplabel.TextColor3 = Color3.new(0, 0, 0)
- jplabel.TextSize = 14
- jpnum.Name = "jpnum"
- jpnum.Parent = MainFrame
- jpnum.BackgroundColor3 = Color3.new(1, 1, 1)
- jpnum.BorderColor3 = Color3.new(0, 1, 1)
- jpnum.BorderSizePixel = 2
- jpnum.Position = UDim2.new(0.731258869, 0, 0.692913353, 0)
- jpnum.Size = UDim2.new(0, 179, 0, 28)
- jpnum.Font = Enum.Font.SourceSans
- jpnum.Text = "100"
- jpnum.TextColor3 = Color3.new(0, 0, 0)
- jpnum.TextSize = 14
- walkspeedkeybind.Name = "walkspeedkeybind"
- walkspeedkeybind.Parent = MainFrame
- walkspeedkeybind.BackgroundColor3 = Color3.new(1, 1, 1)
- walkspeedkeybind.BorderColor3 = Color3.new(0, 1, 1)
- walkspeedkeybind.BorderSizePixel = 2
- walkspeedkeybind.Position = UDim2.new(0.732673287, 0, 0.419947505, 0)
- walkspeedkeybind.Size = UDim2.new(0, 179, 0, 28)
- walkspeedkeybind.Font = Enum.Font.SourceSans
- walkspeedkeybind.Text = "q"
- walkspeedkeybind.TextColor3 = Color3.new(0, 0, 0)
- walkspeedkeybind.TextSize = 14
- walkspeednum.Name = "walkspeednum"
- walkspeednum.Parent = MainFrame
- walkspeednum.BackgroundColor3 = Color3.new(1, 1, 1)
- walkspeednum.BorderColor3 = Color3.new(0, 1, 1)
- walkspeednum.BorderSizePixel = 2
- walkspeednum.Position = UDim2.new(0.732673287, 0, 0.511811018, 0)
- walkspeednum.Size = UDim2.new(0, 179, 0, 28)
- walkspeednum.Font = Enum.Font.SourceSans
- walkspeednum.Text = "3"
- walkspeednum.TextColor3 = Color3.new(0, 0, 0)
- walkspeednum.TextSize = 14
- openbtn.Name = "openbtn"
- openbtn.Parent = BoogaGUI
- openbtn.BackgroundColor3 = Color3.new(0.666667, 1, 1)
- openbtn.BorderColor3 = Color3.new(0, 0.756863, 0.756863)
- openbtn.BorderSizePixel = 10
- openbtn.Position = UDim2.new(0.0139705883, 0, 0.752079844, 0)
- openbtn.Size = UDim2.new(0, 200, 0, 75)
- openbtn.Font = Enum.Font.Cartoon
- openbtn.Text = "Open"
- openbtn.TextColor3 = Color3.new(1, 1, 1)
- openbtn.TextScaled = true
- openbtn.TextSize = 14
- openbtn.TextWrapped = true
- openbtn.MouseButton1Down:connect(function()
- if openbtn.Text == "Close" then
- MainFrame.Visible = false
- openbtn.Text = "Open"
- else
- MainFrame.Visible = true
- openbtn.Text = "Close"
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement