--// ID DA IMAGEM local IMAGE_ID = "rbxassetid://128653112489592" --// GUI local gui = Instance.new("ScreenGui", game.CoreGui) gui.Name = "AngeloDarkHub" --// MAIN local main = Instance.new("Frame", gui) main.Size = UDim2.new(0, 550, 0, 400) main.Position = UDim2.new(0.5, -275, 0.5, -200) main.BackgroundColor3 = Color3.fromRGB(15,15,15) local cornerMain = Instance.new("UICorner", main) cornerMain.CornerRadius = UDim.new(0,12) --// TÍTULO local title = Instance.new("TextLabel", main) title.Size = UDim2.new(1,0,0,40) title.Text = "Angelo Dark Hub" title.TextColor3 = Color3.fromRGB(0,170,255) title.BackgroundTransparency = 1 title.Font = Enum.Font.GothamBold title.TextScaled = true --// MENU local menu = Instance.new("Frame", main) menu.Size = UDim2.new(0,130,1,-40) menu.Position = UDim2.new(0,0,0,40) menu.BackgroundColor3 = Color3.fromRGB(20,20,20) --// CONTEÚDO local content = Instance.new("Frame", main) content.Size = UDim2.new(1,-130,1,-40) content.Position = UDim2.new(0,130,0,40) content.BackgroundTransparency = 1 --// CRIAR ABA function criarAba(nome) local btn = Instance.new("TextButton", menu) btn.Size = UDim2.new(1,-10,0,40) btn.Text = nome btn.BackgroundColor3 = Color3.fromRGB(25,25,25) btn.TextColor3 = Color3.new(1,1,1) local corner = Instance.new("UICorner", btn) corner.CornerRadius = UDim.new(0,8) local frame = Instance.new("ScrollingFrame", content) frame.Size = UDim2.new(1,0,1,0) frame.Visible = false frame.BackgroundTransparency = 1 frame.CanvasSize = UDim2.new(0,0,0,2000) local layout = Instance.new("UIListLayout", frame) layout.Padding = UDim.new(0,6) btn.MouseButton1Click:Connect(function() for _,v in pairs(content:GetChildren()) do if v:IsA("ScrollingFrame") then v.Visible = false end end frame.Visible = true end) return frame end --// ABAS local playerTab = criarAba("Player") local visualTab = criarAba("Visual") local miscTab = criarAba("Misc") playerTab.Visible = true --// BOTÃO BONITO local function criarBotao(parent, nome) local btn = Instance.new("TextButton", parent) btn.Size = UDim2.new(1,-10,0,35) btn.Text = nome btn.BackgroundColor3 = Color3.fromRGB(30,30,30) btn.TextColor3 = Color3.new(1,1,1) local corner = Instance.new("UICorner", btn) corner.CornerRadius = UDim.new(0,8) btn.MouseButton1Click:Connect(function() print("Executou:", nome) end) end --// EXEMPLOS DE FUNÇÕES (SAFE) criarBotao(playerTab, "Aumentar Velocidade") criarBotao(playerTab, "Pular Alto") criarBotao(visualTab, "UI Glow") criarBotao(miscTab, "Recarregar GUI") --// TOGGLE local toggleGui = Instance.new("ScreenGui", game.CoreGui) local toggle = Instance.new("ImageButton", toggleGui) toggle.Size = UDim2.new(0,80,0,80) toggle.Position = UDim2.new(0,20,0.5,-40) toggle.Image = IMAGE_ID toggle.BackgroundTransparency = 1 toggle.ScaleType = Enum.ScaleType.Fit local corner = Instance.new("UICorner", toggle) corner.CornerRadius = UDim.new(1,0) local aberto = true toggle.MouseButton1Click:Connect(function() aberto = not aberto main.Visible = aberto end)