function randomhint()
choice = math.random(1,5)
end
-----------
this is all I have so far,
my best try was
if choice = 1 then do
BLAH BLAH BLAH
elseif choice = 2 then do
But I got errors everywhere. I am new to scripting so can someone help me?
choices = {"hi", "hello", "hola", "bonjour"} --This is a table, you can make a list of strings but separate them with ','s
randomchoice = choices[math.random(#choices)]
script.Parent.Text = randomchoice