local playerId = PlayerId() -- you can use any local player ID here
-- clear any already existing gamer tag associated with this player
if IsMpGamerTagActive(playerId) then
RemoveMpGamerTag(playerId)
-- wait until the gamer tag actually becomes free
repeat Wait(0) until IsMpGamerTagFree(playerId)
end
-- create the gamer tag
CreateMpGamerTagWithCrewColor(playerId, "jaymoo", false, true, "RSG", 0, 200, 0, 200)
-- set the name, crew and typing indicator components as visible
SetMpGamerTagVisibility(playerId, 0, true)
SetMpGamerTagVisibility(playerId, 1, true)
SetMpGamerTagVisibility(playerId, 16, true)