How would I change an existing commands execution rank in HD Admin?

i’ve tried the SetCommandRankByName table and it didnt work this is what i put in it:

SetCommandRankByName = {
	--["jump"] = "VIP";
	--["Rank"] =  "HeadAdmin";
	Jump = {"HeadAdmin"};
	
};	
1 Like

also whenever i try to set the command it sets itself as NonAdmin rank / 0

1 Like

The correct way would probably be

["jump"] = "HeadAdmin”;
3 Likes