So, I am making a basketball game, and it is natural to have sound on it. I made a script, but it doesn't work properly. This is it:
1 | local sound = Instance.new( "Sound" ) |
2 | sound.SoundId = "http://web.roblox.com/Eagles-Hotel-California-item?id=145120190" |
3 | sound.Parent = game.Workspace |
4 | sound.Volume = "10" |
5 | sound:Play() |
Change the SoundId to this: http://www.roblox.com/asset/?id=145120190
Has to be an asset!
Change the sound.SoundId part to this:
1 | sound.SoundId = 145120190 |
Probably this will work.