|
| 19 Jul 2014 04:44 AM |
I've been trying to do this for months.
I just can't get the audio to work. I've tried scripts, plugins, FMs... Nothing works.
sound.Play(166972735) loop()
WHy can't it be that easy ??? Can anyone fix it please thanks :) Also, the script. It is not in audio but in workspace with no parent. |
|
|
| Report Abuse |
|
|
WishNite
|
  |
| Joined: 11 Feb 2009 |
| Total Posts: 15828 |
|
|
| 19 Jul 2014 04:45 AM |
that's not how you play a sound...
Workspace.Sound:Play()
that's it. you need to edit the properties of the sound, however. |
|
|
| Report Abuse |
|
|
|
| 19 Jul 2014 04:47 AM |
local audio = game.Workspace.sound --assuming the game of it is sound audio.Looped = true audio:Play()
-Was Here |
|
|
| Report Abuse |
|
|
|
| 19 Jul 2014 05:09 AM |
| @Touchi : Wait so do I have to create a sound from basic objects ? If so, in the audio or workspace ? If not it doesn't work. |
|
|
| Report Abuse |
|
|
|
| 19 Jul 2014 05:21 AM |
You use a basic object to create the sound.
Sound = Instance.new("Sound", game:GetService("Workspace")) Sound.SoundId = "" -- ROBLOX asset URL = id
Sound.Looped = true Sound:Play() |
|
|
| Report Abuse |
|
|