Hi, you've probably noticed that in ROBLOX Studio, in Soundscape, there is now "StockSound" objects. I want to use the sound "Victory" every time a player dies.
I've tried this:
1 | function OnDeath() |
2 | print ( "Death" ) |
3 | game.Soundscape.Victory:play() |
4 | end |
But it doesn't seem to work.
Any help would be appreciated. Thanks!
must be in a local script
1 | local player = game.Players.LocalPlayer |
2 |
3 | function Death() |
4 | print ( 'Death' ) |
5 | game.Soundscape.Victory:play() |
6 |
7 | if player.Character.Humanoid.Health = = 0 then |
8 | Death() |
9 | end |
Can't Help
But you need to define what OnDeath is like
Function ondeath if player.humanoid.health = 0 then Game.soundscape.Victory:play()
But you need to define what player is
You would put the local script into the StarterPack. Hope that helps.