I'm trying to make a script that makes a text say something or say something else, One of the two. I tried doing random but it said it needed a number and not a string.
Can someone help me with that? That would be really helpful for me and I would really appreciate it if you do.
Thanks, MajinBluee
Use tables, I'll make a quick example
local Strings = {'Hello', 'World'} local st = Strings[math.random(1, #Strings)] print(st)
(This basicly, makes a random number from 1 to the lenght of the table, and then gets the thing out the table with that index)