Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

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)

01local lives = script.Parent.Lives.CurrentLives.Value
02local textlabel = script.Parent.Lives
03 
04function onDeath()
05print('Someone has died! :0')
06lives = (lives - 1)
07print(lives)
08textlabel.Text = "x"..lives
09wait(0)
10end
11    if textlabel.Text == "x0" then do
12        print("Someone has lost all their lives!")
13        wait(2)
14        textlabel.Text = ("GAME OVER!")
15        script.Parent.Frame.Visible = true     
16    end
17end
18 
19game.Players.LocalPlayer.Character.Humanoid.Died:connect(onDeath)

script 2 (new)

01game.Players.PlayerAdded:connect(function(Player)
02 
03local numbvalue = Instance.new('NumberValue')
04        numbvalue.Parent = Player
05        numbvalue.Name = 'Lives'
06        numbvalue.Value = 20
07 
08        Player.CharacterAdded:connect(function(Character)
09 
10            Player.PlayerGui.LivesGui.LivesRemaining.Text = 'x'..numbvalue.Value
11 
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!')
16            end)
17    end)
18end)

help :(

1 answer

Log in to vote
0
Answered by
aiuis 85
7 years ago
01game.Players.PlayerAdded:connect(function(Player)
02 
03    Instance.new'NumberValue'.Parent=Player
04    Player.Value.Name='Lives'
05    Player.Lives.Value=10
06 
07    Player.CharacterAdded:connect(function(Character)
08 
09        Player.PlayerGui.ScreenGui.TextLabel.Text='x'..(Player.Lives.Value)
10 
11        Character.Humanoid.Died:connect(function()
12            Player.Lives.Value=Player.Lives.Value-1
13            Player.PlayerGui.ScreenGui.TextLabel.Text='x'..(Player.Lives.Value)
14            print(Player.Name..' has lost a life and now has '..Player.Lives.Value..' left!')
15        end)
16    end)
17end)
0
Died function wont work Godlydeathdragon 227 — 7y
0
What does the output say?... aiuis 85 — 7y
0
Because it works for me aiuis 85 — 7y
0
Output says nothing Godlydeathdragon 227 — 7y
Ad

Answer this question