local Players = game:GetService("Players") local Player = Players.LocalPlayer local PlayerGui = Player:WaitForChild("PlayerGui") local Gui = Instance.new("ScreenGui") Gui.ResetOnSpawn = false Gui.Parent = PlayerGui local Main = Instance.new("Frame") Main.Parent = Gui Main.Size = UDim2.new(0,460,0,500) Main.Position = UDim2.new(0,10,0.5,-250) Main.BackgroundColor3 = Color3.fromRGB(0,0,0) Main.BorderSizePixel = 4 Main.BorderColor3 = Color3.fromRGB(255,0,0) local Title = Instance.new("TextLabel") Title.Parent = Main Title.Size = UDim2.new(1,0,0,60) Title.BackgroundColor3 = Color3.fromRGB(20,20,20) Title.BorderColor3 = Color3.fromRGB(255,0,0) Title.BorderSizePixel = 3 Title.Text = "fake c00lgui by afriendly_guest7" Title.TextColor3 = Color3.new(1,1,1) Title.Font = Enum.Font.SourceSansBold Title.TextScaled = true local Left = Instance.new("TextButton") Left.Parent = Main Left.Size = UDim2.new(.5,-2,0,40) Left.Position = UDim2.new(0,0,0,60) Left.Text = "<" Left.Font = Enum.Font.SourceSansBold Left.TextScaled = true Left.BackgroundColor3 = Color3.new(0,0,0) Left.TextColor3 = Color3.new(1,1,1) Left.BorderColor3 = Color3.fromRGB(255,0,0) Left.BorderSizePixel = 3 local Right = Left:Clone() Right.Parent = Main Right.Position = UDim2.new(.5,2,0,60) Right.Text = ">" local Pages = {} local Secciones = {} local Grids = {} for i = 1,2 do local Page = Instance.new("Frame") Page.Parent = Main Page.Size = UDim2.new(1,0,1,-130) Page.Position = UDim2.new(0,0,0,100) Page.BackgroundTransparency = 1 Page.Visible = (i == 1) Pages[i] = Page for s = 1,2 do local Holder = Instance.new("Frame") Holder.Parent = Page Holder.Size = UDim2.new(.5,-4,1,0) Holder.Position = UDim2.new((s-1)*0.5, s==1 and 0 or 4, 0, 0) Holder.BackgroundColor3 = Color3.new(0,0,0) Holder.BorderColor3 = Color3.fromRGB(255,0,0) Holder.BorderSizePixel = 3 local Name = Instance.new("TextLabel") Name.Parent = Holder Name.Size = UDim2.new(1,0,0,40) Name.BackgroundColor3 = Color3.fromRGB(20,20,20) Name.BorderColor3 = Color3.fromRGB(255,0,0) Name.BorderSizePixel = 2 Name.Text = "Seccion "..((i-1)*2+s) Name.TextColor3 = Color3.new(1,1,1) Name.TextScaled = true local GridFrame = Instance.new("Frame") GridFrame.Parent = Holder GridFrame.Size = UDim2.new(1,-8,1,-48) GridFrame.Position = UDim2.new(0,4,0,44) GridFrame.BackgroundTransparency = 1 local Numero = ((i-1)*2)+s Secciones[Numero] = Name Grids[Numero] = GridFrame local Grid = Instance.new("UIGridLayout") Grid.Parent = GridFrame Grid.CellSize = UDim2.new(.5,-2,0,32) Grid.CellPadding = UDim2.new(0,2,0,2) end end local CurrentPage = 1 local function Update() Pages[1].Visible = CurrentPage == 1 Pages[2].Visible = CurrentPage == 2 end Left.MouseButton1Click:Connect(function() CurrentPage -= 1 if CurrentPage < 1 then CurrentPage = 2 end Update() end) Right.MouseButton1Click:Connect(function() CurrentPage += 1 if CurrentPage > 2 then CurrentPage = 1 end Update() end) local Close = Instance.new("TextButton") Close.Parent = Gui -- Ya no va dentro de Main Close.Size = UDim2.new(0, 460, 0, 30) Close.Position = UDim2.new(0, 10, 0.5, 220 ) Close.BackgroundColor3 = Color3.new(0,0,0) Close.BorderColor3 = Color3.fromRGB(255,0,0) Close.BorderSizePixel = 3 Close.Text = "Close" Close.TextColor3 = Color3.new(1,1,1) Close.TextScaled = true Close.Font = Enum.Font.SourceSansBold local Abierto = true Close.MouseButton1Click:Connect(function() Abierto = not Abierto Main.Visible = Abierto if Abierto then Close.Text = "Close" else Close.Text = "Open" end end) function SetSeccionNombre(numero, nombre) if Secciones[numero] then Secciones[numero].Text = nombre end end function CrearBoton(nombre, seccion, funcion) local Grid = Grids[seccion] if not Grid then warn("La sección "..tostring(seccion).." no existe.") return end local Boton = Instance.new("TextButton") Boton.Parent = Grid Boton.BackgroundColor3 = Color3.fromRGB(25,25,25) Boton.BorderColor3 = Color3.fromRGB(255,0,0) Boton.BorderSizePixel = 2 Boton.Text = nombre Boton.TextColor3 = Color3.new(1,1,1) Boton.TextScaled = true Boton.Font = Enum.Font.SourceSansBold if funcion then Boton.MouseButton1Click:Connect(funcion) end return Boton end function CrearTextbox(placeholder, seccion, funcion) local Grid = Grids[seccion] if not Grid then warn("La sección "..tostring(seccion).." no existe.") return end local Box = Instance.new("TextBox") Box.Parent = Grid Box.BackgroundColor3 = Color3.fromRGB(25,25,25) Box.BorderColor3 = Color3.fromRGB(255,0,0) Box.BorderSizePixel = 2 Box.PlaceholderText = placeholder Box.Text = "" Box.ClearTextOnFocus = false Box.TextColor3 = Color3.new(1,1,1) Box.PlaceholderColor3 = Color3.fromRGB(150,150,150) Box.TextScaled = true Box.Font = Enum.Font.SourceSansBold Box.FocusLost:Connect(function(enterPressed) if funcion then funcion(Box.Text, enterPressed) end end) return Box end SetSeccionNombre(1, "Basic things") SetSeccionNombre(2, "FE bypass") SetSeccionNombre(3, "F3x & Hd admin") SetSeccionNombre(4, "Guis") local Players = game:GetService("Players") local player = Players.LocalPlayer local function cambiarVelocidad(character, velocidad) local humanoid = character:WaitForChild("Humanoid") humanoid.WalkSpeed = velocidad end CrearTextbox("Speed", 1, function(texto) while true do task.wait() cambiarVelocidad(player.Character, texto) end end) CrearBoton("fling hub", 1, function() loadstring(game:HttpGet("https://raw.githubusercontent.com/linhmcfake/Script/refs/heads/main/FLYGUIV4"))() end) CrearBoton("Nameless admin", 1, function() loadstring(game:HttpGet("https://raw.githubusercontent.com/FilteringEnabled/NamelessAdmin/main/Source"))(); end) CrearBoton("tp tool", 1, function() loadstring(game:HttpGet("https://raw.githubusercontent.com/err0r129/KptHadesBlair/main/Bao.lua"))() end) CrearBoton("Ice hub", 1, function() loadstring(game:HttpGet("https://raw.githubusercontent.com/IceMae17/NewIceHub/main/Brookhaven"))() end) CrearBoton("Invisible", 1, function() loadstring(game:HttpGet("https://pastebin.com/raw/rSuNEwnu"))() end) CrearBoton("backdoor.exe", 2, function() warn("this kicks you") end) CrearBoton("TH3SM1L3 HUB", 3, function() loadstring(game:HttpGet('https://rawscripts.net/raw/Universal-Script-TH3SM1L3-HUB-24982'))() end) CrearBoton("Infinite yield", 4, function() loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))() end) CrearBoton("Simplespy", 4, function() loadstring(game:HttpGet('https://raw.githubusercontent.com/CoolExploit/TestLua/refs/heads/main/SIMPLESPYplus'))() end)