You seem to have a 'non-perfect' event ;p
The '.Changed' should only be used when there aren't any events for that case.
In this case, we got an event called 'CharacterAdded'
Let's change the code:
Now we need to make it actually connect the event, so we got the final code of:
01 | game.Players.PlayerAdded:connect(onPlayerRespawned) |
02 | function onPlayerRespawned(newPlayer) |
05 | gui = Instance.new( "BillboardGui" ) |
06 | gui.Parent = newPlayer.Character.Head |
07 | gui.Adornee = newPlayer.Character.Head |
08 | gui.Size = UDim 2. new( 3 , 0 , 3 , 0 ) |
09 | gui.StudsOffset = Vector 3. new( 0 , 2 , 0 ) |
10 | local text 1 = Instance.new( "TextLabel" ) |
11 | text 1. Text = ( "Level:" ..newPlayer.leaderstats.Lvl.Value) |
12 | text 1. FontSize = "Size14" |
13 | text 1. TextColor 3 = Color 3. new( 170 , 0 , 0 ) |
14 | text 1. TextStrokeColor 3 = Color 3. new( 0 , 0 , 0 ) |
15 | text 1. TextStrokeTransparency = 0 |
16 | text 1. Size = UDim 2. new( 1 , 0 , 1 , 0 ) |
17 | text 1. Position = UDim 2. new( 0 , 0 , 0 , 0 ) |
18 | text 1. BackgroundTransparency = 1 |
22 | function onPlayerEntered(newPlayer) |
29 | onPlayerRespawned(newPlayer) |
32 | game.Players.PlayerAdded:connect(onPlayerEntered) |
But now we face a dillema:
WE WANT IT TO AUTO UPDATE!
For this, make a new LocalScript in Backpack.
Now change this to the code:
01 | function onPlayerUpdate() |
04 | if (game:service( 'Players' ).LocalPlayer.Character:FindFirstChild( 'Head' )~ = nil ) then |
05 | if (game:service( 'Players' ).LocalPlayer.Character.Head:FindFirstChild( "BillboardGui" ) = = nil then |
06 | gui = Instance.new( "BillboardGui" ) |
07 | gui.Parent = game:service( 'Players' ).LocalPlayer.Character.Head |
08 | gui.Adornee = game:service( 'Players' ).LocalPlayer.Character.Head |
09 | gui.Size = UDim 2. new( 3 , 0 , 3 , 0 ) |
10 | gui.StudsOffset = Vector 3. new( 0 , 2 , 0 ) |
11 | local text 1 = Instance.new( "TextLabel" ) |
12 | text 1. Text = ( "Level:" ..game:service( 'Players' ).LocalPlayer.leaderstats.Lvl.Value) |
13 | text 1. FontSize = "Size14" |
14 | text 1. TextColor 3 = Color 3. new( 170 , 0 , 0 ) |
15 | text 1. TextStrokeColor 3 = Color 3. new( 0 , 0 , 0 ) |
16 | text 1. TextStrokeTransparency = 0 |
17 | text 1. Size = UDim 2. new( 1 , 0 , 1 , 0 ) |
18 | text 1. Position = UDim 2. new( 0 , 0 , 0 , 0 ) |
19 | text 1. BackgroundTransparency = 1 |
21 | game:service( 'Players' ).LocalPlayer.Character.Head.BillboardGui.TextLabel.Text = ( "Level:" ..game:service( 'Players' ).LocalPlayer.leaderstats.Lvl.Value) |
Also make sure you make the LocalScript...
Thanks! ~marcoantoniosantos3