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:
local sound = Instance.new("Sound") sound.SoundId = "http://web.roblox.com/Eagles-Hotel-California-item?id=145120190" sound.Parent = game.Workspace sound.Volume = "10" 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:
sound.SoundId = 145120190
Probably this will work.