Garry's Mod

Garry's Mod

Drones Rewrite
I want dron dont collide with players
I want dron dont collide with players, how can I do this ?
I put this script on the init.lua from ardrone but is not working

function ENT:initialize()
self:SetCollisionGroup(COLLISION_GROUP_WEAPON)
end


function Ent:StartTouch(testEnt)
if testEnt:isPlayer() then
testEnt:ChatPrint("hi")
self:Remove()
end
end