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

I need help with a player avatar gui image???

Asked by 2 years ago

My error is at line 10 and 9. I am trying to show the player avatar on a gui shown to all players. My error in the output is "Nil" and I believe it is the print function. but it is caused by line 10

01local pic = script.Parent
02 
03local player1 = game.ReplicatedStorage.heist1Values.Player1.PlayerName
04print(player1.Value)
05 
06while wait(0.1) do
07 
08    if player1.Value ~= "none" then
09        local player = game.Players:GetChildren(player1.Value)
10        print(player.DisplayName)
11    --local player = game.Players.LocalPlayer
12 
13if player.Name == player1.Value then
14 
15local userId = player.UserId
View all 30 lines...

1 answer

Log in to vote
0
Answered by
VAnkata20 135
2 years ago

Tried it in studio and it works like that

01local pic = script.Parent.pic
02 
03local player1 = game.ReplicatedStorage.heist1Values.Player1.PlayerName
04print(player1.Value)
05 
06 
07 
08while wait(0.1) do
09 
10    if player1.Value ~= "none" then
11        local player = game.Players:FindFirstChild(player1)
12        print(player.DisplayName)
13        --local player = game.Players.LocalPlayer
14 
15            local userId = player.UserId
View all 29 lines...

keep in mind its modified a little so if there is something i have missed tell me

0
okay lemme see if it works now Lamborghinihurican0 4 — 2y
0
tysm Lamborghinihurican0 4 — 2y
0
Accept the answer if it works :) VAnkata20 135 — 2y
0
sorry thought I accepted it Lamborghinihurican0 4 — 2y
Ad

Answer this question