I have created some animated text and for some unknown reason an X with a square around it is replaced once and a while here is an example
Here is a Picture
and here is the script.
local MainGui = script.Parent.Parent.PlayerGui:WaitForChild("Main")
local TextLabel = MainGui.Text.TextLabel
local CharLabel = MainGui.Text.Char
local function SetText(CharText, Text)
local Word = Text
for i = 1, #Word do
TextLabel.Text = string.sub(Word, 1 , i)
CharLabel.Text = CharText
wait(.06)
end
end
local function FadeBlack()
for i = 0 , 1 , .1 do
wait(.05)
MainGui.Black.BackgroundTransparency = i
end
end
game.ReplicatedStorage.Events.RemoteEvents.StartGame.OnClientEvent:Connect(function()
SetText("Neil:","and…..Touchdown!")
wait(1)
SetText("Neil:", "An almost perfect landing! Except for our computer malfunctioned and we landed not only at night but short of our target.")
wait(1)
SetText("Neil:", "We’re gonna have to walk the rest of the way I guess.")
wait(1)
FadeBlack()
end)