any one able to help or just do a simple stop by stop for me

thanks
Code: Select all
ITEM.Name = 'Faith'
ITEM.Price = 9999
ITEM.Model = 'models/player/something.mdl'
function ITEM:OnEquip(ply, modifications)
if not ply._OldModel then
ply._OldModel = ply:GetModel()
end
timer.Simple(1, function() ply:SetModel(self.Model) end)
end
function ITEM:OnHolster(ply)
if ply._OldModel then
ply:SetModel(ply._OldModel)
end
end