I don't know why, but when the soundId changes the surfaceGui dose not show the countdown, What am I doing wrong?
local CountDownFrom = 125 script.Parent.Parent.ScrollingFrame.Sound.SoundId.Changed:connect(function() for i = 1,CountDownFrom,1 do script.Parent.Text = CountDownFrom - i wait(1) end end)