Hello guys I have a rank and Name on replicated storage using a billboardGui
Yet, the rank updates, everything works fine but only the person with the rank can See their rank, No one else. It appears just as “Label”.
How can I fix this?
local char = script.Parent
local replicated = game:GetService(“ReplicatedStorage”)
local NameGui = replicated.NameGUI
local nameClone = NameGui:Clone()
nameClone:WaitForChild(“name”).Text = char.Name
nameClone.Parent = char:WaitForChild(‘Head’)
local human = char:WaitForChild(“Humanoid”)
human.DisplayDistanceType = Enum.HumanoidDisplayDistanceType.Viewer