memecreater

GUI MAKER maybe work lol

Jan 11th, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. ------------------------------------------------------------------------
  2. --
  3. -- GUI-Maker v2
  4. -- Made by repxrd#0347
  5. --
  6. ------------------------------------------------------------------------
  7.  
  8. --TABS
  9. _G.tabs={
  10. { --Sample Gui
  11. ['Name']='Sample Gui', --Name of the gui
  12. ['Rainbow']=false, --Should the text be rainbow?
  13. ['Bar']={
  14. ['Rainbow']=true, --Should the bar be rainbow?
  15. ['Color']=Color3.fromRGB(255,55,55) --If the bar shouldn't be rainbow then what color it should have?
  16. },
  17. ['Values']={ --Values in the gui
  18. {
  19. ['Name']='Sample Tab', --Name of the value in gui
  20. ['Rainbow']=false, --Should the text be rainbow?
  21. ['Type']='check', --Type of the gui (check,value,button,info)
  22. ['PlaceholderText']='placeholder', --If the type is 'value' then what placeholder text should appear?
  23. ['Function']='sample' --Name of the function that u want to be fired by activating the value
  24. }
  25. }
  26. }
  27. }
  28.  
  29. --FUNCTIONS
  30. function sample(state)
  31. print(state)
  32. end
  33.  
  34. --LOAD
  35. loadstring(game:HttpGet('https://pastebin.com/raw/V3yiKkVh',true))()
Add Comment
Please, Sign In to add comment