local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "P3dr0Poles Hub V1(pt-br)", Icon = 0, LoadingTitle = "Loading...", LoadingSubtitle = "by P3dr0Poles Team", ShowText = "Rayfield", Theme = "Default", ToggleUIKeybind = "P", DisableRayfieldPrompts = false, DisableBuildWarnings = false, ConfigurationSaving = { Enabled = true, FolderName = "LOL", FileName = "P3dr0Poles Hub V1(pt-br).txt" }, Discord = { Enabled = false, Invite = "noinvitelink", RememberJoins = true }, KeySystem = true, KeySettings = { Title = "P3dr0PolesHub V1 PT-BR", Subtitle = "sistema key", Note = "se vc quer a Key é essa (escreva igual que está ali!): P3dr0Hub101", FileName = "Get Key", SaveKey = true, GrabKeyFromSite = false, Key = {"P3dr0Hub101"} } }) ---------------------------------------------------- -- Aba Player ---------------------------------------------------- local Tab = Window:CreateTab("Player", 4483362458) local Section = Tab:CreateSection("Player Options") -- WalkSpeed Tab:CreateSlider({ Name = "WalkSpeed", Range = {16, 200}, Increment = 1, Suffix = "Speed", CurrentValue = 16, Flag = "WalkSpeedSlider", Callback = function(Value) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value end, }) -- JumpPower Tab:CreateSlider({ Name = "JumpPower", Range = {50, 300}, Increment = 10, Suffix = "Power", CurrentValue = 50, Flag = "JumpPowerSlider", Callback = function(Value) game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value end, }) -- Infinite Jump local InfiniteJump = false Tab:CreateToggle({ Name = "Pulos Infinitos", CurrentValue = false, Flag = "InfiniteJumpToggle", Callback = function(Value) InfiniteJump = Value end, }) game:GetService("UserInputService").JumpRequest:Connect(function() if InfiniteJump then local player = game.Players.LocalPlayer if player and player.Character and player.Character:FindFirstChildOfClass("Humanoid") then player.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping") end end end) -- NoClip local NoClip = false Tab:CreateToggle({ Name = "NoClip(atravessar coisas)", CurrentValue = false, Flag = "NoClipToggle", Callback = function(Value) NoClip = Value end, }) game:GetService("RunService").Stepped:Connect(function() if NoClip then local player = game.Players.LocalPlayer if player.Character then for _, part in pairs(player.Character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end end end) -- Fly local Fly = false local FlySpeed = 3 Tab:CreateInput({ Name = "Fly Speed", PlaceholderText = "Digite a velocidade", RemoveTextAfterFocusLost = true, Callback = function(Text) local Value = tonumber(Text) if Value then FlySpeed = Value end end, }) Tab:CreateToggle({ Name = "Fly", CurrentValue = false, Flag = "FlyToggle", Callback = function(Value) Fly = Value end, }) local UIS = game:GetService("UserInputService") local RS = game:GetService("RunService") local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoidRootPart = character:WaitForChild("HumanoidRootPart") RS.RenderStepped:Connect(function() if Fly then local moveVector = Vector3.new(0, 0, 0) if UIS:IsKeyDown(Enum.KeyCode.W) then moveVector = moveVector + (workspace.CurrentCamera.CFrame.LookVector * FlySpeed) end if UIS:IsKeyDown(Enum.KeyCode.S) then moveVector = moveVector - (workspace.CurrentCamera.CFrame.LookVector * FlySpeed) end if UIS:IsKeyDown(Enum.KeyCode.A) then moveVector = moveVector - (workspace.CurrentCamera.CFrame.RightVector * FlySpeed) end if UIS:IsKeyDown(Enum.KeyCode.D) then moveVector = moveVector + (workspace.CurrentCamera.CFrame.RightVector * FlySpeed) end if UIS:IsKeyDown(Enum.KeyCode.Space) then moveVector = moveVector + Vector3.new(0, FlySpeed, 0) end if UIS:IsKeyDown(Enum.KeyCode.LeftShift) then moveVector = moveVector - Vector3.new(0, FlySpeed, 0) end humanoidRootPart.Velocity = moveVector * 10 end end) ---------------------------------------------------- -- Aba FPS ---------------------------------------------------- local FPSTab = Window:CreateTab("FPS", 4483362458) FPSTab:CreateButton({ Name = "Aimbot", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Exunys/Aimbot-V3/main/src/Aimbot.lua"))() end }) FPSTab:CreateButton({ Name = "ESP", Callback = function() _G.Settings = {ShowNames = true, ShowDistance = true} loadstring(game:HttpGet("https://raw.githubusercontent.com/apakekbebas/esp-lib/main/lib.lua", true))() end }) ---------------------------------------------------- -- Aba Admin ---------------------------------------------------- local AdminTab = Window:CreateTab("Admin", 4483362458) AdminTab:CreateSection("Admin Scripts") AdminTab:CreateButton({Name="Infinite Yield", Callback=function() loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))() end}) AdminTab:CreateButton({Name="AK (Fates Admin)", Callback=function() loadstring(game:HttpGet("https://angelical.me/ak.lua"))() end}) AdminTab:CreateButton({Name="Fates Admin", Callback=function() loadstring(game:HttpGet("https://raw.githubusercontent.com/fatesc/fates-admin/main/main.lua"))() end}) AdminTab:CreateButton({Name="CMD-X", Callback=function() loadstring(game:HttpGet("https://raw.githubusercontent.com/CMD-X/CMD-X/master/Source", true))() end}) AdminTab:CreateButton({Name="Leg Admin V2", Callback=function() loadstring(game:HttpGet('https://raw.githubusercontent.com/leg1337/legadmv2/main/legadminv2.lua'))() end}) AdminTab:CreateButton({Name="Homebrew Admin", Callback=function() loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Syntaxx64/HomebrewAdmin/master/Main"))() end}) AdminTab:CreateButton({Name="Reviz Admin", Callback=function() loadstring(game:HttpGetAsync("https://pastebin.com/raw/gQg0G6iA"))() end}) AdminTab:CreateButton({Name="GX Admin", Callback=function() loadstring(game:HttpGet("https://pastebin.com/raw/v6E9BmFK",true))() end}) AdminTab:CreateButton({Name="IV Admin", Callback=function() loadstring(game:HttpGet('https://raw.githubusercontent.com/BloodyBurns/Hex/main/Iv%20Admin%20v3.lua'))() end}) ---------------------------------------------------- -- Aba Hubs ---------------------------------------------------- local HubsTab = Window:CreateTab("Hubs", 4483362458) HubsTab:CreateSection("Spanish Hub") HubsTab:CreateButton({Name="Spanish Hub", Callback=function() loadstring(game:HttpGet(('https://paste.myconan.net/499233.txt')))() end}) HubsTab:CreateButton({Name="Ghub v15", Callback=function() loadstring(game:HttpGet("https://raw.githubusercontent.com/gclich/GHUBV14XZ/main/Ghub_Main_Loader.txt"))() end}) HubsTab:CreateSection("Game Hub") HubsTab:CreateButton({Name="Game Hub Loader 1", Callback=function() loadstring(game:HttpGet("https://raw.githubusercontent.com/GamerScripter/Game-Hub/main/loader"))() end}) HubsTab:CreateButton({Name="Game Hub Loader 2", Callback=function() loadstring(game:HttpGet("https://paste.myconan.net/489718.txt"))() end}) HubsTab:CreateSection("Other Hubs") HubsTab:CreateButton({Name="GHUB-X-ZENXOS-V15", Callback=function() loadstring(game:HttpGet("https://raw.githubusercontent.com/gclich/GHUBV15_X_ZENXOS-MAINLOADER/refs/heads/main/GHUB-X-ZENXOS-V15.txt"))() end}) HubsTab:CreateButton({Name="System Broken", Callback=function() loadstring(game:HttpGet("https://raw.githubusercontent.com/H20CalibreYT/SystemBroken/main/script"))() end}) HubsTab:CreateSection("Animações Hubs") HubsTab:CreateButton({Name="Emotes Hub", Callback=function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-AFEM-Max-ALL-UGC-EMOTES-FREE-FE-NEW-53663"))() end}) HubsTab:CreateButton({Name="AquaMatrix Hub", Callback=function() loadstring(game:HttpGet("https://raw.githubusercontent.com/ExploitFin/AquaMatrix/refs/heads/AquaMatrix/AquaMatrix"))() end}) ---------------------------------------------------- -- Aba FE ---------------------------------------------------- local FETab = Window:CreateTab("FE", 4483362458) FETab:CreateSection("FE Scripts") FETab:CreateButton({Name="Netless", Callback=function() local RunService = game:GetService("RunService") local Players = game:GetService("Players") local player = Players.LocalPlayer RunService.Heartbeat:Connect(function() if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then player.Character.HumanoidRootPart.Velocity = Vector3.new(30,0,0) end end) end}) FETab:CreateSection("FE Hubs") FETab:CreateButton({Name="FE Trolling GUI", Callback=function() loadstring(game:HttpGet("https://raw.githubusercontent.com/yofriendfromschool1/Sky-Hub/main/FE%20Trolling%20GUI.luau"))() end}) FETab:CreateButton({Name="Altair Hub", Callback=function() loadstring(game:HttpGet("https://pastefy.app/MxnvA12M/raw"))() end}) FETab:CreateButton({Name="Solara Hub", Callback=function() loadstring(game:HttpGet('https://raw.githubusercontent.com/samuraa1/Solara-Hub/refs/heads/main/SH.lua'))() end}) FETab:CreateButton({Name="XVC Script Hub", Callback=function() loadstring(game:HttpGet("https://pastebin.com/raw/Piw5bqGq"))() end}) FETab:CreateButton({Name="C00lgui V2", Callback=function() loadstring(game:HttpGet("https://raw.githubusercontent.com/sinret/rbxscript.com-scripts-reuploads-/main/ckid", true))() end}) FETab:CreateButton({Name="C00lkidd F3x???", Callback=function() loadstring(game:HttpGet("https://raw.githubusercontent.com/wik7123/hi/main/copyezskid%20ok"))() end}) FETab:CreateButton({Name="Slicer FE V6", Callback=function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Ahma174/Slicer/refs/heads/main/Slicer%20Fe%20V6"))() end}) FETab:CreateButton({Name="Wisl FE", Callback=function() loadstring(game:HttpGet("https://raw.githubusercontent.com/wisl884/wisl-i-Universal-Project1/main/Wisl'i%20Universal%20Project.lua", true))() end}) FETab:CreateButton({Name="System Hub", Callback=function() loadstring(game:HttpGet("https://raw.githubusercontent.com/AHMEDPLPL/System-hub-V3/refs/heads/main/System%20Hub%20V3"))() end}) FETab:CreateButton({Name="ScriptHub V3", Callback=function() loadstring(game:HttpGet("https://raw.githubusercontent.com/scripthubekitten/SCRIPTHUBV3/main/SCRIPTHUBV3", true))() end}) ---------------------------------------------------- -- Aba Visual Scripts ---------------------------------------------------- local VisualTab = Window:CreateTab("Visual Scripts", 4483362458) VisualTab:CreateSection("Even though they are visual scripts, it's worth testing them, have fun!") VisualTab:CreateButton({ Name = "não use essa função bruh", Callback = function() for i,v in pairs(game.Players:GetChildren()) do game:GetService("Chat"):Chat(v.Character.Head,"FUCK \n CUNT \n WHORE \n SHIT \n BITCH \n CUM \n JIZZ \n NIGGER") end end }) VisualTab:CreateButton({ Name = "Cabeça grande todos", Callback = function() for i,v in pairs(game.Players:GetPlayers()) do v.Character.Head.Mesh.Scale = Vector3.new(9,9,9) end end }) VisualTab:CreateButton({ Name = "Foguetes em todos", Callback = function() for _,v in pairs(game.Players:GetPlayers()) do fire = Instance.new("Fire", v.Character.Torso) fire.Heat = 30 fire.Size = 30 f = Instance.new("BodyForce", v.Character.Torso) f.force = Vector3.new(1, 7500, 1) end end })