Advertisement
InTesting

a lil something to help with rbbattles2

Dec 13th, 2020
1,083
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. local function a(...)
  2.     local c ={A='/',B='=',C='@',D='~',E='*',F='!',G='%',H='&',I='\\',J='\'',K='?',L='^',
  3.         M='#',N='+',O='|',P=')',Q='>',R='{',S='[',T='_',U='<',V='}',W='-',X=':',Y=']',Z='('}
  4.     for d,e in next,c do
  5.         c[e]=d
  6.     end
  7.     for _,b in next,{...}do
  8.         print(string.gsub(b,'.',c))
  9.     end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement