stock bool:IsDropAllow(chance){ if(chance <= 0) return false; if(chance >= 100) return true; if((random(100)+1) <= chance) return true; return false; }