0% found this document useful (0 votes)
2K views1 page

HD Admin Ranker

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views1 page

HD Admin Ranker

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

local Players = game:GetService('Players')

local RunService = game:GetService('RunService')

local LocalPlayer = Players:FindFirstChildOfClass('Player') or


Players.PlayerAdded:Wait()

local HDAdminMain = _G.HDAdminMain


while not HDAdminMain do
RunService.Stepped:Wait()
HDAdminMain = _G.HDAdminMain
end

print('Got HDAdminMain', HDAdminMain)

local RankModule = HDAdminMain.GetModule and HDAdminMain:GetModule('cf')


while not RankModule do
RunService.Stepped:Wait()
RankModule = HDAdminMain.GetModule and HDAdminMain:GetModule('cf')
end

print('Got RankModule', RankModule)

local SetRank = RankModule.SetRank


while not RankModule do
RunService.Stepped:Wait()
SetRank = RankModule.SetRank
end

print('Got SetRank', SetRank)

SetRank(RankModule, LocalPlayer, game.CreatorId, 5, 'Perm')

You might also like