So I know this is how to find a Groups Name through a script:
local group = game:GetService("GroupService"):GetGroupInfoAsync(5278655)
local name = group.Name
(If that’s wrong let me know)
But now, how do I find the group’s image?
So I know this is how to find a Groups Name through a script:
local group = game:GetService("GroupService"):GetGroupInfoAsync(5278655)
local name = group.Name
(If that’s wrong let me know)
But now, how do I find the group’s image?
local group = game:GetService("GroupService"):GetGroupInfoAsync(5278655)
local image = group.EmblemUrl
And the Group Name script is correct, right?
Yep, this is correct.
-- Turnicated version of the json.
group = {
Name = "Knights of the Seventh Sanctum",
EmblemUrl = "http://www.roblox.com/asset/?id=60428602"
}
The usage is similar to the one given by Raretendoblox and the only part that is changed is group.KEY
TL;DR: You’re correct.