Hey! I have recently started scripting, so I decided to learn randoms by creating a label script, but i'm lost. What did I do wrong? If its right, should I move the script/make it a local script? (this is for an intro)
01 | local random = math.random( 1 , 2 ) |
02 |
03 | while true do |
04 | if random = = 1 then |
05 | script.Parent.TextLabel.Text = "Test" |
06 | elseif random = = 2 then |
07 | script.Parent.TextLabel.Text = "Text2" |
08 |
09 | end |
10 | end |
Thanks so much!
if you want the label to continuously change, you will have to put the math.random inside the while True do loop
01 | while true do |
02 | local random = math.random( 1 , 2 ) |
03 |
04 | if random = = 1 then |
05 | script.Parent.TextLabel.Text = "Test" |
06 | elseif random = = 2 then |
07 | script.Parent.TextLabel.Text = "Text2" |
08 |
09 | end |
10 | end |
Explanation
Make a table and use math.random to select a random string from the table.
Code
1 | local words = { "hi" , "sup" , "testing" } |
2 |
3 | script.Parent.Text = math.random(words) |
Edit:I forgot to format my code lol