I was wondering how i could change everyones name to another font. I did do it on my self but that was just for me. This is the script i used its in serverscriptservice. This is the script i used but for could u pls help me make it for everyone?
local rep = game:GetService(“ReplicatedStorage”)
local nametag = rep.NameTag
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(char)
local head = char.Head
local newtext = nametag:Clone()
local uppertext = newtext.UpperText
local lowertext = newtext.LowerText
local humanoid = char.Humanoid
humanoid.DisplayDistanceType = "None"
newtext.Parent = head
newtext.Adornee = head
uppertext.Text = player.Name
if player.Name == "RussoTalks1253" then
lowertext.Text = "Owner"
lowertext.TextColor3 = Color3.fromRGB(255, 255, 0)
end
end)
end)