๐Board Notify
This is an experimental work. In some cases, it may not work properly!
Last updated
This is an experimental work. In some cases, it may not work properly!
Last updated
RegisterCommand("boardNotify",function(src,args,raw)
local notify = boardNotify({title=args[1] or "title",message=args[2] or "message"})
Wait(1000)
notify:update({title="title2"})
Wait(3000)
notify:update({title="title3",message="message3"})
Wait(3000)
notify:update({title="title4",message="message4"})
Wait(3000)
notify:clear()
end)