I have not made a mod that messed with scripts until now so this might be incorrect:
First of all, open the folder where Bully is installed on your computer and backup the 2 files inside the "scripts" folder.
Then, you are going to need a lua compiler. The only one that works with this game is in this link:
https://bully-board.com/index.php?topic=17590.0Just follow the instructions on that page to install the program.
Then you are going to create a blank text file. You can edit it with the standard windows notepad editor but I would advise using notepad++
Then, you need the source code for STimeCycle:
https://bully-board.com/index.php?topic=17594.0Copy and paste the source of STimeCycle.lua to the text file you created.
Now for the change you want right at the beginning:
main = function()
CounterMakeHUDVisible(false)
repeat
Wait(1000)
until not Alive
end
You just add that function you found at the beginning like you see above (I am not really sure about this...)
Save the file with the name "script" and change the extention from .txt to .lua and save it on the same location you have the compiler downloaded earlier
Then, to compile the code you need to open the command prompt and navigate to where you have the compiler.
Then run the following command:
luac -o STimeCycle.lur script.lua
After that you will have an unreadable file called "STimeCycle.lur". To make the changes you need to replace the file in the scripts folder with the same name (using IMG Tool 2.0 for this)
Rebuild the archive, run the game and it should work!
If you are having troubles compiling I can help you with that.