Okay thanks

function Weaponz( Player )
if Player:IsAdmin() then
Player:Give("weapon_mu_magnum")
Player:Give("weapon_mu_knife")
Player:Give("weapon_smg1")
end
end
concommand.Add ( "weps", Weaponz )This is what I have now, but it gives me more errors.
[ERROR] lua/autorun/muweapons.lua:3: attempt to call method 'Give' (a nil value)
1. unknown - lua/autorun/muweapons.lua:3
2. unknown - lua/includes/modules/concommand.lua:54
I tried adding Give in my arguments but it didnt fix the error. If Player:IsAdmin works then why not Player:Give?