In the Library part of the Catalog I found a sound ID that I liked, and I wanted to add it to my game to reptitively play.
There is a Looped
property of the audio object. If you set it to true
then your song will play over and over.
local sound = Instance.new("Sound",workspace) sound.SoundId = "" sound.Looped = true sound:Play()