s = Instance.new("Sound", workspace) -- You can add local if you want.
s.Name = "Sound"
s.SoundId = "http://www.roblox.com/asset/?id=27697743" -- Change if you want.
s.Volume = 1 -- Change these two if you want.
s.Pitch = 3
s.Looped = true
s.Archivable = true
wait()
s:play()
I'm actually making a music script atm, with all songs, it will be in the bottom right corner when I'm finished. But thanks for this thread. I actually can use this one.