ITEM.Name = 'ZerosuitSamus'
ITEM.Price = 5000
ITEM.Model = 'models/smashbros/samlyx.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
http://www.garrysmod.org/downloads/?a=view&id=46716 <----Where I got the model
this is code for the zerosuit samus model that i added. I comepletely added all of the materials in the materials folder and models in the models folder and got this when i added it