-- Coloca este script em StarterGui, por ex., como LocalScript local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "MeuMenu" ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 200, 0, 300) Frame.Position = UDim2.new(0, 20, 0, 20) Frame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1) Frame.Parent = ScreenGui local titleLabel = Instance.new("TextLabel") titleLabel.Size = UDim2.new(1, 0, 0, 50) titleLabel.BackgroundTransparency = 1 titleLabel.Text = "Meu Menu" titleLabel.TextColor3 = Color3.new(1, 1, 1) titleLabel.Font = Enum.Font.SourceSansBold titleLabel.TextSize = 24 titleLabel.Parent = Frame local button = Instance.new("TextButton") button.Size = UDim2.new(1, -20, 0, 40) button.Position = UDim2.new(0, 10, 0, 60) button.Text = "Clique aqui!" button.BackgroundColor3 = Color3.new(0.2, 0.2, 0.8) button.TextColor3 = Color3.new(1, 1, 1) button.Font = Enum.Font.SourceSans button.TextSize = 18 button.Parent = Frame button.MouseButton1Click:Connect(function() print("Botão clicado!") -- Aqui você pode colocar alguma ação do SEU jogo, como teleporte ou mudar cor end)