Monster Racer Rush
Select between 5 monster racers, upgrade your monster skill and win the competition!
4.23 / 5.00 3,881 ViewsBuild and Base
Build most powerful forces, unleash hordes of monster and control your soldiers!
3.93 / 5.00 4,634 Viewswhat i'm asking is a little hard to explain, so bare with me.
i need a script for my game that when i push a button (T) it performs an action with a hit test in the animation, when the hit markers hit, it is supposed to add health but it doesn't. anyone know?
onClipEvent (enterFrame) {
if (_root.tbag, hitTest(_root.tbag2)) {
_root.health++
}
}
(or something like that, i don't remember... the game is at home)
if (_root.tbag, hitTest(_root.tbag2)) {
change the comma to a period
if (_root.tbag.hitTest(_root.tbag2)) {
fixed