So i was making a sound changer, and it seems to not remove or destroy the Sound,I'm not so sure why though, help!
repeat wait(0.5)until Sound.TimePosition == 0 and Sound.IsPlaying == false Sound:remove()
Instead of waiting for those somewhat arbitrary conditions, try this instead:
Sound.Ended:wait() Sound:Destroy()