how to make everyone on team see name roblox

-- Step 1: Locate the LocalPlayer
local player = game.Players.LocalPlayer

-- Step 2: Create a function to change the display name
local function changeDisplayName()
    -- Step 3: Set the display name to "roblox"
    player.DisplayName = "roblox"
end

-- Step 4: Connect the function to the PlayerAdded event
player.PlayerAdded:Connect(changeDisplayName)