I need know how to play a music using a script like: Wait (5) now the script to start a music
Just add :Play() at the end of the sound. For example:
local sound = Instance.new("Sound") sound.Parent = game.Workspace sound:Play()
https://developer.roblox.com/en-us/api-reference/function/Sound/Play
Its easy First of all make a folder with all songs and name it.
Second, make a script inside the folder if you want or insert it in serverscript
Here is the code.
local location = game.Workspace.Folder location.song1:Play() -- Starts the song wait(60) -- Wait 60 seconds location.song1:Stop() -- Stops the song
Remember You can edit all properties, like song duration, if loop or not etc.