|
| 11 Feb 2014 02:50 PM |
| I know it sounds stupid but like make it so at a certain time a sound is played. How would I do that? |
|
|
| Report Abuse |
|
|
YumERAGON
|
  |
| Joined: 18 Apr 2012 |
| Total Posts: 3893 |
|
|
| 11 Feb 2014 02:52 PM |
wait(YourCertainTime) workspace.SoundName:play() |
|
|
| Report Abuse |
|
|
|
| 11 Feb 2014 02:53 PM |
sound = -- wherever your sound is, workspace, playergui etc sound:Play() |
|
|
| Report Abuse |
|
|
| |
|
YumERAGON
|
  |
| Joined: 18 Apr 2012 |
| Total Posts: 3893 |
|
|
| 11 Feb 2014 02:53 PM |
if you wanna loop it
while true do workspace.SoundName:play() wait(YourCertainTime) |
|
|
| Report Abuse |
|
|
YumERAGON
|
  |
| Joined: 18 Apr 2012 |
| Total Posts: 3893 |
|
|
| 11 Feb 2014 02:55 PM |
add a end to the last one I put and if you want it to activate when you touch a brick
function ontouched() workspace.SoundName:play() end
script.Parent.Touched:connect(ontouched)
Add the script into the brick you want touched |
|
|
| Report Abuse |
|
|
| |
|