I want a script so that whenever i press a button my my boombox it plays a random song out of the list Here is the script...
local songs = {184745270} local ransong = 0 script.Parent.ClickDetector.MouseClick:connect(function() ransong = math.random(1,#songs) script.Parent.Parent.MusicPart.Music.SoundId = ("http://www.roblox.com/asset/?id="..ransong) script.Parent.Parent.MusicPart.Music:Play() end)