|
| 08 Jan 2013 07:49 PM |
I would like to make a sound play at a certain time.. Soo here is my fail script if any1 can help me?
wait(100) play.Soundid=http://www.roblox.com/asset/?id=4762065
~Slender is coming for you!~ |
|
|
| Report Abuse |
|
|
|
| 08 Jan 2013 07:56 PM |
=BUMP=
~Slender is coming for you!~ |
|
|
| Report Abuse |
|
|
|
| 08 Jan 2013 07:57 PM |
=BUMP=
some1 help?
~Slender is coming for you!~ |
|
|
| Report Abuse |
|
|
|
| 08 Jan 2013 07:58 PM |
| there is nothing that can be played |
|
|
| Report Abuse |
|
|
|
| 08 Jan 2013 07:59 PM |
It is possible to play a Sound after 100 seconds. I know it. Help.
~Slender is coming for you!~ |
|
|
| Report Abuse |
|
|
|
| 08 Jan 2013 08:01 PM |
while true do sound = Instance.new("Sound") sound.SoundId = "http://www.roblox.com/asset/?id=4762065" sound.Parent = script wait(100) sound:Play() wait(10)--the time it takes for sound to end sound:remove() end |
|
|
| Report Abuse |
|
|
| |
|
|
| 08 Jan 2013 08:09 PM |
Yes. Thank you very much.
~Slender is coming for you!~ |
|
|
| Report Abuse |
|
|
|
| 08 Jan 2013 08:10 PM |
But is there any way to make it so it will not loop?
~Slender is coming for you!~ |
|
|
| Report Abuse |
|
|
|
| 08 Jan 2013 08:15 PM |
yah i will post in next comment
|
|
|
| Report Abuse |
|
|
|
| 08 Jan 2013 08:17 PM |
kk
~Slender is coming for you!~ |
|
|
| Report Abuse |
|
|
|
| 08 Jan 2013 08:20 PM |
M2E: How do you make it so any Script does not loop? Do you do:
end()
~Slender is coming for you!~ |
|
|
| Report Abuse |
|
|
|
| 08 Jan 2013 08:20 PM |
M2E= Message to Everyone
~Slender is coming for you!~ |
|
|
| Report Abuse |
|
|
|
| 08 Jan 2013 08:21 PM |
times = 10 -- number of times you want it to loop for i=1, times do sound.SoundId = "http://www.roblox.com/asset/?id=4762065" sound.Parent = script wait(100) -- time before every play sound:Play() wait(10)--the time it takes for sound to end sound:remove() end |
|
|
| Report Abuse |
|
|
|
| 08 Jan 2013 08:23 PM |
-- you simply dont put the loop, the loop is "while true do" and you take out the "end" if you take out the "while true do" example below sound = Instance.new("Sound") sound.SoundId = "http://www.roblox.com/asset/?id=4762065" sound.Parent = script wait(100) sound:Play() wait(10)--the time it takes for sound to end sound:remove()
|
|
|
| Report Abuse |
|
|
megaguy44
|
  |
| Joined: 28 Sep 2008 |
| Total Posts: 1066 |
|
|
| 08 Jan 2013 08:25 PM |
-- meh wait(100) Sound = Instance.new("Sound", game:GetService("Workspace")) Sound.SoundId = "http://www.roblox.com/asset/?id=4762065" Sound:Play()
print('Hello World!') |
|
|
| Report Abuse |
|
|
| |
|
|
| 08 Jan 2013 08:38 PM |
Fix print("Hello Facepalm Guy") ![No, not you again!][1]
[1]: http://i1.kym-cdn.com/entries/icons/square/000/000/554/facepalm.jpg |
|
|
| Report Abuse |
|
|
|
| 08 Jan 2013 08:39 PM |
does this work? ![IT WORKS][1]
[1]: http://t5ak.roblox.com/a907aec9f60b879c5bed307738cbf728 |
|
|
| Report Abuse |
|
|
megaguy44
|
  |
| Joined: 28 Sep 2008 |
| Total Posts: 1066 |
|
|
| 09 Jan 2013 04:08 AM |
If you had simply read what OP was asking for Crazy, you'd see that the script I posted was what he wanted in the first place.
print('Hello World!') |
|
|
| Report Abuse |
|
|
|
| 09 Jan 2013 03:41 PM |
| Well he got a couple free scripts |
|
|
| Report Abuse |
|
|