heeey, another question, the ranks won’t show up. does this have to be in a localscript? if in a localscript, then the serverstorage can’t be accessed. this is a script inside serverscriptservice.
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Wait()
if player:IsInGroup(5872229) == 1 then -- guest
game.ServerStorage:WaitForChild("Customer"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 5 then -- customer
game.ServerStorage:WaitForChild("HC"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 80 then -- reg shopper
game.ServerStorage:WaitForChild("RegularShopper"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 90 then -- divine
game.ServerStorage:WaitForChild("Divine"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 100 then -- legendary
game.ServerStorage:WaitForChild("Legendary"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 154 then -- sales trainee
game.ServerStorage:WaitForChild("SalesTrainee"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 210 then -- sales trainee
game.ServerStorage:WaitForChild("SalesIntern"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 220 then -- designer
game.ServerStorage:WaitForChild("Designer"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 225 then -- admin assistant
game.ServerStorage:WaitForChild("AdminAssistant"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 230 then -- general manager
game.ServerStorage:WaitForChild("General_Manager"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 235 then -- exclusive intern
game.ServerStorage:WaitForChild("ExIntern"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 240 then -- public rel manager
game.ServerStorage:WaitForChild("PublicRel"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 243 then -- human resources manager
game.ServerStorage:WaitForChild("Human Resources Manager"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 245 then -- operations manager
game.ServerStorage:WaitForChild("OpManager"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 250 then -- executive director
game.ServerStorage:WaitForChild("exDirector"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 253 then -- presidential assistant
game.ServerStorage:WaitForChild("Presidental Assistant"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 254 then -- vice president
game.ServerStorage:WaitForChild("VC"):Clone().Parent = player.Character.Head
elseif player:IsInGroup(5872229) == 255 then -- president
game.ServerStorage:WaitForChild("President"):Clone().Parent = player.Character.Head
end
end)