How do i make this Jetpack actually fly
------------------------------------------
ITEM.Name = 'Jump Pack'
ITEM.Price = 1000
ITEM.Model = 'models/xqm/jetengine.mdl'
ITEM.Bone = 'ValveBiped.Bip01_Spine2'
function ITEM:OnEquip(ply, modifications)
ply:PS_AddClientsideModel(self.ID)
end
function ITEM:OnHolster(ply)
ply:PS_RemoveClientsideModel(self.ID)
end
function ITEM:ModifyClientsideModel(ply, model, pos, ang)
model:SetModelScale(0.5, 0)
pos = pos + (ang:Right() * 7) + (ang:Forward() * 6)
return model, pos, ang
end
function ITEM:Think(ply, modifications)
if ply:KeyDown(IN_JUMP) then
ply:SetVelocity(ply:GetUp() * 6)
end
end
You need to create a swep and link it to that.
How do you link a SWEP
[highlight](User was banned for this post ("dumb bump" - postal))[/highlight]
Wrong Section
[highlight](User was banned for this post ("report, don't reply" - postal))[/highlight]
Sorry, you need to Log In to post a reply to this thread.