Hey there, I have made an outfit giver that works fine. However, the shirt for the Low Rank isn’t appearing.
This is the code I have done:
script.Parent.Touched:Connect(function(hit)
local Player = game.Players:GetPlayerFromCharacter(hit.Parent)
local Character = Player.Character
if Player:GetRankInGroup(4789894) <= 8 then
Character.Pants.PantsTemplate = script.Parent.Uniform.LR.Pants.PantsTemplate
Character.Shirt.ShirtTemplate = script.Parent.Uniform.LR.Shirt.ShirtTemplate
end
end)
Have you confirmed that the script.Parent.Uniform.LR.Shirt.ShirtTemplate thing has loaded already? (You can honestly just do that in studio but applying it to a random humanoid / rig)