0 Members and 1 Guest are viewing this topic.
ITEM.Name = 'You name here'ITEM.Price = 250ITEM.Model = 'models/player/Yourmodelnamehere.mdl'function ITEM:CanPlayerEquip(ply) return ply:Team() ~= TEAM_UNDEADendfunction ITEM:OnEquip(ply, modifications) if not ply._OldModel then ply._OldModel = ply:GetModel() end timer.Simple(1, function() ply:SetModel(self.Model) end)endfunction ITEM:OnHolster(ply) if ply._OldModel then ply:SetModel(ply._OldModel) endendfunction ITEM:PlayerSetModel(ply) ply:SetModel(self.Model)end