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:
function OnDeath() print("Death") game.Soundscape.Victory:play() end
But it doesn't seem to work.
Any help would be appreciated. Thanks!
must be in a local script
local player = game.Players.LocalPlayer function Death() print('Death') game.Soundscape.Victory:play() if player.Character.Humanoid.Health == 0 then Death() 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.