I’ve uploaded 15+ audio assets now, and have never gotten banned.
Use Epidemic Sound, and even just sign up for the free trial to get 3 audio downloads for free, and you’ll be fine. All my audios from there are super quality, and Roblox is guaranteed not to remove them for copyright issues.
local GoodSound = game.SoundService.GoodSound
local play = false
script.Parent.MouseButton1Click:Connect(function()
play = not play
if play then
GoodSound.Volume = 1
script.Parent.Text = “Mute music” else
GoodSound.Volume = 0
script.Parent.Text = “Play music”
end
end)