Garry's Mod

[Help] Pointshop Playermodel Error

Submitted by jord404, , Thread ID: 63306

Thread Closed

RE: [Help] Pointshop Playermodel Error

OP
This post was last modified: 03-12-2017, 02:35 AM by jord404
#5
03-12-2017, 02:17 AM
Lakeey Wrote:
Ewwww, who uses skype anymore that's cancer. Currently I'm grounded and I'm my school's Chromebook which almost everything is blocked only sort of community we can use is NBB's PMs.

Need 25 posts to use DM's apperntlybut yeah, I'm trying it out right now, I'll let you know what happens Smile!

03-12-2017, 02:17 AM
Lakeey Wrote:
Ewwww, who uses skype anymore that's cancer. Currently I'm grounded and I'm my school's Chromebook which almost everything is blocked only sort of community we can use is NBB's PMs.
Code:
ITEM.Name = 'Darth Maul'
ITEM.Price = 3500
ITEM.Model = 'models/nate159/hero/player/darthmaul.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

function ITEM:PlayerSetModel(ply)
ply:SetModel(self.Model)
end

Users browsing this thread: 7 Guest(s)