-- 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, 260) 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 local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0, 50) title.Position = UDim2.new(0, 0, 0, 0) title.BackgroundColor3 = Color3.fromRGB(25, 25, 25) title.BorderSizePixel = 0 title.Text = "Omega223 hub v4" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.SourceSansBold title.TextSize = 24 -- Botón Cerrar 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 -- Icono ®️ local iconBtn = Instance.new("TextButton", gui) iconBtn.Size = UDim2.new(0, 50, 0, 50) iconBtn.Position = UDim2.new(0, 10, 1, -60) iconBtn.BackgroundColor3 = Color3.fromRGB(30, 30, 30) iconBtn.Text = "®️" iconBtn.TextSize = 30 iconBtn.TextColor3 = Color3.fromRGB(255, 255, 255) iconBtn.Visible = false iconBtn.BorderSizePixel = 0 -- Funciones de mostrar/ocultar GUI closeBtn.MouseButton1Click:Connect(function() frame.Visible = false iconBtn.Visible = true end) iconBtn.MouseButton1Click:Connect(function() frame.Visible = true iconBtn.Visible = false end) -- Helper para crear botones local function makeButton(parent, text, posY, func) local btn = Instance.new("TextButton", parent) 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.BorderSizePixel = 0 btn.Text = text btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.SourceSansBold btn.TextSize = 18 btn.AutoButtonColor = true btn.MouseButton1Click:Connect(func) end -- Botón Tiger X makeButton(frame, "Tiger X", 70, function() pcall(function() loadstring(game:HttpGet("https://raw.githubusercontent.com/balintTheDevX/Tiger-X-V3/main/Tiger%20X%20V3.5%20Fixed"))() end) end) -- Botón bomb kaboom kaboom🤫 makeButton(frame, "bomb kaboom kaboom🤫", 120, function() pcall(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Bomb-Vest-56565"))() end) end) -- Botón executor makeButton(frame, "executor", 170, function() pcall(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Dex-Notepad-61749"))() end) end) -- Botón kinda gui makeButton(frame, "kinda gui", 220, function() pcall(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-UItimate-Trolling-Gui-62199"))() end) end)