Advertisement
Nadds

Untitled

Apr 27th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. local question = script.Parent.Question
  2. local answer = script.Parent.Answer
  3. local enter = script.Parent.Enter
  4.  
  5. script.Parent.Enter.MouseButton1Click:connect(function()
  6. if (question.Text == "What is your current rank in TZL?") then
  7. if (answer.Text:lower() == "enlist") or (answer.Text:lower() == "[x] enlist") then
  8. question.Text = "Correct!"
  9. wait(2)
  10. question.Text = "Who is the commander in TZL?"
  11. wait()
  12. elseif (question.Text == "Who is the commander in TZL?") then
  13. if (answer.Text:lower() == "2ndaccountfnadds5142") or (answer.Text:lower() == "nadds") then
  14. question.Text = "Correct!"
  15. wait(2)
  16. question.Text = "What is the lowest rank considered an HR?"
  17. wait()
  18. elseif (question.Text == "What is the lowest rank considered an HR?") then
  19. if (answer.Text:lower() == "captain") or (answer.Text:lower() == "[h] captain") then
  20. question.Text = "Correct!"
  21. wait(2)
  22. question.Text = "Who is TZL's current ally?"
  23. wait()
  24. elseif (question.Text == "Who is TZL's current ally?") then
  25. if (answer.Text:lower() == "nrc") or (answer.Text:lower() == "nexus recon clan") then
  26. question.Text = "Correct!"
  27. wait(2)
  28. question.Text = "How many rank sections are there?"
  29. wait()
  30. elseif (question.Text == "How many rank sections are there?") then
  31. if (answer.Text:lower() == "6") or (answer.Text:lower() == "six") then
  32. question.Text = "Correct!"
  33. wait(2)
  34. question.Text = "What is the lowest rank that can host trainings?"
  35. wait()
  36. elseif (question.Text == "What is the lowest rank that can host trainings?") then
  37. if (answer.Text:lower() == "captain") or (answer.Text:lower() == "[h] captain") then
  38. question.Text = "Correct!"
  39. wait(2)
  40. script.Parent.Parent.Frame:TweenPosition(UDim2.new(0, 0, -1, 0), 'Out', 'Bounce', 1.25)
  41. script.Parent.Parent.Parent.WinScript.Disabled = false
  42. end
  43. end
  44. end
  45. end
  46. end
  47. end
  48. end
  49. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement