local Players = game:GetService("Players") Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) local head = character:WaitForChild("Head") local billboard = Instance.new("BillboardGui") billboard.Size = UDim2.new(0,200,0,50) billboard.StudsOffset = Vector3.new(0,2,0) billboard.AlwaysOnTop = true billboard.Parent = head local text = Instance.new("TextLabel") text.Size = UDim2.new(1,0,1,0) text.BackgroundTransparency = 1 text.Text = "Owner" text.TextScaled = true text.TextColor3 = Color3.fromRGB(255, 255, 0) text.Font = Enum.Font.GothamBold text.Parent = billboard end) end)