1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
------------------------- ----Admin Commands v1---- ------ by bardecon ------ ------------------------- Admin = {160589} -- Write here the usgn of the players who you want to be admin -- -- Say Hook1 -- addhook("say","sayCommand") -- Admin Commands -- function sayCommand(id,txt) for usgn in pairs(Admin) do if (txt == "!sArmor") then 	--!sArmour Command, gives admin super armour.-- parse("equip "..id.." superarmor") msg2(id,"©255255000Super Armor Succesfully equiped!") elseif (txt =="!rs") then 	--!rs Command, resets your scores and deaths.-- if (player(id,"score")>0) or (player(id,"deaths")> 0) then parse("setscore "..id.. " 0") parse("setdeaths "..id.. " 0") msg2(id,"©255255000Scores has succesfully reseted!") return 1 --wont work plz help-- else msg2(id,"©255255000You dont have scores yet!") end end end end