So how to get the Group Thumbnail of a group? I mean like in-game so it's in a Decal or ImageLabel or ImageButton.
Any help? (I am not asking for a Script I am just asking for a URL or something that I can edit.)
Thanks for helping.
The following code returns an asset ID which can be placed into decals or ImageLabels/ImageButtons
game:GetService("GroupService"):GetGroupInfoAsync(979242).EmblemUrl
For decals:
local decal = script.Parent decal.Texture = game:GetService("GroupService"):GetGroupInfoAsync(979242).EmblemUrl
Or for ImageLabels/ImageButtons:
local imageGui = script.Parent imageGui.Image = game:GetService("GroupService"):GetGroupInfoAsync(979242).EmblemUrl