-- LocalScript en StarterPlayerScripts local Players = game:GetService("Players") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") -- Crear ScreenGui local gui = Instance.new("ScreenGui") gui.Name = "Omega223Hub" gui.ResetOnSpawn = false gui.Parent = playerGui -- Frame principal local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 380, 0, 600) frame.Position = UDim2.new(0.5, -190, 0.25, 0) frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) frame.BorderSizePixel = 3 frame.Active = true frame.Draggable = true -- Borde rainbow animado RunService.RenderStepped:Connect(function() local hue = tick() % 5 / 5 frame.BorderColor3 = Color3.fromHSV(hue, 1, 1) end) -- Título principal actualizado local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0, 50) title.Text = "ro-dice v2.3.11 by Bobi_top" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.BackgroundColor3 = Color3.fromRGB(25, 25, 25) title.Font = Enum.Font.SourceSansBold title.TextSize = 20 -- Botón de cerrar (X) local closeBtn = Instance.new("TextButton", frame) closeBtn.Size = UDim2.new(0, 40, 0, 30) closeBtn.Position = UDim2.new(1, -45, 0, 10) closeBtn.BackgroundColor3 = Color3.fromRGB(200, 0, 0) closeBtn.Text = "X" closeBtn.TextColor3 = Color3.fromRGB(255, 255, 255) closeBtn.Font = Enum.Font.SourceSansBold closeBtn.TextSize = 20 closeBtn.BorderSizePixel = 0 -- 🎲 Icono para abrir GUI (más grande) local iconBtn = Instance.new("TextButton", gui) iconBtn.Size = UDim2.new(0, 80, 0, 80) iconBtn.Position = UDim2.new(0, 10, 1, -90) iconBtn.BackgroundColor3 = Color3.fromRGB(30, 30, 30) iconBtn.Text = "🎲" iconBtn.TextSize = 50 iconBtn.TextColor3 = Color3.fromRGB(255, 255, 255) iconBtn.Visible = false iconBtn.BorderSizePixel = 0 -- 🔰 Icono lateral mientras la GUI está abierta local sideIcon = Instance.new("TextLabel", gui) sideIcon.Size = UDim2.new(0, 50, 0, 50) sideIcon.Position = UDim2.new(0, 10, 0.5, -25) sideIcon.BackgroundTransparency = 1 sideIcon.Text = "🔰" sideIcon.TextSize = 40 sideIcon.TextColor3 = Color3.fromRGB(255, 255, 255) sideIcon.Visible = true -- Funciones abrir/cerrar GUI local function closeGUI() frame.Visible = false sideIcon.Visible = false iconBtn.Visible = true end local function openGUI() frame.Visible = true sideIcon.Visible = true iconBtn.Visible = false end closeBtn.MouseButton1Click:Connect(closeGUI) iconBtn.MouseButton1Click:Connect(openGUI) -- Función para crear botones del menú local function makeButton(name, posY, scriptURL) local btn = Instance.new("TextButton", frame) btn.Size = UDim2.new(0.8, 0, 0, 40) btn.Position = UDim2.new(0.1, 0, 0, posY) btn.BackgroundColor3 = Color3.fromRGB(70, 70, 70) btn.Text = name btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.SourceSansBold btn.TextSize = 18 btn.MouseButton1Click:Connect(function() pcall(function() loadstring(game:HttpGet(scriptURL))() end) end) end -- Todos los botones del hub local buttonY = 70 makeButton("Tiger X", buttonY, "https://raw.githubusercontent.com/balintTheDevX/Tiger-X-V3/main/Tiger%20X%20V3.5%20Fixed") buttonY = buttonY + 50 makeButton("bomb kaboom kaboom🤫", buttonY, "https://rawscripts.net/raw/Universal-Script-Bomb-Vest-56565") buttonY = buttonY + 50 makeButton("executor", buttonY, "https://rawscripts.net/raw/Universal-Script-Dex-Notepad-61749") buttonY = buttonY + 50 makeButton("kinda gui", buttonY, "https://rawscripts.net/raw/Universal-Script-UItimate-Trolling-Gui-62199") buttonY = buttonY + 50 makeButton("gun suicide", buttonY, "https://rawscripts.net/raw/Universal-Script-Suicide-GUN-Script-Xymatekidd-37872") buttonY = buttonY + 50 makeButton("octopuz v2 proyect", buttonY, "https://rawscripts.net/raw/Universal-Script-Octopuz-YX-v2-proyect-62754") buttonY = buttonY + 50 makeButton("invisible", buttonY, "https://rawscripts.net/raw/Universal-Script-FE-Invisible-62974") buttonY = buttonY + 50 makeButton("skybox", buttonY, "https://rawscripts.net/raw/Universal-Script-Mario-exe-skybox-28298") buttonY = buttonY + 50 makeButton("c00lifiky", buttonY, "https://rawscripts.net/raw/Universal-Script-C00lkidd-28102") buttonY = buttonY + 50 makeButton("proyect ligma", buttonY, "https://rawscripts.net/raw/Universal-Script-Project-Ligma-28816") buttonY = buttonY + 50 makeButton("noot noot script", buttonY, "https://rawscripts.net/raw/Universal-Script-Noot-noot-fixed-audio-49735")