So I cannont find one fucking tutorial on how to do this. The 2 videos I found were squeakers that didn't show me jack shit, Im trying to add player models to my pointshop by _Undefined, When I add the models it just shows a big error sign where it should show the model when I hit F3 to open the pointshop.
ITEM.Name = 'Rorscarch'
ITEM.Price = 0
ITEM.Model = 'models/player/rorscarch.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
Bump, Please help.
[editline]15th June 2013[/editline]
Please.
are you sure you have the model on your client and the model path is typed correctly on "ITEM.Model"?
Sorry, you need to Log In to post a reply to this thread.