How to change the font of the name of every player in my game

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)

3 Likes

There is a Font property of a TextLabel which takes the Font Enum.

2 Likes

Could u send me the modified script of this so i can do that with everyone but the lower text has to say guest. Or i could change it myself :slight_smile: