Am i doing wrong?
function setText(word)
Text = word
for i = 1, #Text do
TextLabel.Text = string.sub(Text, 1, i)
SoundEffect()
TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
wait(0.04)
end
end
wait(2)
setText("Message.")
wait(3)
setText("Hello!..game.Players.LocalPlayer.Name.."!")
