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

Trying to make a TextLabel's text the LocalPlayer's Rank in the group. Isn't working?

Asked by
ghxstlvty 133
4 years ago
Edited 4 years ago
1local groupid = 6693950
2local text1 = script.Parent
3 
4game.Players.PlayerAdded:Connect(function(plr)
5    text1.Text = (plr:GetRoleInGroup(groupid))
6end)

Script is a LocalScript

1 answer

Log in to vote
1
Answered by
rabbi99 714 Moderation Voter
4 years ago

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:

1rp = game:GetService("ReplicatedStorage")
2playergroup = rp:WaitForChild("PlayerGroup")
3 
4 
5game.Players.PlayerAdded:Connect(function(plr)
6    local roleplr = plr:GetRoleInGroup(3336691)
7    print(plr, "is", roleplr) -- This is useful for testing
8    playergroup:FireAllClients(plr, roleplr)
9end)

And this your localscript:

01local text1 = script.Parent
02local rp = game:GetService("ReplicatedStorage")
03local playergroup = rp:WaitForChild("PlayerGroup")
04player = game.Players.LocalPlayer
05 
06 
07playergroup.OnClientEvent:connect(function(plr, rank)
08    if plr ~= nil and plr.Name == player.Name then
09        text1.Text = rank
10    end
11end)
1
It worked, thanks! ghxstlvty 133 — 4y
0
I am happy to help rabbi99 714 — 4y
Ad

Answer this question