Was wondering what could be causing this issue ?
All my entities just float and cant be touched. Like drug mod.
The server maybe doesn't have the model, or the SetMoveType is not set to MOVETYPE_VPHYSICS.
[lua]
function ENT:Initialize()
self:SetmoveType( MOVETYPE_VPHYSICS );
end
[/LUA]
or the object is sleeping
[LUA]
ent:GetPhysicsObject():Wake();
[/LUA]
I don't remember if that might be the cause but maybe.
Sorry, you need to Log In to post a reply to this thread.