Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local Name = Instance.new("TextLabel")
- local UICorner = Instance.new("UICorner")
- local UICorner_2 = Instance.new("UICorner")
- local ScrollingFrame = Instance.new("ScrollingFrame")
- local InfiniteYield = Instance.new("TextButton")
- local UICorner_3 = Instance.new("UICorner")
- local Chams = Instance.new("TextButton")
- local UICorner_4 = Instance.new("UICorner")
- local ServerHopper = Instance.new("TextButton")
- local UICorner_5 = Instance.new("UICorner")
- local AnnoyingBot = Instance.new("TextButton")
- local UICorner_6 = Instance.new("UICorner")
- local Undetected = Instance.new("TextButton")
- local UICorner_7 = Instance.new("UICorner")
- local BackdoorChecker = Instance.new("TextButton")
- local UICorner_8 = Instance.new("UICorner")
- local Closebutton = Instance.new("TextButton")
- local UICorner_9 = Instance.new("UICorner")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- InfiniteYield.MouseButton1Down:connect(function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end)
- AnnoyingBot.MouseButton1Down:connect(function()
- local localplr = game.Players.LocalPlayer
- local currentarget
- local currentTorso
- local lastpos
- local hasTarget = true
- local uis = game:GetService("UserInputService")
- local endInputConnection
- local running = false
- local chatconnection
- local lasttp = tick()
- _G.reply = " BRADLEY HUB!"
- _G.KeyBindStart = Enum.KeyCode.KeypadOne
- _G.KeyBindStop = Enum.KeyCode.KeypadTwo
- function _G.NewTarg(name)
- local plr = findPlrFromName(name)
- currentarget = plr
- end
- function findplr(plr)
- for i, v in pairs(game.Players:GetChildren()) do
- if v.Name == plr.Name then
- return true
- end
- end
- return false
- end
- function findPlrFromName(name)
- for i, v in pairs(game.Players:GetChildren()) do
- if string.lower(v.Name) == string.lower(name) then
- return v
- end
- end
- end
- function findtorso(plr)
- if plr.Character then
- if plr.Character:FindFirstChild("Torso") ~= nil then
- return plr.Character.Torso
- else
- return plr.Character:FindFirstChild("UpperTorso")
- end
- end
- end
- function looping()
- local plrTorso = localplr.Character:FindFirstChild('Torso')
- if plrTorso == nil then
- plrTorso = localplr.Character:FindFirstChild('UpperTorso')
- end
- if currentarget then
- --print("FOUND TOOOOOOOOOOOOOORSOOOOOOOOOOOOOOOOOOO")
- currentTorso = findtorso(currentarget)
- end
- local loop = game:GetService("RunService").RenderStepped:Connect(function()
- if currentarget and findplr(currentarget) and currentTorso then
- localplr.Character.Humanoid:MoveTo(currentTorso.Position)
- if (plrTorso.Position - currentTorso.Position).magnitude >= 20 and tick() - lasttp >= 1 then
- localplr.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
- localplr.Character.HumanoidRootPart.CFrame = currentarget.Character.HumanoidRootPart.CFrame
- lasttp = tick()
- return
- end
- if localplr.Character.Humanoid:GetState() == Enum.HumanoidStateType.Seated then
- localplr.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
- end
- elseif currentarget == nil and hasTarget then
- hasTarget = false
- for i, v in pairs(game.Players:GetChildren()) do
- if v.Character and v ~= localplr then
- local torso = v.Character:FindFirstChild("Torso")
- if torso == nil then
- torso = v.Character:FindFirstChild("UpperTorso")
- --print("found upper torso")
- end
- --print("found torso")
- if not hasTarget and torso and currentarget and currentTorso and (plrTorso.Position - torso.Position).magnitude <= (plrTorso.Position - currentTorso.Position).magnitude then
- currentarget = v
- currentTorso = torso
- --print("set closer torso")
- elseif currentTorso == nil then
- local temptorso = v.Character:FindFirstChild("Torso")
- if temptorso ~= nil then
- currentTorso = v.Character.Torso
- currentarget = v
- else
- currentTorso = v.Character:FindFirstChild("UpperTorso")
- currentarget = v
- end
- --print("set initial torso")
- else
- --print("else")
- print(currentTorso)
- print(currentarget)
- end
- end
- end
- --print("completed loop")
- hasTarget = true
- end
- if not chatconnection then
- chatconnection = currentarget.Chatted:Connect(function(msg)
- local newstring = msg .. _G.reply
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(newstring, "All")
- end)
- end
- end)
- local breaking = false
- endInputConnection = uis.InputBegan:connect(function(input)
- if input.KeyCode == _G.KeyBindStop then
- currentarget = nil
- currentTorso = nil
- loop:Disconnect()
- breaking = true
- chatconnection:Disconnect()
- chatconnection = nil
- endInputConnection:Disconnect()
- endInputConnection = nil
- running = false
- return
- end
- end)
- while wait() do
- if breaking then break end
- if not findplr(currentarget) then
- breaking = true
- currentarget = nil
- currentTorso = nil
- loop:Disconnect()
- chatconnection:Disconnect()
- chatconnection = nil
- endInputConnection:Disconnect()
- endInputConnection = nil
- wait(0.1)
- looping()
- return
- end
- if currentarget and currentarget.Character.Humanoid.Health == 0 then
- breaking = true
- currentTorso = nil
- loop:Disconnect()
- chatconnection:Disconnect()
- chatconnection = nil
- endInputConnection:Disconnect()
- endInputConnection = nil
- wait(2)
- looping()
- break
- end
- if localplr.Character.Humanoid.Health == 0 then
- breaking = true
- currentTorso = nil
- loop:Disconnect()
- chatconnection:Disconnect()
- chatconnection = nil
- endInputConnection:Disconnect()
- endInputConnection = nil
- wait(2)
- looping()
- break
- end
- if game.Players:GetPlayerFromCharacter(currentTorso.Parent) ~= currentarget then
- breaking = true
- currentTorso = nil
- loop:Disconnect()
- chatconnection:Disconnect()
- chatconnection = nil
- endInputConnection:Disconnect()
- endInputConnection = nil
- wait(0.1)
- looping()
- break
- end
- end
- end
- uis.InputBegan:connect(function(input)
- if running then return end
- if input.KeyCode == _G.KeyBindStart then
- looping()
- end
- end)
- end)
- ServerHopper.MouseButton1Down:connect(function()
- loadstring(game:HttpGet("https://pastebin.com/raw/cwwCMPd9", true))()
- end)
- BackdoorChecker.MouseButton1Down:connect(function()
- loadstring(game:HttpGet(('https://raw.githubusercontent.com/iK4oS/backdoor.exe/master/source.lua'),true))()
- end)
- Undetected.MouseButton1Down:connect(function()
- setfflag("DFStringCrashPadUploadToBacktraceToBacktraceBaseUrl", "")
- setfflag("DFIntCrashUploadToBacktracePercentage", "0")
- setfflag("DFStringCrashUploadToBacktraceBlackholeToken", "")
- setfflag("DFStringCrashUploadToBacktraceWindowsPlayerToken", "")
- end)
- Frame.Draggable = true
- Closebutton.MouseButton1Down:connect(function()
- Frame.Visible = false
- end)
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Frame.BackgroundTransparency = 0.500
- Frame.Position = UDim2.new(0.0205438137, 0, 0.466666698, 0)
- Frame.Size = UDim2.new(0, 299, 0, 259)
- Name.Name = "Name"
- Name.Parent = Frame
- Name.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
- Name.Position = UDim2.new(0.0790301189, 0, 0.0363320597, 0)
- Name.Size = UDim2.new(0, 250, 0, 35)
- Name.Font = Enum.Font.SciFi
- Name.Text = "Brady Hub"
- Name.TextColor3 = Color3.fromRGB(0, 0, 0)
- Name.TextScaled = true
- Name.TextSize = 14.000
- Name.TextWrapped = true
- UICorner.Parent = Name
- UICorner_2.Parent = Frame
- ScrollingFrame.Parent = Frame
- ScrollingFrame.Active = true
- ScrollingFrame.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
- ScrollingFrame.Position = UDim2.new(0.0769230798, 0, 0.223938227, 0)
- ScrollingFrame.Size = UDim2.new(0, 250, 0, 183)
- ScrollingFrame.CanvasPosition = Vector2.new(0, 150)
- InfiniteYield.Name = "InfiniteYield"
- InfiniteYield.Parent = ScrollingFrame
- InfiniteYield.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- InfiniteYield.Position = UDim2.new(0.180000007, 0, 0.0388737693, 0)
- InfiniteYield.Size = UDim2.new(0, 161, 0, 39)
- InfiniteYield.Font = Enum.Font.SciFi
- InfiniteYield.Text = "Infinite Yield"
- InfiniteYield.TextColor3 = Color3.fromRGB(170, 0, 0)
- InfiniteYield.TextScaled = true
- InfiniteYield.TextSize = 14.000
- InfiniteYield.TextWrapped = true
- UICorner_3.Parent = InfiniteYield
- Chams.Name = "Chams"
- Chams.Parent = ScrollingFrame
- Chams.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Chams.Position = UDim2.new(0.176000014, 0, 0.237715483, 0)
- Chams.Size = UDim2.new(0, 161, 0, 39)
- Chams.Font = Enum.Font.SciFi
- Chams.Text = "Chams"
- Chams.TextColor3 = Color3.fromRGB(170, 0, 0)
- Chams.TextScaled = true
- Chams.TextSize = 14.000
- Chams.TextWrapped = true
- UICorner_4.Parent = Chams
- ServerHopper.Name = "ServerHopper"
- ServerHopper.Parent = ScrollingFrame
- ServerHopper.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- ServerHopper.Position = UDim2.new(0.180000007, 0, 0.13732937, 0)
- ServerHopper.Size = UDim2.new(0, 161, 0, 39)
- ServerHopper.Font = Enum.Font.SciFi
- ServerHopper.Text = "Server Hop (less players)"
- ServerHopper.TextColor3 = Color3.fromRGB(170, 0, 0)
- ServerHopper.TextScaled = true
- ServerHopper.TextSize = 14.000
- ServerHopper.TextWrapped = true
- UICorner_5.Parent = ServerHopper
- AnnoyingBot.Name = "Annoying Bot"
- AnnoyingBot.Parent = ScrollingFrame
- AnnoyingBot.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- AnnoyingBot.Position = UDim2.new(0.180000007, 0, 0.334240556, 0)
- AnnoyingBot.Size = UDim2.new(0, 161, 0, 39)
- AnnoyingBot.Font = Enum.Font.SciFi
- AnnoyingBot.Text = "Execute and press Numpad 1"
- AnnoyingBot.TextColor3 = Color3.fromRGB(170, 0, 0)
- AnnoyingBot.TextScaled = true
- AnnoyingBot.TextSize = 14.000
- AnnoyingBot.TextWrapped = true
- UICorner_6.Parent = AnnoyingBot
- Undetected.Name = "Undetected"
- Undetected.Parent = ScrollingFrame
- Undetected.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Undetected.Position = UDim2.new(0.176000014, 0, 0.533082247, 0)
- Undetected.Size = UDim2.new(0, 161, 0, 39)
- Undetected.Font = Enum.Font.SciFi
- Undetected.Text = "0% ban risk"
- Undetected.TextColor3 = Color3.fromRGB(170, 0, 0)
- Undetected.TextScaled = true
- Undetected.TextSize = 14.000
- Undetected.TextWrapped = true
- UICorner_7.Parent = Undetected
- BackdoorChecker.Name = "BackdoorChecker"
- BackdoorChecker.Parent = ScrollingFrame
- BackdoorChecker.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- BackdoorChecker.Position = UDim2.new(0.180000007, 0, 0.432696164, 0)
- BackdoorChecker.Size = UDim2.new(0, 161, 0, 39)
- BackdoorChecker.Font = Enum.Font.SciFi
- BackdoorChecker.Text = "Backdoor Checker"
- BackdoorChecker.TextColor3 = Color3.fromRGB(170, 0, 0)
- BackdoorChecker.TextScaled = true
- BackdoorChecker.TextSize = 14.000
- BackdoorChecker.TextWrapped = true
- UICorner_8.Parent = BackdoorChecker
- Closebutton.Name = "Closebutton"
- Closebutton.Parent = ScreenGui
- Closebutton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Closebutton.Position = UDim2.new(0.190332323, 0, 0.465658188, 0)
- Closebutton.Size = UDim2.new(0, 18, 0, 19)
- Closebutton.Font = Enum.Font.SourceSans
- Closebutton.Text = "X"
- Closebutton.TextColor3 = Color3.fromRGB(170, 0, 0)
- Closebutton.TextScaled = true
- Closebutton.TextSize = 14.000
- Closebutton.TextWrapped = true
- UICorner_9.Parent = Closebutton
Add Comment
Please, Sign In to add comment