I am trying to make an Instance.new() and asset loading script only. Using ServerStorage.Sound:Clone() is not reliable if somehow the sound is removed, or I copy the script to a different place. What is the fastest/most effective way to play sounds without ever calling the :Clone() method?
I think Instance.new("Sound", SoundPart) then setting the ID would be slow and take a long time. PreloadAsync() acts like wait(math.huge) to my experience, so that is out of the question. How would I play sounds without cloning anything