I'm trying to change the coin HUD for PB and when i do its a mess how do i change the coin icon?
There are multiple ways to do that.
To modify the hud you need an sprite, I would recommend you to use an sprite with the size of the screen so you can put in the sprite whatever stuff you need.
When you use a custom sprite for hud, the hud stuff such as money, health and other indicators appears in the screen and may look like a mess. You can disable each one by using
hud sprite = 1 //Changes hud to sprite 1
hud show money = false //Turns off money indicator
hud show lives = false //Turns off lives indicator
hud show health = false //Turns off health indicator
However, if you want to use the default indicator but change the money icon, you should use the sprite sheets, find the one with the coin (Probably its in grayscale, this could cause problems because PB automatically blends the yellow on it)
You can change a spritesheet by going to
Game Setup > Sprite SheetsFind the spritesheet where the coin is in, then click download or template or something like that. Modify the sprites there. Afterwards, return and upload it to the place where the original was, and that's it.
You can move the default indicator by using
hud player (1 or 2) money = x, y
replace x and y with the coordinates on the screen.
Hope this helps you
