Cause whenever I do this?
1 | while true do |
2 | wait( 1 ) |
3 | script.Music.Pitch = 1 |
4 | script.Music:play() |
end
it keeps repeating the music over and over and over again?
And it sounds like a herd of kids trying to sing at the same time but failing?
Help?
If you are trying to make the music loop just remove the while true do and set the Looped property of the music to be true.
1 | game:GetService( "ContentProvider" ):Preload(script.Music.SoundId) |
2 | script.Music.Pitch = 1 |
3 | script.Music:Play() |
4 | script.Music.Looped = true |
if you don't want the music to loop just remove the script.Music.Looped = false
1 | game:GetService( "ContentProvider" ):Preload(script.Music.SoundId) |
2 | script.Music.Pitch = 1 |
3 | script.Music:Play() |
If you have any questions, concerns or just need some help with this PM me on ROBLOX!
Just do
1 | script.Music.Pitch = 1 |
2 | script.Music:play() |
No need for a loop in your script. Just set the Music's Looped *property *to true.