c00lrussian

Antares hub

Jan 20th, 2024
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.26 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source'))()
  2. local Window = OrionLib:MakeWindow({Name = "Antares Hub V0.5.0", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest", introText = Antares})
  3. OrionLib:MakeNotification({
  4. Name = "Maded with love By Boris/ctrl.dev",
  5. Content = "Pra poder colaborar com o hub, por favor entre no nosso discord: não disponível",
  6. Image = "rbxassetid://7733956134",
  7. Time = 15
  8. })
  9. OrionLib:MakeNotification({
  10. Name = "ANTES DE USAR!",
  11. Content = "Execute o mobile keyboard na aba importante para abrir o hub! obrigado. (ShiftDireita para abrir)",
  12. Image = "rbxassetid://15152517555",
  13. Time = 7
  14. })
  15. local Tab = Window:MakeTab({
  16. Name = "Fechar/Abrir Hub",
  17. Icon = "rbxassetid://4483345998",
  18. PremiumOnly = false
  19. })
  20. Tab:AddLabel("USE PARA FECHAR O HUB NO MOBILE")
  21. Tab:AddButton({
  22. Name = "teclado pra mobile",
  23. Callback = function()
  24. loadstring(game:HttpGet("https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt", true))()
  25. end
  26. })
  27. local Tab = Window:MakeTab({
  28. Name = "Kit Brookhaven",
  29. Icon = "rbxassetid://7734058599",
  30. PremiumOnly = false
  31. })
  32.  
  33. local Section = Tab:AddSection({
  34. Name = "Hubs"
  35. })
  36. Tab:AddButton({
  37. Name = "Ice Hub [Útil]",
  38. Callback = function()
  39. loadstring(game:HttpGet("https://raw.githubusercontent.com/IceMael7/NewIceHub/main/Brookhaven"))()
  40. end
  41. })
  42. Tab:AddButton({
  43. Name = "Unfair Hub [Não Usado Por Mim]",
  44. Callback = function()
  45. loadstring(game:HttpGet(('https://raw.githubusercontent.com/rblxscriptsnet/unfair/main/rblxhub.lua'),true))()
  46. end
  47. })
  48. Tab:AddButton({
  49. Name = "Juanko Hub [Não usado por mim]",
  50. Callback = function()
  51. loadstring(game:HttpGet("https://pastefy.app/tIiioko4/raw"))()
  52. end
  53. })
  54. Tab:AddButton({
  55. Name = "REDz Hub [Buga Dms, não usado por mim]",
  56. Callback = function()
  57. loadstring(game:HttpGet("https://raw.githubusercontent.com/REDzHUB/REDzHUB/main/REDzHUB"))()
  58. end
  59. })
  60.  
  61. local Section = Tab:AddSection({
  62. Name = "BrookScripts"
  63. })
  64.  
  65. Tab:AddButton({
  66. Name = "Mudar seu nome para ĘRRØR 129",
  67. Callback = function()
  68. game:GetService("ReplicatedStorage").RE["1RPNam1eTex1t"]:FireServer("RolePlayName","3RRØR ¹2⁹")
  69. end
  70. })
  71.  
  72.  
  73. local Section = Tab:AddSection({
  74. Name = "Guis"
  75. })
  76.  
  77. Tab:AddButton({
  78. Name = "Infinite Yield [Útil]",
  79. Callback = function()
  80. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  81. end
  82. })
  83. Tab:AddButton({
  84. Name = "Fly Gui [Útil]",
  85. Callback = function()
  86. loadstring(game:HttpGet('https://raw.githubusercontent.com/Pro69Yes/sussy-Script/main/SecuredFlyGuiv3.lua'))()
  87. end
  88. })
  89. local Section = Tab:AddSection({
  90. Name = "Útil soq em seçao separada"
  91. })
  92. Tab:AddButton({
  93. Name = "ChatSpy (Pra ver PV dos outros)",
  94. Callback = function()
  95. --antares on top
  96. --This script reveals ALL hidden messages in the default chat
  97.  
  98. enabled = true --chat "/spy" to toggle!
  99. spyOnMyself = true --if true will check your messages too
  100. public = false --if true will chat the logs publicly (fun, risky)
  101. publicItalics = true --if true will use /me to stand out
  102. privateProperties = { --customize private logs
  103. Color = Color3.fromRGB(0,255,255);
  104. Font = Enum.Font.SourceSansBold;
  105. TextSize = 18;
  106. }
  107.  
  108.  
  109. local StarterGui = game:GetService("StarterGui")
  110. local Players = game:GetService("Players")
  111. local player = Players.LocalPlayer or Players:GetPropertyChangedSignal("LocalPlayer"):Wait() or Players.LocalPlayer
  112. local saymsg = game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("SayMessageRequest")
  113. local getmsg = game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("OnMessageDoneFiltering")
  114. local instance = (_G.chatSpyInstance or 0) + 1
  115. _G.chatSpyInstance = instance
  116.  
  117. local function onChatted(p,msg)
  118. if _G.chatSpyInstance == instance then
  119. if p==player and msg:lower():sub(1,4)=="/spy" then
  120. enabled = not enabled
  121. wait(0.3)
  122. privateProperties.Text = "{SPY "..(enabled and "EN" or "DIS").."ABLED}"
  123. StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
  124. elseif enabled and (spyOnMyself==true or p~=player) then
  125. msg = msg:gsub("[\n\r]",''):gsub("\t",' '):gsub("[ ]+",' ')
  126. local hidden = true
  127. local conn = getmsg.OnClientEvent:Connect(function(packet,channel)
  128. if packet.SpeakerUserId==p.UserId and packet.Message==msg:sub(#msg-#packet.Message+1) and (channel=="All" or (channel=="Team" and public==false and Players[packet.FromSpeaker].Team==player.Team)) then
  129. hidden = false
  130. end
  131. end)
  132. wait(1)
  133. conn:Disconnect()
  134. if hidden and enabled then
  135. if public then
  136. saymsg:FireServer((publicItalics and "/me " or '').."{SPY} [".. p.Name .."]: "..msg,"All")
  137. else
  138. privateProperties.Text = "{SPY} [".. p.Name .."]: "..msg
  139. StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
  140. end
  141. end
  142. end
  143. end
  144. end
  145.  
  146. for _,p in ipairs(Players:GetPlayers()) do
  147. p.Chatted:Connect(function(msg) onChatted(p,msg) end)
  148. end
  149. Players.PlayerAdded:Connect(function(p)
  150. p.Chatted:Connect(function(msg) onChatted(p,msg) end)
  151. end)
  152. privateProperties.Text = "{SPY "..(enabled and "EN" or "DIS").."ABLED}"
  153. StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
  154. if not player.PlayerGui:FindFirstChild("Chat") then wait(3) end
  155. local chatFrame = player.PlayerGui.Chat.Frame
  156. chatFrame.ChatChannelParentFrame.Visible = true
  157. chatFrame.ChatBarParentFrame.Position = chatFrame.ChatChannelParentFrame.Position+UDim2.new(UDim.new(),chatFrame.ChatChannelParentFrame.Size.Y)
  158. end
  159. })
  160. local Tab = Window:MakeTab({
  161. Name = "Misc",
  162. Icon = "rbxassetid://7733964719",
  163. PremiumOnly = false
  164. })
  165. Tab:AddButton({
  166. Name = "Chat Spam [Agora funciona]",
  167. Callback = function()
  168. print("deletadoh")
  169. end
  170. })
  171. Tab:AddButton({
  172. Name = "Decal Bomb (Visual, so tu pode ver)",
  173. Callback = function()
  174. sound = Instance.new("Sound",workspace)
  175. sound.Name = "Spooky scary skeletons - jontron"
  176. sound.SoundId = "rbxassetid://138081566"
  177. sound:Play()
  178. sound.Looped = true
  179. local ID = 15152517555
  180. local Skybox = true
  181. local particle = true
  182.  
  183. -- DO NOT CHANGE BELOW. UNLESS YOU KNOW WHAT YOU'RE DOING.
  184.  
  185. for i,v in pairs (game.Workspace:GetChildren()) do
  186. if v:IsA("Part") then
  187. local decal1 =Instance.new("Decal")
  188. local decal2 =Instance.new("Decal")
  189. local decal3 =Instance.new("Decal")
  190. local decal4 =Instance.new("Decal")
  191. local decal5 =Instance.new("Decal")
  192. local decal6 =Instance.new("Decal")
  193. decal1.Texture = "http://www.roblox.com/asset/?id=" ..ID
  194. decal2.Texture = "http://www.roblox.com/asset/?id=" ..ID
  195. decal3.Texture = "http://www.roblox.com/asset/?id=" ..ID
  196. decal4.Texture = "http://www.roblox.com/asset/?id=" ..ID
  197. decal5.Texture = "http://www.roblox.com/asset/?id=" ..ID
  198. decal6.Texture = "http://www.roblox.com/asset/?id=" ..ID
  199. decal1.Parent = v
  200. decal2.Parent = v
  201. decal3.Parent = v
  202. decal4.Parent = v
  203. decal5.Parent = v
  204. decal6.Parent = v
  205. decal1.Face = "Front"
  206. decal2.Face = "Top"
  207. decal3.Face = "Left"
  208. decal4.Face = "Right"
  209. decal5.Face = "Bottom"
  210. decal6.Face = "Back"
  211. end
  212. end
  213. for i,v in pairs (game.Workspace:GetChildren()) do
  214. if v:IsA("Model") then
  215. for i,z in pairs (v:GetChildren()) do
  216. if z:IsA("Part") then
  217. local decal7 =Instance.new("Decal")
  218. local decal8 =Instance.new("Decal")
  219. local decal9 =Instance.new("Decal")
  220. local decal10 =Instance.new("Decal")
  221. local decal11 =Instance.new("Decal")
  222. local decal12 =Instance.new("Decal")
  223. decal7.Texture = "http://www.roblox.com/asset/?id=15152517555"
  224. decal8.Texture = "http://www.roblox.com/asset/?id=15152517555"
  225. decal9.Texture = "http://www.roblox.com/asset/?id=15152517555"
  226. decal10.Texture = "http://www.roblox.com/asset/?id=15152517555"
  227. decal11.Texture = "http://www.roblox.com/asset/?id=15152517555"
  228. decal12.Texture = "http://www.roblox.com/asset/?id=15152517555"
  229. decal7.Parent = z
  230. decal8.Parent = z
  231. decal9.Parent = z
  232. decal10.Parent = z
  233. decal11.Parent = z
  234. decal12.Parent = z
  235. decal7.Face = "Front"
  236. decal8.Face = "Top"
  237. decal9.Face = "Left"
  238. decal10.Face = "Right"
  239. decal11.Face = "Bottom"
  240. decal12.Face = "Back"
  241. end
  242. end
  243. end
  244. end
  245.  
  246.  
  247. if Skybox == true then
  248. local sky = Instance.new("Sky")
  249. sky.Parent = game.Lighting
  250. sky.SkyboxBk = "http://www.roblox.com/asset/?id=15152517555"
  251. sky.SkyboxDn = "http://www.roblox.com/asset/?id=15152517555"
  252. sky.SkyboxFt = "http://www.roblox.com/asset/?id=15152517555"
  253. sky.SkyboxLf = "http://www.roblox.com/asset/?id=15152517555"
  254. sky.SkyboxRt = "http://www.roblox.com/asset/?id=15152517555"
  255. sky.SkyboxUp = "http://www.roblox.com/asset/?id=15152517555"
  256. end
  257.  
  258. if particle == true then
  259. for i,v in pairs (game.Workspace:GetChildren()) do
  260. if v:IsA("Part") then
  261. local particle = Instance.new("ParticleEmitter")
  262. particle.Texture = "http://www.roblox.com/asset/?id=" ..ID
  263. particle.Parent = v
  264. particle.Rate = 200
  265. for i,x in pairs (game.Workspace:GetChildren()) do
  266. if x:IsA("Model") then
  267. for i,z in pairs (x:GetChildren()) do
  268. if z:IsA("Part") then
  269. local particle2 = Instance.new("ParticleEmitter")
  270. particle2.Texture = "http://www.roblox.com/asset/?id=12389061"
  271. particle2.Parent = z
  272. particle2.Rate = 200
  273. end
  274. end
  275. end
  276. end
  277. end
  278. end
  279. end
  280. end
  281.  
  282. })
  283. local Tab = Window:MakeTab({
  284. Name = "Servidor Privado",
  285. Icon = "rbxassetid://7733978098",
  286. PremiumOnly = false
  287. })
  288. Tab:AddButton({
  289. Name = "Convite pro servidor privado (checke console)",
  290. Callback = function()
  291. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("fale /console","All")
  292. print("https://discord.com/invite/A3vhM9PA")
  293. end
  294. })
  295. local Tab = Window:MakeTab({
  296. Name = "Feito Por Boris",
  297. Icon = "rbxassetid://7733956134",
  298. PremiumOnly = false
  299. })
  300. Tab:AddButton({
  301. Name = "c00lrussian's gui (skid ver.)",
  302. Callback = function()
  303. -- im a skid
  304. local screenGui = Instance.new("ScreenGui")
  305. screenGui.Parent = game.Players.LocalPlayer.PlayerGui
  306.  
  307. local mainFrame = Instance.new("Frame")
  308. mainFrame.Size = UDim2.new(0, 400, 0, 200)
  309. mainFrame.Position = UDim2.new(0.5, -200, 0.5, -100)
  310. mainFrame.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  311. mainFrame.BorderSizePixel = 5
  312. mainFrame.BorderColor3 = Color3.new(0, 0, 0)
  313. mainFrame.Parent = screenGui
  314.  
  315. local title = Instance.new("TextLabel")
  316. title.Size = UDim2.new(1, 0, 0, 30)
  317. title.Text = "c00lrussian's gui skid version V1"
  318. title.TextColor3 = Color3.new(1, 1, 1)
  319. title.BackgroundColor3 = Color3.new(0, 0, 0)
  320. title.Parent = mainFrame
  321.  
  322. local decalID = 433517918
  323. local backgroundDecal = Instance.new("Decal")
  324. backgroundDecal.Texture = "http://www.roblox.com/asset/?id=" .. decalID
  325. backgroundDecal.Parent = mainFrame
  326.  
  327. local madeByText = Instance.new("TextLabel")
  328. madeByText.Size = UDim2.new(1, 0, 0, 30)
  329. madeByText.Position = UDim2.new(0, 0, 1, -30)
  330. madeByText.Text = "@c00lrussian on ytb!1!1!1 creator of troll group antares tho"
  331. madeByText.TextColor3 = Color3.new(1, 1, 1)
  332. madeByText.BackgroundColor3 = Color3.new(0, 0, 0)
  333. madeByText.Parent = mainFrame
  334.  
  335. local isDragging = false
  336. local lastInputPosition = nil
  337.  
  338. mainFrame.InputBegan:Connect(function(input)
  339. if input.UserInputType == Enum.UserInputType.Touch or input.UserInputType == Enum.UserInputType.MouseButton1 then
  340. isDragging = true
  341. lastInputPosition = input.Position
  342. end
  343. end)
  344.  
  345. mainFrame.InputChanged:Connect(function(input)
  346. if isDragging and (input.UserInputType == Enum.UserInputType.Touch or input.UserInputType == Enum.UserInputType.MouseMovement) then
  347. local delta = input.Position - lastInputPosition
  348. mainFrame.Position = UDim2.new(
  349. mainFrame.Position.X.Scale,
  350. mainFrame.Position.X.Offset + delta.X,
  351. mainFrame.Position.Y.Scale,
  352. mainFrame.Position.Y.Offset + delta.Y
  353. )
  354. lastInputPosition = input.Position
  355. end
  356. end)
  357.  
  358. mainFrame.InputEnded:Connect(function(input)
  359. if input.UserInputType == Enum.UserInputType.Touch or input.UserInputType == Enum.UserInputType.MouseButton1 then
  360. isDragging = false
  361. end
  362. end)
  363.  
  364. local buttonInfo = {
  365. { "Infinite Yield FE", 'https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source' },
  366. { "Nameless Admin FE", 'https://raw.githubusercontent.com/FilteringEnabled/NamelessAdmin/main/Source' },
  367. { "Copy Random Player Skins", copyRandomPlayerSkins },
  368. { "Hint", showHint },
  369. }
  370.  
  371. -- Function to create and connect buttons
  372. local function createButton(index, text, scriptUrl)
  373. local button = Instance.new("TextButton")
  374. button.Size = UDim2.new(0, 200, 0, 50)
  375. button.Position = UDim2.new(0.5, -100, 0.25 + 0.25 * (index - 1), -25)
  376. button.Text = text
  377. button.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  378. button.BorderColor3 = Color3.new(0, 0, 0)
  379. button.TextColor3 = Color3.new(0, 0, 0)
  380. button.Parent = mainFrame
  381.  
  382. button.MouseButton1Click:Connect(function()
  383. if type(scriptUrl) == "string" then
  384. loadstring(game:HttpGet(scriptUrl))()
  385. elseif type(scriptUrl) == "function" then
  386. scriptUrl()
  387. end
  388. end)
  389. end
  390.  
  391. -- Create and connect buttons
  392. for index, info in ipairs(buttonInfo) do
  393. createButton(index, info[1], info[2])
  394. end
  395.  
  396. -- Function to copy random player's skins
  397. local function copyRandomPlayerSkins()
  398. local players = game.Players:GetPlayers()
  399.  
  400. if #players > 0 then
  401. local randomPlayer = players[math.random(1, #players)]
  402.  
  403. -- Ensure the player has character and character appearance
  404. if randomPlayer.Character and randomPlayer.Character:FindFirstChild("Appearance") then
  405. -- Copy the appearance to the local player
  406. game.Players.LocalPlayer.CharacterAppearance = randomPlayer.Character.Appearance:Clone()
  407. else
  408. warn("Selected player is missing appearance data.")
  409. end
  410. else
  411. warn("No other players on the server.")
  412. end
  413. end
  414.  
  415. -- Function to print a hint message
  416. local function showHint()
  417. local H = Instance.new("Hint", game.Workspace)
  418. H.Parent = game.Workspace
  419. H.Text = ("hacked by c00lrussian")
  420. end
  421. end
  422. })
  423. Tab:AddButton({
  424. Name = "c00lguis and misc (meu primeiro script do mundo inteiro)",
  425. Callback = function()
  426. loadstring(game:HttpGet("https://raw.githubusercontent.com/IceMael7/NewIceHub/main/Brookhaven"))()
  427. -- you can delete or leave this text lol
  428. local ScreenGui = Instance.new("ScreenGui")
  429. local main = Instance.new("Frame")
  430. local title = Instance.new("TextLabel")
  431. local Text = Instance.new("TextButton")
  432. local Te = Instance.new("TextButton")
  433. local close = Instance.new("TextButton")
  434. local openmain = Instance.new("Frame")
  435. local open = Instance.new("TextButton")
  436. --Properties:
  437. ScreenGui.Parent = game.CoreGui
  438.  
  439. main.Name = "main"
  440. main.Parent = ScreenGui
  441. main.BackgroundColor3 = Color3.new(0, 0, 0)
  442. main.Position = UDim2.new(0.0203577988, 0, 0.641277611, 0)
  443. main.Size = UDim2.new(0, 332, 0, 211)
  444. main.Visible = false
  445. main.Active = true
  446. main.Draggable = true
  447.  
  448. title.Name = "title"
  449. title.Parent = main
  450. title.BackgroundColor3 = Color3.new(1, 0, 1)
  451. title.Size = UDim2.new(0, 332, 0, 31)
  452. title.Font = Enum.Font.GothamBold
  453. title.Text = "c00lguis & misc by c00lrussian"
  454. title.TextColor3 = Color3.new(0, 0, 0)
  455. title.TextSize = 14
  456.  
  457. Text.Name = "Text"
  458. Text.Parent = main
  459. Text.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  460. Text.Position = UDim2.new(0.036144577, 0, 0.379146934, 0)
  461. Text.Size = UDim2.new(0, 110, 0, 50)
  462. Text.Font = Enum.Font.GothamBold
  463. Text.Text = "Oficial c00lgui"
  464. Text.TextColor3 = Color3.new(0, 0, 0)
  465. Text.TextScaled = true
  466. Text.TextSize = 10
  467. Text.TextWrapped = true
  468. Text.MouseButton1Down:connect(function()
  469. loadstring(game:GetObjects("rbxassetid://8127297852")[1].Source)()
  470. end)
  471.  
  472. Te.Name = "Te"
  473. Te.Parent = main
  474. Te.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  475. Te.Position = UDim2.new(0.614457846, 0, 0.379146934, 0)
  476. Te.Size = UDim2.new(0, 110, 0, 50)
  477. Te.Font = Enum.Font.GothamBold
  478. Te.Text = "Infinite Yield FE"
  479. Te.TextColor3 = Color3.new(0, 0, 0)
  480. Te.TextScaled = true
  481. Te.TextSize = 14
  482. Te.TextWrapped = true
  483. Te.MouseButton1Down:connect(function()
  484. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  485. end)
  486.  
  487. close.Name = "close"
  488. close.Parent = main
  489. close.BackgroundColor3 = Color3.new(1, 0, 0)
  490. close.Position = UDim2.new(0.879518092, 0, 0, 0)
  491. close.Size = UDim2.new(0, 40, 0, 31)
  492. close.Font = Enum.Font.GothamBlack
  493. close.Text = "-"
  494. close.TextColor3 = Color3.new(0, 0, 0)
  495. close.TextScaled = true
  496. close.TextSize = 14
  497. close.TextWrapped = true
  498. close.MouseButton1Down:connect(function()
  499. main.Visible = false
  500. openmain.Visible = true
  501. end)
  502.  
  503. openmain.Name = "openmain"
  504. openmain.Parent = ScreenGui
  505. openmain.BackgroundColor3 = Color3.new(1, 1, 1)
  506. openmain.Position = UDim2.new(0.00801973976, 0, 0.423832953, 0)
  507. openmain.Size = UDim2.new(0, 100, 0, 28)
  508. openmain.Active = true
  509. openmain.Draggable = true
  510.  
  511. open.Name = "open"
  512. open.Parent = openmain
  513. open.BackgroundColor3 = Color3.new(1, 0, 0)
  514. open.Size = UDim2.new(0, 100, 0, 28)
  515. open.Font = Enum.Font.GothamBold
  516. open.Text = "Open"
  517. open.TextColor3 = Color3.new(0, 0, 0)
  518. open.TextSize = 18
  519. open.TextWrapped = true
  520. open.MouseButton1Down:connect(function()
  521. openmain.Visible = false
  522. main.Visible = true
  523. end)
  524. end
  525. })
  526.  
  527. Tab:AddButton({
  528. Name = "Zeri Hub (Um hub que ainda estou trabalhando)",
  529. Callback = function()
  530. local GUI = loadstring(game:HttpGet("https://raw.githubusercontent.com/CasparLmao/Ui-Libs/Main/Playstation/Playstation.Source"))()
  531.  
  532. local UI = GUI:CreateWindow("Zeri Hub V1.2","W QP Maded by ctrl.dev and name by ATOMIC.DEV")
  533.  
  534. local Home = UI:addPage("FPS Games",1,true,6)
  535.  
  536. Home:addLabel("ZERI HUB ON TOP!!","we bac")
  537.  
  538. Home:addButton("Hitbox",function()
  539. _G.HeadSize = 15
  540. _G.Disabled = true
  541. game:GetService("RunService").RenderStepped:Connect(
  542. function()
  543. if _G.Disabled then
  544. for i, v in next, game:GetService("Players"):GetPlayers() do
  545. if v.Name ~= game:GetService("Players").LocalPlayer.Name then
  546. pcall(
  547. function()
  548. v.Character.HumanoidRootPart.Size =
  549. Vector3.new(_G.HeadSize, _G.HeadSize, _G.HeadSize)
  550. v.Character.HumanoidRootPart.Transparency = 0.7
  551. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Bright Red")
  552. v.Character.HumanoidRootPart.Material = "Neon"
  553. v.Character.HumanoidRootPart.CanCollide = false
  554. end
  555. )
  556. end
  557. end
  558. end
  559. end
  560. )
  561. end)
  562.  
  563. Home:addButton("Aimbot (Laggy)",function()
  564. getgenv().Prediction = 1
  565. getgenv().AimPart = "LowerTorso"
  566. getgenv().Key = "q"
  567. getgenv().AutoPrediction = true
  568. loadstring(
  569. game:HttpGet("https://raw.githubusercontent.com/elxocasXD/Trip-Hub/main/Scripts/Cam%20Lock.lua")
  570. )()
  571. loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  572. end)
  573.  
  574. local Trl = UI:addPage("Trolling",1,true,6)
  575. Trl:addButton("Fling Gui",function()
  576. loadstring(game:HttpGet("https://paste.ee/r/NTtmf", true))()
  577. end)
  578.  
  579. Trl:addButton("Antares Hub By Me",function()
  580. loadstring(game:HttpGet("https://raw.githubusercontent.com/BorisLua/AntaresHubSuaMaeNaMinhaCama/main/EnglishAntaresHub.lua"))()
  581. end)
  582.  
  583. local BldB = UI:addPage("Blade Ball 🔥",1,true,6)
  584.  
  585. BldB:addButton("REDz Hub",function()
  586. loadstring(game:HttpGet("https://raw.githubusercontent.com/REDzHUB/BladeBall/main/redz9999"))()
  587. end)
  588.  
  589. BldB:addButton("Berserk Hub",function()
  590. loadstring(game:HttpGet("https://raw.githubusercontent.com/samirayt/SCRIPT-FREE/main/Gratis"))()
  591. end)
  592.  
  593. BldB:addButton("Auto Parry",function()
  594. local Debug = false
  595.  
  596. local Players = game:GetService("Players")
  597. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  598.  
  599. local Player = Players.LocalPlayer or Players:GetPropertyChangedSignal("LocalPlayer"):Wait()
  600. local Remotes = ReplicatedStorage:WaitForChild("Remotes", 9e9)
  601. local Balls = workspace:WaitForChild("Balls", 9e9)
  602.  
  603. local function print(...)
  604. if Debug then
  605. warn(...)
  606. end
  607. end
  608.  
  609. local function VerifyBall(Ball)
  610. if typeof(Ball) == "Instance" and Ball:IsA("BasePart") and Ball:IsDescendantOf(Balls) then
  611. return (Ball:GetAttribute("realBall") == true)
  612. end
  613. end
  614.  
  615. local function IsTarget()
  616. return Player.Character and Player.Character:FindFirstChild("Highlight")
  617. end
  618.  
  619. local function Parry()
  620. Remotes:WaitForChild("ParryButtonPress"):Fire()
  621. end
  622.  
  623. Balls.ChildAdded:Connect(
  624. function(Ball)
  625. if not VerifyBall(Ball) then
  626. return
  627. end
  628.  
  629. local OldPosition = Ball.Position
  630. local OldTick = tick()
  631.  
  632. Ball:GetPropertyChangedSignal("Position"):Connect(
  633. function()
  634. if IsTarget() then
  635. local Distance = (Ball.Position - workspace.CurrentCamera.Focus.Position).Magnitude
  636. local Velocity = (OldPosition - Ball.Position).Magnitude
  637.  
  638. if (Distance / Velocity) then
  639. end
  640. end
  641. end
  642. )
  643. end
  644. )
  645. end)
  646.  
  647. BldB:addButton("ZzzHub (Key: ZzzHubV1)",function()
  648. loadstring(game:HttpGet("https://raw.githubusercontent.com/ZzzScript/Key-System/main/ZzzHubBETA"))()
  649. end)
  650.  
  651. BldB:addButton("Joe BidenZ Hub V2",function()
  652. loadstring(game:HttpGet("https://raw.githubusercontent.com/JoeBidenhub/JoeBidenZ-Hub-V2/main/Full%20Version%202",true))()
  653. end)
  654.  
  655. BldB:addButton("Xzei Hub",function()
  656. loadstring(game:HttpGet("https://raw.githubusercontent.com/gclich/XZEI_HUB-_BLADEBALL/main/XZEI_HUBX.txt"))()
  657. end)
  658.  
  659. local BldB2 = UI:addPage("Blade Ball Page 2🔥",1,true,6)
  660.  
  661. BldB2:addButton("Noxin Hub [NEW]",function()
  662. loadstring(game:HttpGet("https://raw.githubusercontent.com/fbisghosts/NOX/main/Noxine.lua"))()
  663. end)
  664.  
  665. BldB2:addButton("Detroit.cc hub [It might not work]",function()
  666. loadstring(game:HttpGet("https://paste.gg/p/anonymous/afc356c7146a40a6873aed6b03486c99/files/0a54ec4dfc864371a5c90e1b36fec708/raw"))()
  667. end)
  668.  
  669. BldB2:addButton("WaterMelon Hub",function()
  670. loadstring(game:HttpGet("https://paste.gg/p/Lina/e15aec4a51e54bfe96a8b7e4b6094b3c/files/d29a355abfbc471bbbc8e4fa0be6e253/raw"))()
  671. end)
  672.  
  673. BldB2:addButton("NoHax V2 [might not work]",function()
  674. loadstring(game:HttpGet("https://raw.githubusercontent.com/ForYourHead/NoHaxV2/main/NohaxBladeBall",true))()
  675. end)
  676.  
  677. BldB2:addButton("Ganja Hub [Might not work]",function()
  678. loadstring(game:HttpGet("https://raw.githubusercontent.com/Krnow1/Ganjahub/main/Ganjahubontop"))()
  679. end)
  680.  
  681. local BW = UI:addPage("Bedwars",1,true,6)
  682.  
  683. BW:addButton("Alsploit",function()
  684. loadstring(game:HttpGet("https://raw.githubusercontent.com/AlSploit/AlSploit/main/Bedwars"))()
  685. end)
  686.  
  687. BW:addButton("Unpatch Vxpe",function()
  688. loadstring(game:HttpGet("https://raw.githubusercontent.com/cdezxswzq/NewVapeUnpatched4Roblox/main/Loader.lua", true))()
  689. end)
  690.  
  691. BW:addButton("AllBedwars Script",function()
  692. loadstring(game:HttpGet("https://pastebin.com/raw/AwgwbDG7"))()
  693. end)
  694.  
  695. local UN = UI:addPage("Universal",1,true,6)
  696.  
  697. UN:addButton("Infinite Yield FE",function()
  698. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  699. end)
  700.  
  701. UN:addButton("Nameless Admin FE",function()
  702. loadstring(game:HttpGet('https://raw.githubusercontent.com/FilteringEnabled/NamelessAdmin/main/Source'))()
  703. end)
  704.  
  705. UN:addButton("Fling gui but another(works only for collision games)",function()
  706. loadstring(game:HttpGet("https://raw.githubusercontent.com/0Ben1/fe./main/Fling%20GUI%22"))()
  707. end)
  708.  
  709. UN:addButton("Chat Bypasser 💀 (Ban risk)",function()
  710. loadstring(game:HttpGet("https://raw.githubusercontent.com/RealRBC/RBC.Byp/main/RBC.Byp%20V.1.3"))()
  711. end)
  712.  
  713. UN:addButton("RTX Script (never tested it so it might not work)",function()
  714. loadstring(game:HttpGet(('https://pastefy.app/xXkUxA0P/raw'),true))()
  715. end)
  716.  
  717. UN:addLabel("Tell me a suggestion!","Just enter the qp server and ping @ctrl.dev on Discord ;)")
  718. end
  719. })
  720. Tab:AddLabel("obrigado indi0ta por avaliar com um 9 o AHub")
  721. Tab:AddLabel("Avalie se encontrar alguém chamado Boris no Roblox!")
  722.  
  723. OrionLib:Init()
Tags: Script
Add Comment
Please, Sign In to add comment