Hi, I am trying to make a music script. Instead of putting a lot of sounds in, I wanted to make it so only 1 sound, but the script changes the ID. It is not working for me. Can you help?
while true do script.Parent.Sound.SoundId = 438917260 script.Parent.Sound.Playing = true wait(50) end
Instead, it does NOT change the SoundId. It actually makes the scripts hang.
Thanks!
The SoundId is actually a string (text), not a numbervalue. But you also have to add in something like 'rbxasset:// '.
while true do script.Parent.Sound.SoundId = 'rbxasset://438917260' script.Parent.Sound.Playing = true wait(50) end