Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ZenoEmotes = {};
- table.insert(ZenoEmotes,"zenoPls");
- table.insert(ZenoEmotes,"zenoOoh");
- table.insert(ZenoEmotes,"zenoAah");
- table.insert(ZenoEmotes,"zenoChaos");
- table.insert(ZenoEmotes,"zenoJam");
- table.insert(ZenoEmotes,"zenoOscar");
- table.insert(ZenoEmotes,"zenoNinja");
- table.insert(ZenoEmotes,"zenoSlap");
- return function (m, usr, chan)
- local msg = "@" .. usr;
- if m and m ~= "" then
- msg = msg .. " is a " .. m;
- end
- for n=1,3 do
- msg = msg .. " " .. ZenoEmotes[math.random(#ZenoEmotes)];
- end
- print(msg);
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement