The title is always confusing dumb me. Is there a way for me to make certain music playing occur like those secret tool audio or something. I can't find a way how to make a tool that has a chance of playing a hidden song.
script (this is what I've got):
lua
Tool.dancepart.Position = player.Character.Head.Position
Tool.dancepart.SongLoop.SoundId = "rbxassetid://"
Tool.dancepart.SongLoop:Play()
Make a table and call it with math.random(1, how many songs you got)
u can add weights on ur songs(say, song 1 has 37% chance of playing, song 2 has 63%, etc) and generate a number from 1 - 100. If the number lands within a specific margin(e.g, 1 - 37), u can play that song, else u can check if the number lands within another margin and play that song instead.