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

how do i have a players character appear on a imagelabel?

Asked by 4 years ago

i've tried

script.Parent.Image = game.Players.LocalPlayer.CharacterAppearanceId

and

script.Parent.Image = game.Players.LocalPlayer.Character

but they obviously dont work but it was worth a try

0
I'm as oblivious as you are... maxpax2009 340 — 4y

1 answer

Log in to vote
0
Answered by
Infocus 144
4 years ago
Edited 4 years ago

You need (idk what its called), but first part of the link, then you used string:format()

local image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=352&y=352&format=png&userid=%d"
script.Parent.Image = image:format(game.Players.LocalPlayer.userId);
Ad

Answer this question