|
| 14 May 2015 11:29 PM |
| How can I put music in my game and make it play without admin. IS there a script for this? If there is thank you |
|
|
| Report Abuse |
|
|
|
| 15 May 2015 01:27 AM |
Hi SirJames.
I know how to add music on your own game. You said no admin, but the only way I know how to add music is with an admin. I'm can't script, but some suggestions for admins with music include:
> Scripth's Admin > LuaModelMaker's Admin
There are much more, on the Develop page. Go to Develop on the main tab, and then click Library. Here you can get audio/music, decals, models and plugins. The link on your page of the audio will have some numbers. You will need to know these numbers.
Next, in your game, type something like this on the chat bar.
Example: :music 12345678. You will need admin to do this. Note that this is not a real audio there lol.
I don't know a way to add music onto your game without admin, so if this doesn't help then maybe PM a scripted you know and ask them the same question. Admin is usually a better choice though because you can kick players, add gear, morph, add music, add a screen message and much more. They are free as well and have various updates.
Hope this helped~ Arctic
|
|
|
| Report Abuse |
|
|
chimmihc
|
  |
| Joined: 01 Sep 2014 |
| Total Posts: 17143 |
|
|
| 15 May 2015 01:33 AM |
The not knowing how to use studio is real.
Just insert a sound object.
https://www.youtube.com/watch?v=-Ks_hMhXVIA
https://www.youtube.com/watch?v=3ctAW4DTHoY
https://www.youtube.com/watch?v=3K9oCEMHj2s
I know the videos use different versions of studio but the idea is the same.
The sound ID of the sound object should be like this:
rbxassetid://SoundId
I script -~ chimmihc |
|
|
| Report Abuse |
|
|
|
| 15 May 2015 08:18 AM |
| Anyways I found a video on Youtube. Thanks guys for your help. :) |
|
|
| Report Abuse |
|
|
|
| 15 May 2015 08:37 AM |
| Anyways I found a video on Youtube. Thanks guys for your help. :) |
|
|
| Report Abuse |
|
|
| |
|
|
| 05 Feb 2016 11:30 PM |
@ArticFox03
You don't really need admin to use chat commands to change music. Simple chat scripts can do the work for you...
Example: game.Players.PlayerAdded:connect(function(p) p.Chatted:connect(function(m) if m:sub(1,3) == ";m " then local id = m:sub(5) local s = Instance.new("Sound") s.Name = "NAME" s.Parent = game.Workspace s.Volume = 0.5 s.SoundId = "rbxassetid://"..id s:Play() end end) end) -- S1O
Simple one... |
|
|
| Report Abuse |
|
|
|
| 05 Feb 2016 11:32 PM |
I was sleepy when I did this, still am. Sorry for some errors/wording problems("Simple chat scripts can do it for you".) -S1O |
|
|
| Report Abuse |
|
|
|
| 05 May 2016 12:35 AM |
| Is there a way to build and execute an entire playlist with chat scripting and what are the supported audio formats? |
|
|
| Report Abuse |
|
|
dezi05
|
  |
| Joined: 27 Oct 2014 |
| Total Posts: 1 |
|
|
| 04 Feb 2017 11:27 PM |
| im wondering how ## # admin can u change game music if anyone knows please tell me(: |
|
|
| Report Abuse |
|
|