im not asking for a script
Well, here's what you can do:
-- Firstly, Create a table containing all the texts you want to appear Texts = { "I saw a cat", "Cats are amazing", "I saw epic doggo", "Spongebob" } local Textlabel = _________ --Refer to the Textlabel you want it to appear function SelectRandomText() --This will select a random text from the table local RandomSelectedText = math.random(1,#Texts) return RandomSelectedText end Textlabel.Text = SelectRandomText() --This will select a random text everytime you say SelectRandomText()