
I need License System BUT no Role Play Pls
I Did Try edit RP but i Cant :S
pls i need License System Just License system..

for i = 1,32 do
license[i] =false
end
adm = 123456
addhook([[say]],[[s]])
function s(id,txt)
txt = string.lower(txt)
if player(id,"usgn") == adm then
if string.sub(txt,1,2) == "!g" then
local pl = tonumber string.sub(txt,3)
license[pl] = true
elseif string.sub(txt,1,2) == "!t" then
local pl = tonumber string.sub(txt,3)
license[pl] = false
end
end
end
addhook([[leave]],[[l]])
function l(id)
license[id] = false
end
for i = 1,32 do
license[i] =false
end
function initArray(i,x)
local array = {}
for m = 1 , i do
array[m] = x
end
return array
end
license = initArray(32,false)