Hello DevForum! I need your help with a little issue I just found in my game! D:
Basically, I’m doing like a social app in Roblox. I’ve done a posting messages system, community system (basically similar to Discord), etc. But, I’ve recently discovered that when you go to the Settings category (in-game), and wen you add the ID of any decal to make it a profile picture in-game, it doesn’t work basically. The image doesn’t appear, making it an useless feature.
This is how it should show up if it works properly:
Also, here’s the code if anyone’s wondering:
local Player = game.Players.LocalPlayer
local playerIcons = game.Players:GetUserThumbnailAsync(Player.UserId, Enum.ThumbnailType.AvatarBust, Enum.ThumbnailSize.Size420x420)
local PlayerIcon = script.Parent.ProfilePicture
wait(1)
local ListSettings = script.Parent.ListSettings
while task.wait(1.5) do
if playerIcons then
if ListSettings.ImageSettings.CustomProfileText.Text == "" or ListSettings.ImageSettings.CustomProfileText.Text == "0" then
PlayerIcon.Image = playerIcons
else
if game:GetService("MarketplaceService"):UserOwnsGamePassAsync(game.Players.LocalPlayer.UserId, 104810315) then --Profile Picture Loader.
PlayerIcon.Image = "http://www.roblox.com/asset/?id=".. ListSettings.ImageSettings.CustomProfileText.Text --Adds to the image the link to the decal
else
PlayerIcon.Image = playerIcons
end
end
script.Parent.Username.Text = "@".. Player.Name
end
if game:GetService("MarketplaceService"):UserOwnsGamePassAsync(game.Players.LocalPlayer.UserId, 104810144) then
script.Parent.Username.TextColor3 = ListSettings.ColorHex.HexColorName.HexColorShow.BackgroundColor3
else
script.Parent.Username.TextColor3 = Color3.fromRGB(255, 255, 255)
end
script.Parent.Background.BackgroundColor3 = ListSettings.ColorHex.CustomBackgroundText.HexColorShow.BackgroundColor3
script.Parent.ProfilePicture.BackgroundColor3 = ListSettings.ColorHex.CustomBackgroundText.HexColorShow.BackgroundColor3
end
I don’t know why this is happening, and I need to find a way to fix this or else the gamepass will literally be useless. Any information will be helpful for me, thanks!