Took some trial and error but I managed to find the problem with the script and fixed a few unknown problems. For those curious here's the problems I ran into:
1. Code wouldn't save: *Solution* This happened due to my unfamiliarity with the coding of FO. I had not created the "ShowMessage NotLaserRifleWeaponMsg" item and as a result it was referencing something that didn't exist as a result the item failed. Going back to my c++ days it would be like the putting #include
2. Item Consumption On Message Trigger: The item would be consumed even though the person would not have a Laser Rifle Weapon equipped. To fix this I made a simple alteration where it produces the message then awards the player a Laser Repair Kit. The first one (1) is for the numerical item amount *they are using 1 and will be returned 1 item* and the second one (1) is to hide the message to the player saying they received a laser rifle repair kit since they really "Didn't" consume it.
3. Item wasn't being repaired: This was another fault of mine and a really amateurish one where I didn't set the appropriate amounts for the player. The character I tested it on had a skill of 99 repair and 95 energy weapons, but the script only included people below 75. As a result I altered the code so if a person has a skill of greater than 50 repair and 50 energy weapons it will account for that. Sadly this brings up another issue where a person may have greatly differing skill sets for their weapons. However to account for this I will be using this script in combination with a special recipe.
The special recipe will require the player to have a repair skill of 45 and a set weapon skill of 45 to go with that repair skill to produce this item. I would love to make this be an all encompassing item repairing an "Energy Weapon", but i'm unsure of how to get the weapontype boolean value.
If anyone would like to use this code for testing purposes or to put in their mode go ahead. Don't mind a bit of credit if you want to slide some my way though.

scn RepairKitLaserEffectSCRIPT;Most code taken directly from the DLC05AlienEpoxyEffectScript.;Values have been adjusted slightly (-5 across the board), now includes a +30 bonus for having Repair 100;7.6.10 JESfloat WeapHealthBEGIN ScriptEffectStart ;// get the current health percent and add 25 set WeapHealth to player.getWeaponHealthPerc ;// run through the player's repair skill and augment appropriatelyIF (player.getEquipped WeapLaserRifle == 1) IF ( player.getAV Repair < 25 ) IF ( player.getAV EnergyWeapons < 25 ) set WeapHealth to WeapHealth + 20 ENDIF ELSEIF ( player.getAV Repair >= 25 && player.getAV Repair < 50 ) IF ( player.getAV EnergyWeapons >=25 && player.getAV EnergyWeapons < 50 ) set WeapHealth to WeapHealth + 25 ENDIF ELSEIF ( player.getAV Repair >= 50 ) IF ( player.getAV EnergyWeapons >=50 ) set WeapHealth to WeapHealth + 30 ENDIF ENDIF ELSE ShowMessage NotLaserRifleWeaponMsg player.AddItem NVLaserRepairKit 1 1ENDIF ;// set the weapons new health percent player.setWeaponHealthPerc WeapHealthEND