Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you make a sound loop forever?

Asked by 9 years ago

game.Workspace.Sound:play() script.Disabled = true script.Disabled = false

2 answers

Log in to vote
5
Answered by
ImageLabel 1541 Moderation Voter
9 years ago

All sound instances have a property "Looped". It is set to false by default, meaning that the sound stops after it is played. Set it to true for the sound to loop.

game.Workspace.Sound.Looped = true
Ad
Log in to vote
-5
Answered by 9 years ago

just do this :

while true do 
Workspace.Sound:play() 
end 

it should repeat itself with "While true do"

Answer this question