Did you add the weapon to yourself?
Also, what's this?
PHP Code:
Pez_Window2.visible = Pez_Window2.visible - 1;
.visible takes boolean values, either 'true' or 'false' (1 or 0). If it's already set to 0, subtracting 1 would leave '-1', which isn't a boolean value.