So I need for an image to show a certain players thumbnail. The players name that I need to show is the variable SeekerName.Value. Can anybody help me figure out how to tell the script to locate the player named SeekerName.Value and then get their thumbnail? Thanks!
local Players = game:GetService("Players") local player = Players[workspace.TimeFI.seeker.SeekerName.Value] -- Fetch the thumbnail local userId = player.UserId local thumbType = Enum.ThumbnailType.HeadShot local thumbSize = Enum.ThumbnailSize.Size420x420 local content, isReady = Players:GetUserThumbnailAsync(userId, thumbType, thumbSize) -- Set the ImageLabel's content to the user thumbnail local imageLabel = script.Parent imageLabel.Image = content imageLabel.Size = UDim2.new(0, 420, 0, 420)