I'm trying to make a joke script, but the countdown won't start. Also, the music won't play.
01 | for i = 1 , 5 ,- 1 do |
02 | message = Instance.new( "Message" ) |
03 | message.Parent = game.Workspace |
04 | message.Text = "This land will belong to serbia in " ..i.. " seconds." |
05 | wait( 1 ) |
06 | end |
07 |
08 | function serbia() |
09 | accordian = Instance.new( "Sound" ) |
10 | accordian.Parent = game.Workspace |
11 | accordian.SoundId = "https://www.roblox.com/library/544920674/Serbian-Army-Music" |
12 | accordian.Volume = 1 |
13 | accordian:Play() |
14 | end |
15 | serbia() |
16 | print ( "good" ) |
Help please!