![]()
All of the sudden my HD admin setup refuses to give me roles in-game, but it gives me roles in studio.
The group id is 100%, the settings set up also all of the sudden doesn’t work too!
![]()
All of the sudden my HD admin setup refuses to give me roles in-game, but it gives me roles in studio.
The group id is 100%, the settings set up also all of the sudden doesn’t work too!
local success, groupInfo = pcall(function() return(main.groupService:GetGroupInfoAsync(groupId)) end)
if not success then
warn("HD Admin | You entered an invalid GroupId: ".. tostring(groupId))
else
...
end
This is the code that is failing, try running game:GetService("GroupService"):GetGroupInfoAsync(ID) directly to get more context on the problem. Also probably don’t use HD Admin in 2026…
I didn’t notice initially but why exactly do you have two different group IDs? That doesn’t make much sense
local success, groupInfo = pcall(function()
return main.groupService:GetGroupInfoAsync(groupId)
end)
if not success then
warn("HD Admin | Failed to fetch group " .. tostring(groupId) .. ": " .. tostring(groupInfo))
else
end
Try this and tell does it work