Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Group Rank Script For Starterpack?

Asked by 10 years ago

I Need an Group Rank Script That goes into the Starter Pack when your On a Certain team.. So it would give someone on PD Team That is an SGT an Gun.. Can someone Show one.. Ive tried many.

01function onPlayerAdded(Player)
02    Player.CharacterAdded:connect(function() onCharacterAdded(Player) end)
03end
04game.Players.PlayerAdded:connect(onPlayerAdded)
05 
06function onCharacterAdded(Player)
07    for _, Team in ipairs(game.Teams:GetChildren()) do
08        if Team.TeamColor == Player.TeamColor then
09            for _, Object in ipairs(Team:GetChildren()) do
10                Object:Clone().Parent = Player.Backpack
11            end
12            break
13        end
14    end
15end
16 
17for _, Player in ipairs(game.Players:GetPlayers()) do
18    Player.CharacterAdded:connect(function() onCharacterAdded(Player) end)
19end

1 answer

Log in to vote
1
Answered by
Shawnyg 4330 Trusted Badge of Merit Snack Break Moderation Voter Community Moderator
10 years ago

Well, I'd do it this way.

01tool = game.ServerStorage["Tool name here"]
02id = 1337 -- Group Id
03pwr = 1 --The Rank of the group. Ranges from 1-255. 255 being the oner
04 
05game.Players.PlayerAdded:connect(function(plr)
06    plr.CharacterAdded:connect(function(char)
07        if plr:IsInGroup(id) and (plr:GetRankInGroup(id) >= pwr) and plr.TeamColor == BrickColor.new("Really red") then -- You can set it to '==' if you want it to be JUST that rank.
08            tool:clone().Parent = plr.Backpack
09        end
10    end)
11end)
0
Okay, So on the rank... Is that going to give it to like Rank Number 222 and Up? Also is the brick Color The Spawn color? MicrobeBlox 5 — 10y
0
Yes. (You have to edit the pwr variable obviously.) The BrickColor is the TeamColor's BrickColor. You can find that out in Explorer>Teams>The team you desire>Properties>TeamColor Shawnyg 4330 — 10y
0
Where do you need to have the tools located? Lighting? MicrobeBlox 5 — 10y
0
ServerStorage Shawnyg 4330 — 10y
Ad

Answer this question