local Players = game:GetService("Players") local function exibirHintAnimado() for _, player in pairs(Players:GetPlayers()) do if player.Character and player.Character:FindFirstChild("Head") then local billboard = Instance.new("BillboardGui") billboard.Size = UDim2.new(0, 400, 0, 50) billboard.Adornee = player.Character.Head billboard.StudsOffset = Vector3.new(0, 3, 0) billboard.Parent = player.Character.Head local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(1, 0, 1, 0) textLabel.TextColor3 = Color3.fromRGB(255, 0, 4) textLabel.TextStrokeTransparency = 0.5 textLabel.TextSize = 30 textLabel.BackgroundTransparency = 1 textLabel.Text = "" textLabel.Parent = billboard local mensagem = "J00hnr4r3s" for i = 1, #mensagem do textLabel.Text = string.sub(mensagem, 1, i) wait(0.1) end end end end exibirHintAnimado()