How to tag Text

I want to tag The name the player chose for there video
``lua
local video = game.ServerStorage.Video:Clone()

local thumbType = Enum.ThumbnailType.HeadShot
local thumbSize = Enum.ThumbnailSize.Size420x420
local content, isReady = Players:GetUserThumbnailAsync(player.UserId, thumbType, thumbSize)
video.Parent = startergui.Screen.HomeScreen.Videos
video.Name = "video"..Name
video.Vidimage.Video = "rbxassetid://"..number
video.pfp.Image = content
video.person.Text = player.Name
video.Title.Text = Name
print(number,Name)
wait(1)
if video.Vidimage.TimeLength == 0 then
	video:Destroy()
	return player, number
end
video.Parent = player.PlayerGui.Screen.HomeScreen.Videos

``
and i want the text to be tagged if its bad

https://developer.roblox.com/en-us/api-reference/function/TextService/FilterStringAsync

Yea i saw that but it didnt help much more