Advertisement
dlard707

produtoAleatorio

Jun 1st, 2022
697
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.06 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local pergunta1 = script.Parent.Parent.Parent.Frame1.TextLabel
  3. local pergunta2 = script.Parent.Parent.Parent.Frame2.TextLabel
  4. local pergunta3 = script.Parent.Parent.Parent.Frame3.TextLabel
  5.  
  6. local Array = {
  7.     "Procuro um celular",
  8.     "Procuro uma TV",
  9.     "Procuro um sofá",
  10.     "Procuro um guardaroupa",
  11.     "Procuro uma fritadeira",
  12.     "Procuro uma lavadora" 
  13. }
  14.  
  15. local RandomElement = Array[math.random(1, #Array)]
  16.  
  17. for count = 1, 21 do
  18.    
  19.     wait(30)
  20.    
  21.     RandomElement = Array[math.random(1, #Array)]
  22.    
  23.     if player then
  24.         --script.Parent.Text = "Bom dia, meu nome é " ..player.Name.. ".Qual é o se nome?"
  25.         script.Parent.Text = RandomElement
  26.  
  27.         if RandomElement == "Procuro um celular" then
  28.             pergunta1.Text = "O que você mais prioriza em um celular?"
  29.             pergunta2.Text = "Qual o tipo de sistema que você prefere?"
  30.             pergunta3.Text = "Quem irá utilizar o celular?"
  31.         elseif RandomElement == "Procuro uma TV" then
  32.             pergunta1.Text = "Quantas polegadas você prefere?"
  33.             pergunta2.Text = "Quais aplicativos você mais utiliza?"
  34.             pergunta3.Text = "Qual o tamanho da sala em que ficará a sua TV?"
  35.         elseif RandomElement == "Procuro um sofá" then
  36.             pergunta1.Text = "Qual o modelo que você está procurando?"
  37.             pergunta2.Text = "Qual a cor da sua preferência?"
  38.             pergunta3.Text = "Mas e a cor da sua parede?"
  39.         elseif RandomElement == "Procuro um guardaroupa" then
  40.             pergunta1.Text = "Quantas portas você prefere?"
  41.             pergunta2.Text = "Qual o guarda-roupas você deseja?"
  42.             pergunta3.Text = "Que tipo de roupas você coloca no guarda-roupas? "
  43.         elseif RandomElement == "Procuro uma fritadeira" then
  44.             pergunta1.Text = "Quantas pessoas moram na sua casa?"
  45.             pergunta2.Text = "Que tipo de tecnologia você prefere? "
  46.             pergunta3.Text = "Qual a cor você prefere?"
  47.         elseif RandomElement == "Procuro uma lavadora" then
  48.             pergunta1.Text = "Que tipos de roupas você costuma lavar?"
  49.             pergunta2.Text = "Você prefere digital ou manual?"
  50.             pergunta3.Text = "Quem vai utilizar a lavadora?"
  51.         end
  52.  
  53.     end
  54.  
  55.    
  56. end
  57.  
  58.  
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement