Advertisement
Eliaseeg

GUI changer

Oct 30th, 2015
776
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.83 KB | None | 0 0
  1. local mice = {}
  2.  
  3. function main()
  4.     table.foreach(tfm.get.room.playerList, eventNewPlayer)
  5. end
  6.  
  7. function eventNewPlayer(name)
  8.     if not mice[name] then
  9.         mice[name] = {
  10.             backgroundColor = "1644825",
  11.             borderColor = "1644825"
  12.         }
  13.     end
  14.     ui.showColorPicker(1, name, mice[name].backgroundColor, "Choose your GUI (Background Color)!")
  15. end
  16.  
  17. function eventColorPicked(id, name, color)
  18.     if (color ~= -1) then
  19.         if (id == 1) then
  20.             mice[name].backgroundColor = color
  21.             ui.showColorPicker(2, name, mice[name].backgroundColor, "Choose your GUI (Border Color)!")
  22.             else if (id == 2) then
  23.                 mice[name].borderColor = color
  24.                 ui.addTextArea(0, "<font size='70' face='Freestyle Script'>This is now your GUI!</font>", name, 111, 69, 583, 257, mice[name].backgroundColor, mice[name].borderColor, 1, false)
  25.             end
  26.         end
  27.     end
  28. end
  29.  
  30. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement