bitchlasanga

BradHUB

Aug 15th, 2020
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.99 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local Name = Instance.new("TextLabel")
  9. local UICorner = Instance.new("UICorner")
  10. local UICorner_2 = Instance.new("UICorner")
  11. local ScrollingFrame = Instance.new("ScrollingFrame")
  12. local InfiniteYield = Instance.new("TextButton")
  13. local UICorner_3 = Instance.new("UICorner")
  14. local Chams = Instance.new("TextButton")
  15. local UICorner_4 = Instance.new("UICorner")
  16. local ServerHopper = Instance.new("TextButton")
  17. local UICorner_5 = Instance.new("UICorner")
  18. local AnnoyingBot = Instance.new("TextButton")
  19. local UICorner_6 = Instance.new("UICorner")
  20. local Undetected = Instance.new("TextButton")
  21. local UICorner_7 = Instance.new("UICorner")
  22. local BackdoorChecker = Instance.new("TextButton")
  23. local UICorner_8 = Instance.new("UICorner")
  24. local Closebutton = Instance.new("TextButton")
  25. local UICorner_9 = Instance.new("UICorner")
  26.  
  27. --Properties:
  28.  
  29. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  30. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  31.  
  32. InfiniteYield.MouseButton1Down:connect(function()
  33. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  34. end)
  35. AnnoyingBot.MouseButton1Down:connect(function()
  36. local localplr = game.Players.LocalPlayer
  37. local currentarget
  38. local currentTorso
  39. local lastpos
  40. local hasTarget = true
  41. local uis = game:GetService("UserInputService")
  42. local endInputConnection
  43. local running = false
  44. local chatconnection
  45. local lasttp = tick()
  46.  
  47. _G.reply = " BRADLEY HUB!"
  48. _G.KeyBindStart = Enum.KeyCode.KeypadOne
  49. _G.KeyBindStop = Enum.KeyCode.KeypadTwo
  50.  
  51. function _G.NewTarg(name)
  52. local plr = findPlrFromName(name)
  53.  
  54. currentarget = plr
  55. end
  56.  
  57. function findplr(plr)
  58. for i, v in pairs(game.Players:GetChildren()) do
  59. if v.Name == plr.Name then
  60. return true
  61. end
  62. end
  63. return false
  64. end
  65.  
  66. function findPlrFromName(name)
  67. for i, v in pairs(game.Players:GetChildren()) do
  68. if string.lower(v.Name) == string.lower(name) then
  69. return v
  70. end
  71. end
  72. end
  73.  
  74. function findtorso(plr)
  75. if plr.Character then
  76. if plr.Character:FindFirstChild("Torso") ~= nil then
  77. return plr.Character.Torso
  78. else
  79. return plr.Character:FindFirstChild("UpperTorso")
  80. end
  81. end
  82. end
  83.  
  84. function looping()
  85. local plrTorso = localplr.Character:FindFirstChild('Torso')
  86.  
  87. if plrTorso == nil then
  88. plrTorso = localplr.Character:FindFirstChild('UpperTorso')
  89. end
  90.  
  91. if currentarget then
  92. --print("FOUND TOOOOOOOOOOOOOORSOOOOOOOOOOOOOOOOOOO")
  93. currentTorso = findtorso(currentarget)
  94. end
  95.  
  96. local loop = game:GetService("RunService").RenderStepped:Connect(function()
  97. if currentarget and findplr(currentarget) and currentTorso then
  98. localplr.Character.Humanoid:MoveTo(currentTorso.Position)
  99.  
  100. if (plrTorso.Position - currentTorso.Position).magnitude >= 20 and tick() - lasttp >= 1 then
  101. localplr.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  102. localplr.Character.HumanoidRootPart.CFrame = currentarget.Character.HumanoidRootPart.CFrame
  103. lasttp = tick()
  104. return
  105. end
  106.  
  107. if localplr.Character.Humanoid:GetState() == Enum.HumanoidStateType.Seated then
  108. localplr.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  109. end
  110.  
  111. elseif currentarget == nil and hasTarget then
  112. hasTarget = false
  113. for i, v in pairs(game.Players:GetChildren()) do
  114. if v.Character and v ~= localplr then
  115. local torso = v.Character:FindFirstChild("Torso")
  116.  
  117. if torso == nil then
  118. torso = v.Character:FindFirstChild("UpperTorso")
  119. --print("found upper torso")
  120. end
  121.  
  122. --print("found torso")
  123.  
  124. if not hasTarget and torso and currentarget and currentTorso and (plrTorso.Position - torso.Position).magnitude <= (plrTorso.Position - currentTorso.Position).magnitude then
  125. currentarget = v
  126. currentTorso = torso
  127. --print("set closer torso")
  128. elseif currentTorso == nil then
  129. local temptorso = v.Character:FindFirstChild("Torso")
  130.  
  131. if temptorso ~= nil then
  132. currentTorso = v.Character.Torso
  133. currentarget = v
  134. else
  135. currentTorso = v.Character:FindFirstChild("UpperTorso")
  136. currentarget = v
  137. end
  138.  
  139. --print("set initial torso")
  140. else
  141. --print("else")
  142. print(currentTorso)
  143. print(currentarget)
  144. end
  145. end
  146. end
  147.  
  148. --print("completed loop")
  149. hasTarget = true
  150. end
  151.  
  152. if not chatconnection then
  153. chatconnection = currentarget.Chatted:Connect(function(msg)
  154. local newstring = msg .. _G.reply
  155.  
  156. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(newstring, "All")
  157. end)
  158. end
  159. end)
  160.  
  161. local breaking = false
  162.  
  163. endInputConnection = uis.InputBegan:connect(function(input)
  164. if input.KeyCode == _G.KeyBindStop then
  165. currentarget = nil
  166. currentTorso = nil
  167. loop:Disconnect()
  168. breaking = true
  169. chatconnection:Disconnect()
  170. chatconnection = nil
  171. endInputConnection:Disconnect()
  172. endInputConnection = nil
  173. running = false
  174. return
  175. end
  176. end)
  177.  
  178. while wait() do
  179. if breaking then break end
  180. if not findplr(currentarget) then
  181. breaking = true
  182. currentarget = nil
  183. currentTorso = nil
  184. loop:Disconnect()
  185. chatconnection:Disconnect()
  186. chatconnection = nil
  187. endInputConnection:Disconnect()
  188. endInputConnection = nil
  189. wait(0.1)
  190. looping()
  191. return
  192. end
  193.  
  194. if currentarget and currentarget.Character.Humanoid.Health == 0 then
  195. breaking = true
  196. currentTorso = nil
  197. loop:Disconnect()
  198. chatconnection:Disconnect()
  199. chatconnection = nil
  200. endInputConnection:Disconnect()
  201. endInputConnection = nil
  202. wait(2)
  203.  
  204. looping()
  205. break
  206. end
  207.  
  208. if localplr.Character.Humanoid.Health == 0 then
  209. breaking = true
  210. currentTorso = nil
  211. loop:Disconnect()
  212. chatconnection:Disconnect()
  213. chatconnection = nil
  214. endInputConnection:Disconnect()
  215. endInputConnection = nil
  216. wait(2)
  217. looping()
  218. break
  219. end
  220.  
  221. if game.Players:GetPlayerFromCharacter(currentTorso.Parent) ~= currentarget then
  222. breaking = true
  223. currentTorso = nil
  224. loop:Disconnect()
  225. chatconnection:Disconnect()
  226. chatconnection = nil
  227. endInputConnection:Disconnect()
  228. endInputConnection = nil
  229. wait(0.1)
  230. looping()
  231. break
  232. end
  233. end
  234. end
  235.  
  236. uis.InputBegan:connect(function(input)
  237. if running then return end
  238. if input.KeyCode == _G.KeyBindStart then
  239. looping()
  240. end
  241. end)
  242. end)
  243. ServerHopper.MouseButton1Down:connect(function()
  244. loadstring(game:HttpGet("https://pastebin.com/raw/cwwCMPd9", true))()
  245. end)
  246. BackdoorChecker.MouseButton1Down:connect(function()
  247. loadstring(game:HttpGet(('https://raw.githubusercontent.com/iK4oS/backdoor.exe/master/source.lua'),true))()
  248. end)
  249. Undetected.MouseButton1Down:connect(function()
  250. setfflag("DFStringCrashPadUploadToBacktraceToBacktraceBaseUrl", "")
  251. setfflag("DFIntCrashUploadToBacktracePercentage", "0")
  252. setfflag("DFStringCrashUploadToBacktraceBlackholeToken", "")
  253. setfflag("DFStringCrashUploadToBacktraceWindowsPlayerToken", "")
  254. end)
  255. Frame.Draggable = true
  256. Closebutton.MouseButton1Down:connect(function()
  257. Frame.Visible = false
  258. end)
  259.  
  260. Frame.Parent = ScreenGui
  261. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  262. Frame.BackgroundTransparency = 0.500
  263. Frame.Position = UDim2.new(0.0205438137, 0, 0.466666698, 0)
  264. Frame.Size = UDim2.new(0, 299, 0, 259)
  265.  
  266. Name.Name = "Name"
  267. Name.Parent = Frame
  268. Name.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  269. Name.Position = UDim2.new(0.0790301189, 0, 0.0363320597, 0)
  270. Name.Size = UDim2.new(0, 250, 0, 35)
  271. Name.Font = Enum.Font.SciFi
  272. Name.Text = "Brady Hub"
  273. Name.TextColor3 = Color3.fromRGB(0, 0, 0)
  274. Name.TextScaled = true
  275. Name.TextSize = 14.000
  276. Name.TextWrapped = true
  277.  
  278. UICorner.Parent = Name
  279.  
  280. UICorner_2.Parent = Frame
  281.  
  282. ScrollingFrame.Parent = Frame
  283. ScrollingFrame.Active = true
  284. ScrollingFrame.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  285. ScrollingFrame.Position = UDim2.new(0.0769230798, 0, 0.223938227, 0)
  286. ScrollingFrame.Size = UDim2.new(0, 250, 0, 183)
  287. ScrollingFrame.CanvasPosition = Vector2.new(0, 150)
  288.  
  289. InfiniteYield.Name = "InfiniteYield"
  290. InfiniteYield.Parent = ScrollingFrame
  291. InfiniteYield.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  292. InfiniteYield.Position = UDim2.new(0.180000007, 0, 0.0388737693, 0)
  293. InfiniteYield.Size = UDim2.new(0, 161, 0, 39)
  294. InfiniteYield.Font = Enum.Font.SciFi
  295. InfiniteYield.Text = "Infinite Yield"
  296. InfiniteYield.TextColor3 = Color3.fromRGB(170, 0, 0)
  297. InfiniteYield.TextScaled = true
  298. InfiniteYield.TextSize = 14.000
  299. InfiniteYield.TextWrapped = true
  300.  
  301. UICorner_3.Parent = InfiniteYield
  302.  
  303. Chams.Name = "Chams"
  304. Chams.Parent = ScrollingFrame
  305. Chams.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  306. Chams.Position = UDim2.new(0.176000014, 0, 0.237715483, 0)
  307. Chams.Size = UDim2.new(0, 161, 0, 39)
  308. Chams.Font = Enum.Font.SciFi
  309. Chams.Text = "Chams"
  310. Chams.TextColor3 = Color3.fromRGB(170, 0, 0)
  311. Chams.TextScaled = true
  312. Chams.TextSize = 14.000
  313. Chams.TextWrapped = true
  314.  
  315. UICorner_4.Parent = Chams
  316.  
  317. ServerHopper.Name = "ServerHopper"
  318. ServerHopper.Parent = ScrollingFrame
  319. ServerHopper.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  320. ServerHopper.Position = UDim2.new(0.180000007, 0, 0.13732937, 0)
  321. ServerHopper.Size = UDim2.new(0, 161, 0, 39)
  322. ServerHopper.Font = Enum.Font.SciFi
  323. ServerHopper.Text = "Server Hop (less players)"
  324. ServerHopper.TextColor3 = Color3.fromRGB(170, 0, 0)
  325. ServerHopper.TextScaled = true
  326. ServerHopper.TextSize = 14.000
  327. ServerHopper.TextWrapped = true
  328.  
  329. UICorner_5.Parent = ServerHopper
  330.  
  331. AnnoyingBot.Name = "Annoying Bot"
  332. AnnoyingBot.Parent = ScrollingFrame
  333. AnnoyingBot.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  334. AnnoyingBot.Position = UDim2.new(0.180000007, 0, 0.334240556, 0)
  335. AnnoyingBot.Size = UDim2.new(0, 161, 0, 39)
  336. AnnoyingBot.Font = Enum.Font.SciFi
  337. AnnoyingBot.Text = "Execute and press Numpad 1"
  338. AnnoyingBot.TextColor3 = Color3.fromRGB(170, 0, 0)
  339. AnnoyingBot.TextScaled = true
  340. AnnoyingBot.TextSize = 14.000
  341. AnnoyingBot.TextWrapped = true
  342.  
  343. UICorner_6.Parent = AnnoyingBot
  344.  
  345. Undetected.Name = "Undetected"
  346. Undetected.Parent = ScrollingFrame
  347. Undetected.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  348. Undetected.Position = UDim2.new(0.176000014, 0, 0.533082247, 0)
  349. Undetected.Size = UDim2.new(0, 161, 0, 39)
  350. Undetected.Font = Enum.Font.SciFi
  351. Undetected.Text = "0% ban risk"
  352. Undetected.TextColor3 = Color3.fromRGB(170, 0, 0)
  353. Undetected.TextScaled = true
  354. Undetected.TextSize = 14.000
  355. Undetected.TextWrapped = true
  356.  
  357. UICorner_7.Parent = Undetected
  358.  
  359. BackdoorChecker.Name = "BackdoorChecker"
  360. BackdoorChecker.Parent = ScrollingFrame
  361. BackdoorChecker.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  362. BackdoorChecker.Position = UDim2.new(0.180000007, 0, 0.432696164, 0)
  363. BackdoorChecker.Size = UDim2.new(0, 161, 0, 39)
  364. BackdoorChecker.Font = Enum.Font.SciFi
  365. BackdoorChecker.Text = "Backdoor Checker"
  366. BackdoorChecker.TextColor3 = Color3.fromRGB(170, 0, 0)
  367. BackdoorChecker.TextScaled = true
  368. BackdoorChecker.TextSize = 14.000
  369. BackdoorChecker.TextWrapped = true
  370.  
  371. UICorner_8.Parent = BackdoorChecker
  372.  
  373. Closebutton.Name = "Closebutton"
  374. Closebutton.Parent = ScreenGui
  375. Closebutton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  376. Closebutton.Position = UDim2.new(0.190332323, 0, 0.465658188, 0)
  377. Closebutton.Size = UDim2.new(0, 18, 0, 19)
  378. Closebutton.Font = Enum.Font.SourceSans
  379. Closebutton.Text = "X"
  380. Closebutton.TextColor3 = Color3.fromRGB(170, 0, 0)
  381. Closebutton.TextScaled = true
  382. Closebutton.TextSize = 14.000
  383. Closebutton.TextWrapped = true
  384.  
  385. UICorner_9.Parent = Closebutton
Add Comment
Please, Sign In to add comment