H
Huntyboy102
Guest
How can I check if a player is using an item and when the item is used it makes a global signal that can be used in an if statement
If (global.lv1 = true) {if statements do like global variables; they don't discriminate. Post your code.
as @BattleRifle BR55 was saying obvious error is the if statementIf (global.lv1 = true) {
Visible = 0
} else { visible = 1
}
If (global.lv1 == true) {
visible = 0
} else { visible = 1
}