You can't do game.Players.PlayerAdded in localscripts. I suggest you making a RemoteEvent and call it "PlayerGroup" and put it in ReplicatedStorage.
Here is the the script you need to make in ServerScriptService:
1 | rp = game:GetService( "ReplicatedStorage" ) |
2 | playergroup = rp:WaitForChild( "PlayerGroup" ) |
5 | game.Players.PlayerAdded:Connect( function (plr) |
6 | local roleplr = plr:GetRoleInGroup( 3336691 ) |
7 | print (plr, "is" , roleplr) |
8 | playergroup:FireAllClients(plr, roleplr) |
And this your localscript:
01 | local text 1 = script.Parent |
02 | local rp = game:GetService( "ReplicatedStorage" ) |
03 | local playergroup = rp:WaitForChild( "PlayerGroup" ) |
04 | player = game.Players.LocalPlayer |
07 | playergroup.OnClientEvent:connect( function (plr, rank) |
08 | if plr ~ = nil and plr.Name = = player.Name then |