of     1   

KingOfBlades888
#123767152Wednesday, January 22, 2014 2:56 PM GMT

I'm working on a war game, I want it so that once a players heart reaches 10 or below it plays a heartbeat sound JUST TO THAT ONE PLAYER.I've tried and failed many times.
KingOfBlades888
#123767173Wednesday, January 22, 2014 2:56 PM GMT

A players health******
Tenal
#123769125Wednesday, January 22, 2014 3:42 PM GMT

Put the sound in PlayerGui of the player you want the sound to play to.
Alyte
#123775167Wednesday, January 22, 2014 5:43 PM GMT

Here's the scrpt LUA.start() LUA.begin(scripts( when HEALTH = 10 do SOUND = new Sound script()()(); SOUND ID = Sound.IDs{"Heartbeat.png"} wait(1) SOUND.play(volume 1)(pitch 0.7)(parent = character); until HEALTH = 100 then end LUA.finished() = true LUA.end) )

    of     1