-
What do you want to achieve? Keep it simple and clear!
Set an Image object image to a user’s Thumbnail WITHOUT the image being duplicated -
What is the issue? Include screenshots / videos if possible!
The image is duplicated -
What solutions have you tried so far? Did you look for solutions on the Developer
Couldn’t find anything on this problem
-- this is my code to get and set the image stuff
local par = script.Parent
local players = game:GetService("Players")
local success, result = pcall(function()
return players:GetUserThumbnailAsync(136348750, Enum.ThumbnailType.AvatarBust, Enum.ThumbnailSize.Size420x420)
end)
if success then
if result then
par.Texture = result
end
else
warn(result)
end
As you can see in that image, the user’s character is on the image TWICE.