local Players = game:GetService("Players") local player = Players.LocalPlayer -- Criar a GUI principal local screenGui = Instance.new("ScreenGui") screenGui.Name = "MensagemEngano" screenGui.Parent = player:WaitForChild("PlayerGui") -- Criar o texto local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(0.5, 0, 0.1, 0) textLabel.Position = UDim2.new(0.25, 0, 0.45, 0) textLabel.BackgroundColor3 = Color3.new(0, 0, 0) textLabel.TextColor3 = Color3.new(1, 0, 0) textLabel.Font = Enum.Font.SourceSansBold textLabel.TextScaled = true textLabel.Text = "VocĂȘ foi enganado" textLabel.Parent = screenGui -- Desaparecer depois de alguns segundos wait(5) screenGui:Destroy()