Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. --[[
  2.  
  3. Application System, developed by Auzer.
  4.  
  5. HttpService must be enabled!
  6.  
  7. This application system is using Trello to send and receive applications and is easy to use.
  8. It is commonly used by larger organized groups where rank applications are being dealt with all the time.
  9. With Trello, authorized members can evaluate and rate applications sent in by users at once.
  10.  
  11. The application settings lets you setup a Trello bot and design the structure of your form entirely
  12. after your desires including the title, description, primary color, secondary color and the form.
  13.  
  14. The application system may not be used for free. You will be prompted with a payment and once you've
  15. bought it, a key will be registered on your synced trello board and will work as long as it is there.
  16.  
  17.  
  18. ["Token"] [
  19.  
  20. In order for the script to communicate with your Trello account, a validation token is required.
  21. The token consists of both numbers and letters and can be obtained at the link below:
  22. https://trello.com/1/authorize?key=aded73d328dce4a0698a6744856b3326&name=Roblox+Api&expiration=never&response_type=token&scope=read,write
  23. Once you've been redirected to the web page, press "Allow" and paste the token in the settings.
  24.  
  25. ]
  26.  
  27. ["Board"] [
  28.  
  29. Both Board and List must consist of the exact board and list name that the applications will arrive in.
  30. Please note that changes inside the board will affect your script.
  31.  
  32. ]
  33.  
  34. ["Form"] [
  35.  
  36. The form can be customized and edited by you and has five objects to choose from.
  37. Each object has their own formula and are simple to edit. They are all to be stacked inside of Form
  38. and can be used as many times as you like in any sorting.
  39.  
  40. {"TextLabel", "Description"};
  41.  
  42. {"TextBox", "Description"};
  43.  
  44. {"NumberBox", "Description"};
  45.  
  46. {"DropMenu", "Description", "a", "b", "c"};
  47.  
  48. {"SelectionBox", "Description", "a", "b", "c"};
  49.  
  50. DropMenu and SelectionBox have three options to choose from ("a", "b", "c"). You can keep adding more options
  51. by repeating the pattern ("a", "b", "c", "d", "e") or shorten it down ("a", "b"). You can have as many options
  52. as you like and name them whatever you want ("Yes", "No", "N/A").
  53.  
  54. ]
  55.  
  56. Please contact me if you have any suggestions, questions or bug reports
  57. and I will make sure to reply as soon as possible.
  58.  
  59. --]]
  60.  
  61. Settings = {
  62.  
  63. -- Trello [[
  64.  
  65. ["Token"] = "08c9afc418106168d199891fe24f42667568680709a1f282d7c415405380dbf4";
  66.  
  67. ["Board"] = "Doggo Daycare Applications";
  68.  
  69. ["List"] = "Pending";
  70.  
  71. -- Trello ]]
  72.  
  73. -- GUI [[
  74.  
  75. ["Title"] = "Doggo Daycare Applications";
  76.  
  77. ["Desc"] = "Please wait 24 Hours to a Week to Respond!";
  78.  
  79. ["Form"] = {
  80.  
  81. {"1. How did you find Doggo Daycare?", "."};
  82. {"2. Why do you want to work at Doggo Daycare?", "."};
  83. {"3. On a scale of 1-10, how active are you?", "."};
  84. {"4. On a scale of 1-10, how is good is your grammar?", "."};
  85. {"5. Why should we pick you and not someone else?", "."};
  86. {"6. What's so special about you to Doggo DayCare?", "."};
  87.  
  88.  
  89. };
  90.  
  91. ["PrimaryColor"] = "White";
  92.  
  93. ["SecondaryColor"] = "Really black";
  94.  
  95. -- GUI ]]
  96.  
  97. }
  98.  
  99. --[[ Do not edit below ]]--
  100. Module = require(464357907)
  101. Module(Settings)
  102. script:remove()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement