Hello, I’ve been looking for a way to check a rank of a player on HD Admin from a separate script. I could not find any solutions or ways to do this. The goal of what im doing is to make a certain area for only mods and admins on HD Admin can see this within my game. Does any have any solutions?
1 Like
I’m not too sure how HD Admin works, but I’d assume the admins are stored in a table. Move this table to a modulescript, and access it from your separate script to get the admins. This is the solution I was able to offer with the details you gave.
Please remember in your posts to attach script segments that relate to your problem so we can help better.
1 Like
Ok its alright, I will also post script segements from now on in my forums. I will also find a different way to do this for my moderators / admins. Thanks!
1 Like
local hdMain = require(game:GetService("ReplicatedStorage"):FindFirstChild("HDAdminSetup")):GetMain()
local hd = hdMain:GetModule("API")
local Rank = hd:GetRank(player)
print(Rank)
3 Likes
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.