User's avatar thumbnail duplicated on image object

  1. 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

  2. What is the issue? Include screenshots / videos if possible!
    The image is duplicated

  3. 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.
image

1 Like
  • For non repeating images Decal object should be used
  • The texture object is very similar to the Decal object. However, whereas the image applied by a Decal scales when the BasePart is resized, the image applied by a Texture repeats.
1 Like

Thank you, I appreciate the help! :smiley:

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.