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
1 | game:GetService( "GroupService" ):GetGroupInfoAsync( 979242 ).EmblemUrl |
For decals:
1 | local decal = script.Parent |
2 | decal.Texture = game:GetService( "GroupService" ):GetGroupInfoAsync( 979242 ).EmblemUrl |
Or for ImageLabels/ImageButtons:
1 | local imageGui = script.Parent |
2 | imageGui.Image = game:GetService( "GroupService" ):GetGroupInfoAsync( 979242 ).EmblemUrl |