is it possible to make your own gui that has a fight option that when you click the fight gui you more fighting options like gun when you click gun you get a bunch of cool gun fighting options like jump and shoot when you click jump and shoot the character does a cool jump and shoot move is this even possible ??? ??? ??? ??? ??? ???
yeah, but it isnt already made for you, nor automatic. are you using an lec style gui? cause you would just make a copy of the gui and then replace what the buttons say and then change what they would do.
i have my own gui it has a horror comedy look
now you just have to script it then :)
Look up GUI in the manual. It tell you how to attach scripts to the buttons.
what if it were the dott gui
The GUI style doesn't really matter - they all are handled by assigning a script for each button:
if (interface == FIGHTINGGUI) {
if (button == 0) {...} // shooting animation
if (button == 1) {...} // jumping animation
}