of     1   

CrystalSweeper
#163742684Friday, June 05, 2015 1:37 AM GMT

I am trying to make a script which finds a players name, finds what rank they are in a group and then team too a certain team based on that rank when they join the game. a will be equal to the players name
CrystalSweeper
#163742836Friday, June 05, 2015 1:38 AM GMT

Here is what I have so far. game.Players.PlayerAdded:connect(function(p) p.CharacterAdded:connect(function() local RN = p:GetRankInGroup(Id) if RN == 3 then game.Players[a].TeamColor = BrickColor.new("Medium stone grey") end end) end)
MeIia_Antiqua
#163742847Friday, June 05, 2015 1:38 AM GMT

Wrong forum. Theres a free model for that. I believe.
CrystalSweeper
#163743219Friday, June 05, 2015 1:43 AM GMT

On the description of the forum it says this is the forum to get help.
SpazzMan502
#163746368Friday, June 05, 2015 2:21 AM GMT

Go to a website called scriptinghelpers It's a website by Roblox that's completely based on helping with scripts.
chimmihc
#163746608Friday, June 05, 2015 2:24 AM GMT

That site is 100% idiots. You get hated for asking simple questions. This is improved on by how there is a user rating system, which everyone uses to hate on new people. I script -~ chimmihc
CrystalSweeper
#163747095Friday, June 05, 2015 2:29 AM GMT

buump
shadownova62
#163747098Friday, June 05, 2015 2:30 AM GMT

^ I like this guy...
shadownova62
#163747145Friday, June 05, 2015 2:30 AM GMT

Dang it wrong person. ._. The guy above him...
chimmihc
#163747639Friday, June 05, 2015 2:36 AM GMT

local GroupId = 99999 local Ranks = { [1] = BrickColor.new("Bright red") } local GuestColor = BrickColor.new("White") local players = game:GetService("Players") players.PlayerAdded:connect(function(player) player.TeamColor = (Ranks[player:GetRankInGroup(GroupId)] or GuestColor) player.Neutral = false end) I script -~ chimmihc
SpazzMan502
#163783851Friday, June 05, 2015 6:13 PM GMT

Scripting helpers is extremely helpful for me. They will only not like you if you go on there and say "MAKE ME A SCRIPT THAT DOES SO AND SO AND SO"
shadownova62
#163824250Saturday, June 06, 2015 3:00 AM GMT

STOP REFERRING PEOPLE TO SCRIPTING HELPERS DARN IT!

    of     1