I tried using this:
local randomText = {"hello", "i love you", "a chap send you a message", "you are weird", "wanna be my bestie?", "what is your tag?", "you stink", "*dies cutely*", "press alt+f4 for sprint", "i am flamgo!"} for i = newMsg.Text, randomText do end
I tried to do printing but nothing happened at all
Try this -
local randomText = {"hello", "i love you", "a chap send you a message", "you are weird", "wanna be my bestie?", "what is your tag?", "you stink", "*dies cutely*", "press alt+f4 for sprint", "i am flamgo!"} for i, randomText in pairs(randomText) do print(randomText) end
Using in pairs lets you select any option from the array.