[ANSWERED] How do you preload a sound? When I play the game, it doesn't play the sound.
1 | while true do |
2 | game.Soundscape.Sound:Play() |
3 | wait( 120.11100000000000421 ) |
4 | end |
Thank you!
1 | local sound = Instance.new( "Sound" ) |
2 | sound.SoundId = "http://www.roblox.com/asset?id=" |
3 | sound.Looped = true |
4 | sound.Parent = game.Soundscape |
5 | sound:Play() |