Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local pergunta1 = script.Parent.Parent.Parent.Frame1.TextLabel
- local pergunta2 = script.Parent.Parent.Parent.Frame2.TextLabel
- local pergunta3 = script.Parent.Parent.Parent.Frame3.TextLabel
- local Array = {
- "Procuro um celular",
- "Procuro uma TV",
- "Procuro um sofá",
- "Procuro um guardaroupa",
- "Procuro uma fritadeira",
- "Procuro uma lavadora"
- }
- local RandomElement = Array[math.random(1, #Array)]
- for count = 1, 21 do
- wait(30)
- RandomElement = Array[math.random(1, #Array)]
- if player then
- --script.Parent.Text = "Bom dia, meu nome é " ..player.Name.. ".Qual é o se nome?"
- script.Parent.Text = RandomElement
- if RandomElement == "Procuro um celular" then
- pergunta1.Text = "O que você mais prioriza em um celular?"
- pergunta2.Text = "Qual o tipo de sistema que você prefere?"
- pergunta3.Text = "Quem irá utilizar o celular?"
- elseif RandomElement == "Procuro uma TV" then
- pergunta1.Text = "Quantas polegadas você prefere?"
- pergunta2.Text = "Quais aplicativos você mais utiliza?"
- pergunta3.Text = "Qual o tamanho da sala em que ficará a sua TV?"
- elseif RandomElement == "Procuro um sofá" then
- pergunta1.Text = "Qual o modelo que você está procurando?"
- pergunta2.Text = "Qual a cor da sua preferência?"
- pergunta3.Text = "Mas e a cor da sua parede?"
- elseif RandomElement == "Procuro um guardaroupa" then
- pergunta1.Text = "Quantas portas você prefere?"
- pergunta2.Text = "Qual o guarda-roupas você deseja?"
- pergunta3.Text = "Que tipo de roupas você coloca no guarda-roupas? "
- elseif RandomElement == "Procuro uma fritadeira" then
- pergunta1.Text = "Quantas pessoas moram na sua casa?"
- pergunta2.Text = "Que tipo de tecnologia você prefere? "
- pergunta3.Text = "Qual a cor você prefere?"
- elseif RandomElement == "Procuro uma lavadora" then
- pergunta1.Text = "Que tipos de roupas você costuma lavar?"
- pergunta2.Text = "Você prefere digital ou manual?"
- pergunta3.Text = "Quem vai utilizar a lavadora?"
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement