عفوا اليك سكربت برسلك local TextLabel = script.Parent:WaitForChild("Frame"):WaitForChild("TextLabel")
script.Value.Value.Enabled = false
function SoundEffect()
local Sound = Instance.new("Sound",workspace)
Sound.Name = "TextSound"
Sound.SoundId = "http://www.roblox.com/asset/?id=3333976425"
Sound.PlaybackSpeed = 1
Sound.Volume = 1
Sound:Play()
coroutine.resume(coroutine.create(function()
wait(1)
Sound:Destroy()
end))
end
function setText(word)
local Text = word
for i = 1, #Text do
TextLabel.Text = string.sub(Text, 1, i)
SoundEffect()
wait(0.04)
end
end
setText("Hello") --Your text here.
wait(0.3)
setText("How are you")
wait(0.3)
setText("i don't feel right...")
wait(0.3)
script.Value.Value.Enabled = true
script.Destroyer:FireServer()