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

[Player Image] GUI Why doesn't this work?

Asked by 9 years ago

Im trying to make an Image of a player. It doenst work!

Player = game.Players.LocalPlayer
while true do
script.Parent.Image = "http://www.roblox.com/User.aspx?ID=" .. Player.userId
wait(0.01)
end

2 answers

Log in to vote
1
Answered by 9 years ago
Player = game.Players.LocalPlayer
while wait(0.01) do --More convenient
script.Parent.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=200&y=200&Format=Png&username=" ..Player.Name --x = 200 and y = 200 is the pixels. 200x200 picture
end
Ad
Log in to vote
-1
Answered by 9 years ago

..Character name I think...?

Answer this question