|
| 18 Apr 2015 02:57 PM |
I wanted to make this model http://www.roblox.com/an-original-piece-item?id=217621722 play this audio http://www.roblox.com/an-original-piece-item?id=217621722 if someone could explain it to me, or do it for me it would be appreciated. |
|
|
| Report Abuse |
|
|
|
| 18 Apr 2015 03:01 PM |
Hey op... Those are both the same link. |
|
|
| Report Abuse |
|
|
|
| 18 Apr 2015 03:01 PM |
I'm stupid, this model. http://www.roblox.com/tyler-baugher-item?id=239437945 |
|
|
| Report Abuse |
|
|
|
| 18 Apr 2015 03:02 PM |
How do you want it to start?
On click?
On touch? |
|
|
| Report Abuse |
|
|
| |
|
|
| 18 Apr 2015 03:04 PM |
| I don't feel like helping because nobody bothers to help me. |
|
|
| Report Abuse |
|
|
|
| 18 Apr 2015 03:05 PM |
Steps:
1.) Put a clickdetector in the model's "Torso" piece. 2.) Put a sound inside of the torso as well. 3.) Make the soundID say rbxassetid://217621722 4.) Put a script inside of the torso. 5.) Make the script say this.
script.Parent.ClickDetector.MouseClick:connect(function() script.Parent.Sound:Play() wait(script.Parent.Sound.TimeLength) script.Parent.Sound:Pause() end) |
|
|
| Report Abuse |
|
|
|
| 18 Apr 2015 03:06 PM |
script.Parent.ClickDetector.MouseClick:connect(function(player) if script.Parent.Audio.IsPlaying == true then return end script.Parent.Audio:Play() end)
-- put this script in the torso
-- add the sound into the torso (name it 'Audio') |
|
|
| Report Abuse |
|
|
|
| 18 Apr 2015 03:10 PM |
ice is doing it the non-logical way.
local Model = script.Parent local Audio = Model.Audio
Model.ClickDetector.MouseClick:connect(function(player) if not Audio.IsPlaying then script.Parent.Audio:Play() end end) |
|
|
| Report Abuse |
|
|
|
| 18 Apr 2015 03:11 PM |
local Model = script.Parent local Audio = Model.Audio
Model.ClickDetector.MouseClick:connect(function(player) if not Audio.IsPlaying then Audio:Play() end end) |
|
|
| Report Abuse |
|
|
|
| 18 Apr 2015 03:11 PM |
| I have literally no idea I suck at scripting, anyone who wants to do it for me 25 robux, also, if you could make the guitar he's holding a mesh not a tool. Thanks. PM me the t-shirt after you make the model. |
|
|
| Report Abuse |
|
|
|
| 18 Apr 2015 03:13 PM |
Ok, now leave. 25R$ is sad, anyways. Someone [GAVE] you the script, now you want more? Go away. |
|
|
| Report Abuse |
|
|
| |
|
|
| 18 Apr 2015 03:19 PM |
We gave you three working possibilities.
Figure it out.
wiki.roblox.com |
|
|
| Report Abuse |
|
|
|
| 18 Apr 2015 03:29 PM |
| I followed what you said and it didn't work I must have did something wrong |
|
|
| Report Abuse |
|
|