Please help me i need to add background music to my server!
Problem:
You need background music for your game
Solution:
Step 1) Insert "Sound" from "Advanced Objects" into your "Workspace"
Step 2) Insert "http://www.roblox.com/asset?id=IDHERE
" into the "Sound" property "SoundId"
Replace IDHERE with Song Id
Step 3) Insert a "Script" from "Advanced Objects" into your "Sound"
Step 4) Put in the script (Below for options):
To play the song:
script.Parent:Play()
To stop the song:
script.Parent:Stop()
To pause the song:
script.Parent:Pause()
local s = Instance.new("Sound") s.Name = "Sound" s.SoundId = "http://www.roblox.com/asset/?version=1&id=45819151" s.Volume = 1 s.Looped = true s.archivable = false s.Parent = game.Workspace wait(3) s:play()
Just insert this into a normal script and place it in Workspace. Have fun! :)
Insert a script into Workspace with this code inside it:
local music = script.Music music.Looped = true music:Play()
Insert a sound into the script, name it "Music", and give it the soundId of the music you want. Done!