1# So as you may have seen on Hilton Hotels Training Center is that the host has a key card. I have asked plenty of people on how to do that, they have no clue. What I am asking is how do you assign a certain item to a certain rank in a group?
local player = game.Players.LocalPlayer local groupId = (Group id here) local rank = (Rank number here) local example = (This is just an example, let's say this item is in RepStorage) wait() if player:IsInGroup(groupid) then if player:GetRankInGroup(groupId) == rank then example:Clone().Parent = player.Backpack end end