Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local mice = {}
- function main()
- table.foreach(tfm.get.room.playerList, eventNewPlayer)
- end
- function eventNewPlayer(name)
- if not mice[name] then
- mice[name] = {
- backgroundColor = "1644825",
- borderColor = "1644825"
- }
- end
- ui.showColorPicker(1, name, mice[name].backgroundColor, "Choose your GUI (Background Color)!")
- end
- function eventColorPicked(id, name, color)
- if (color ~= -1) then
- if (id == 1) then
- mice[name].backgroundColor = color
- ui.showColorPicker(2, name, mice[name].backgroundColor, "Choose your GUI (Border Color)!")
- else if (id == 2) then
- mice[name].borderColor = color
- 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)
- end
- end
- end
- end
- main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement