I saw alot of funcorp members using it so i decided to make one that people can use in their tribe houses!
The code:
You can execute this in your tribe house using /lua if you have /np command permissions,
also btw change 'Put your text here!' to whatever you want...
The code:
JavaScript:
local t = 'Put your text here!'
-- DO NOT MODIFY ANYTHING ABOVE THIS LINE
local n = 0
function eventLoop(ct, tr)
if n == 0 then
ui.addTextArea(1000, '<p align="center">'..t, nil, 7, 27, 788, 20, 0x000000, 0xff0000, 1, false)
end
if n == 1 then
ui.removeTextArea(1000, nil)
ui.addTextArea(1000, '<p align="center">'..t, nil, 7, 27, 788, 20, 0x000000, 0xff7700, 1, false)
end
if n == 2 then
ui.removeTextArea(1000, nil)
ui.addTextArea(1000, '<p align="center">'..t, nil, 7, 27, 788, 20, 0x000000, 0xffdd00, 1, false)
end
if n == 3 then
ui.removeTextArea(1000, nil)
ui.addTextArea(1000, '<p align="center">'..t, nil, 7, 27, 788, 20, 0x000000, 0x00ff11, 1, false)
end
if n == 4 then
ui.removeTextArea(1000, nil)
ui.addTextArea(1000, '<p align="center">'..t, nil, 7, 27, 788, 20, 0x000000, 0x00ffcc, 1, false)
end
if n == 5 then
ui.removeTextArea(1000, nil)
ui.addTextArea(1000, '<p align="center">'..t, nil, 7, 27, 788, 20, 0x000000, 0x0000ff, 1, false)
end
if n == 6 then
ui.removeTextArea(1000, nil)
ui.addTextArea(1000, '<p align="center">'..t, nil, 7, 27, 788, 20, 0x000000, 0x3c00ff, 1, false)
end
if n == 7 then
ui.removeTextArea(1000, nil)
ui.addTextArea(1000, '<p align="center">'..t, nil, 7, 27, 788, 20, 0x000000, 0xf200ff, 1, false)
n = 0
end
n = n+1
end
also btw change 'Put your text here!' to whatever you want...
Last edited:


