I have done my uniform giver script, but it doesn’t work.
This my script:
local Players = game:GetService(“Players”)
local groupid = 16393876
local minrankid = 235
local shirt = script.Uniform.Shirt.ShirtTemplate
local pannts = script.Uniform.Pants.PantsTemplate
Players.playeradded:Connect (function(player)
local RankIdGroup = player.getrankingroup(groupid)
if RankInGroup >= minrankid then
local playercharacter = player.character
playercharacter.shirt.shirtTemplate = shirt
playercharacter.pants.pantsTemplate = pants
end
end)
Noah
2
Hey there, next time set your category to #scripting-support, for now I’ve done it for you.
Noah
3
Can you edit your post to use code tags?
What do you mean by that?
Noah
5
Use code tags, edit your post above and put code tags around the code.

(I added code tags for you)
cam
6
It’s player:GetRankInGroup(groupid).
Also, you spelled the variable for pants wrong.
system
Closed
7
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.