died function/num value problems point out mistakes please?
Asked by
7 years ago Edited 7 years ago
died function won't work for me
its a local script in a screengui
trying to get a textlabel's text to change to the player's current lives (player has 20 lives total)
i tried using a number value but i dont know much about those so im trying this
EDIT: got script 1 to work now im trying a way but ill put both local scripts below
script 1 (Edited)
01 | local lives = script.Parent.Lives.CurrentLives.Value |
02 | local textlabel = script.Parent.Lives |
05 | print ( 'Someone has died! :0' ) |
08 | textlabel.Text = "x" ..lives |
11 | if textlabel.Text = = "x0" then do |
12 | print ( "Someone has lost all their lives!" ) |
14 | textlabel.Text = ( "GAME OVER!" ) |
15 | script.Parent.Frame.Visible = true |
19 | game.Players.LocalPlayer.Character.Humanoid.Died:connect(onDeath) |
script 2 (new)
01 | game.Players.PlayerAdded:connect( function (Player) |
03 | local numbvalue = Instance.new( 'NumberValue' ) |
04 | numbvalue.Parent = Player |
05 | numbvalue.Name = 'Lives' |
08 | Player.CharacterAdded:connect( function (Character) |
10 | Player.PlayerGui.LivesGui.LivesRemaining.Text = 'x' ..numbvalue.Value |
12 | Character.Humanoid.Died:connect( function () |
13 | numbvalue.Value = (numbvalue.Value - 1 ) |
14 | Player.PlayerGui.LivesGui.LivesRemaining.Text = 'x' ..numbvalue.Value |
15 | print (Player.Name.. ' has lost a life and now has ' ..numbvalue.Value.. ' left!' ) |
help :(