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
1 | local Strings = { 'Hello' , 'World' } |
2 |
3 | local st = Strings [ math.random( 1 , #Strings) ] |
4 | 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)