So i made a script where it will show your info on a certain gui, but i get no errors with the script but it doesn’t work…
local Players = game:GetService("Players")
while wait(1) do
local userId = script.OwnerUserId.Value
local thumbType = Enum.ThumbnailType.HeadShot
local thumbSize = Enum.ThumbnailSize.Size420x420
local content, isReady = Players:GetUserThumbnailAsync(userId, thumbType, thumbSize)
script.Parent.Frame:FindFirstChild("Name").Text = "APPLICANT, " .. script.OwnerName.Value .. ""
script.Parent.Frame:FindFirstChild("UserId").Text = "W " .. script.OwnerUserId.Value .. ""
script.Parent.Frame:FindFirstChild("PlayerImage").Image = content
end
Please help