-- Criando o botão na tela local ScreenGui = Instance.new("ScreenGui") local TestButton = Instance.new("TextButton") local UICorner = Instance.new("UICorner") ScreenGui.Name = "TesteExecutorGui" -- Tenta colocar no CoreGui (padrão de executor), se não der, vai pro PlayerGui local success, err = pcall(function() ScreenGui.Parent = game:GetService("CoreGui") end) if not success then ScreenGui.Parent = game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui") end -- Configurações do Botão TestButton.Name = "BotaoTeste" TestButton.Parent = ScreenGui TestButton.Size = UDim2.new(0, 160, 0, 50) TestButton.Position = UDim2.new(0.5, -80, 0.2, 0) -- Fica no topo centralizado pra não atrapalhar TestButton.BackgroundColor3 = Color3.fromRGB(218, 41, 28) -- Vermelho TestButton.TextColor3 = Color3.fromRGB(255, 255, 255) TestButton.TextSize = 18 TestButton.Font = Enum.Font.SourceSansBold TestButton.Text = "Testar Executor" -- Deixa o botão com as bordas arredondadas UICorner.CornerRadius = UDim.new(0, 15) UICorner.Parent = TestButton -- O que acontece quando você clica no botão TestButton.MouseButton1Click:Connect(function() print("====================================") print("Botão clicado! Seu executor está ativo! ✅") local identity = (getidentity or syn and syn.getidentity or function() return "Desconhecido" end)() print("Identidade do Executor: " .. tostring(identity)) print("====================================") -- Efeito visual no botão TestButton.Text = "Funcionou! ✅" TestButton.BackgroundColor3 = Color3.fromRGB(0, 180, 0) -- Fica verde task.wait(2) TestButton.Text = "Testar Executor" TestButton.BackgroundColor3 = Color3.fromRGB(218, 41, 28) -- Volta a ser vermelho end)