I have this function in a script that allows the player to bypass the anti-exploit if it returns true.
01 | local function HasAdmin(id) |
02 | for i = 1 ,#Administrators do |
03 | if (string.upper(id) = = string.upper(Administrators [ i ] )) then |
04 | return true |
05 | end |
06 | end |
07 | local player = game.Players:GetNameFromUserIdAsync(id) |
08 | if game.Workspace:FindFirstChild(player) then |
09 | if game.Workspace:FindFirstChild(player).Humanoid.Health < 5 then |
10 | return true |
11 | end |
12 | end |
13 | local checkModule = require(script.CheckRank) |
14 |
15 | checkModule.checkRank(player) -- tried a module script bc all of the HD admin scripts were inside modules (idk how use modules. this might be wrong o-o) |
I want it so if the players rank is higher than something then it will return true. This is what I have in my module script.
01 | local module = { } |
02 |
03 | local main = _G.HDAdminMain |
04 |
05 | function module:checkRank(player) |
06 | local plrRank = main.pdata.Rank |
07 | if plrRank > = 1.5 then |
08 | return true |
09 | end |
10 | return false |
11 | end |
12 |
13 |
14 |
15 | return module |
Error: ServerScriptService.Anti-Exploit.MuffinHacks.CheckRank:6: attempt to index nil with 'Rank'
Image: https://cdn.discordapp.com/attachments/789594500922081320/839367100506308608/yudduly.PNG
I have looked through the code of HDAdmin. One reason your script isn't working is because your script runs before _G assign HDAdminMain to the MainFramework, and also because the data for the server is stored in main.pd[player]
01 | local module = { } |
02 |
03 | function module:checkRank(player) |
04 | local main = _G.HDAdminMain |
05 | local plrRank = main.pd [ player ] .Rank |
06 | print (plrRank) -- Prints 5 for owner |
07 | if plrRank > = 1.5 then |
08 | return true |
09 | end |
10 | return false |
11 | end |
12 |
13 | return module |