of     1   

WeepingAngelOnRoblox
#175290269Thursday, October 01, 2015 8:28 AM GMT

i can't go on youtube (my parents won't let meh) so i can ask here, HOW DO U PUT MUSIC IN UR GAMES? and how do u make playlists? I'm looking to make a Peacful sound for 'the Friend canopy' COMING SOON!
Faisal1207
#175291053Thursday, October 01, 2015 10:05 AM GMT

I don't think this is the place for you to ask but, you just go on ROBLOX Librariry by: Clicking -Develop up where games and catalog etc are then click librariry which will pop up(if something else comes up, go down until you see a small sentence reading -Go to develop page-) then on librairy choose sound, when you find the sound you want, copy the umbers on the end for example http://www.roblox.com/Forum/AddPost.aspx?PostID=17529026 copy the numbers.After that go to your game, insert an instance named sound, in that sound, go on properties and paste your numbers from before in. For making it play at specific times, you will need slight scripting knowledge.
WeepingAngelOnRoblox
#175316679Thursday, October 01, 2015 9:47 PM GMT

How do insert the music once i have it? Where in Roblox studio? ill have a look around.
Faisal1207
#175351547Friday, October 02, 2015 7:39 AM GMT

Insert a "Sound" instance. Go to -View, then on view click "Advanced Objects", when it pops up, in the search bar of the Advanced Object pop up, search "Sound", when you see sound insert it to your game. Then go back to view and open -Properties In properties insert those numbers i told you to get into "SoundId:" for example When im in properties, i find SoundId i then insert: 12345678(< Not a real code, just the numbers i told you to find) And then set "Looped" to true, if you want it to play again and again, specially wanting it to play when something happens requires slight scripting knowledge. If you didn't understand that, use this script, and parent it to workspace: snd = Instance.new("Sound", game.Workspace) if snd then snd.SoundId = "Your numbers here, aka Id" snd.Looped = true snd:Play() end end -- This script will loop it forever, no selection whatsoever.
Faisal1207
#175351606Friday, October 02, 2015 7:44 AM GMT

And you can't find "Advanced objects" in view sorry, just right click the upper panel "The one with all the tools etc, right click empty space. And then click "Advanced Objects" And then follow my other guide from there. You can also change the pitch, he volume etc in sounds properties. snd = Instance.new("Sound", game.Workspace) if snd then snd.SoundId = "Your numbers here, aka Id" snd.Looped = true snd:Play() end --Oops two ends, sorry. Good luck!
Faisal1207
#175352007Friday, October 02, 2015 8:28 AM GMT

And for playlist, i assume you want it to play your songs randomly, instead of looping one sound? sndmodel = game.Workspace.MyPlaylist function onEnterSnd() local loadsnd = sndmodel:GetChildren() local choosensnd = math.random(#loadsnd, 1) choosensnd:Play() choosensnd.Ended:connect(onEnterSnd) end game.Players.PlayerAdded:connect(onEnterSnd) --Haven't tested sorry.
Faisal1207
#175352224Friday, October 02, 2015 8:55 AM GMT

I tested just now, sorry for mistake, again. --Assumes you have a model named MyPlaylist in workspace sndmodel = game.Workspace.MyPlaylist function onEnterSnd() local loadsnd = sndmodel:GetChildren() math.random(tick()) local choosensnd = loadsnd[math.random(1,#loadsnd)] choosensnd:Play() choosensnd.Ended:connect(onEnterSnd) end game.Players.PlayerAdded:connect(onEnterSnd) --Change event to when you want the music player to play, when a brick is touched, mouse is clicked etc, by changing the even "PlayerAdded", but then you have to know some scripting. Final post and Good luck!
WeepingAngelOnRoblox
#175403233Saturday, October 03, 2015 3:05 AM GMT

Oh, My, Lord.
Faisal1207
#175424475Saturday, October 03, 2015 1:38 PM GMT

Just go on my profile and use the model"MyPlaylist" which i made. And then insert your own sounds. Will play random sounds whenever you enter your place.
WeepingAngelOnRoblox
#203915381Friday, December 09, 2016 1:01 AM GMT

Thanks a tonnnnnnnnn

    of     1