Page 1 of 1

Costume Preset

Posted: Tue Nov 22, 2022 1:32 pm
by Giggs-Chan
How do I have the player start using a costume when they start the game other than SMB3 Mario without the costume switch block?

Re: Costume Preset

Posted: Tue Nov 22, 2022 7:53 pm
by Mal8rk
Let's say if you want to make the player start as SMW Mario. Then you can write this on your lua file:

Code: Select all

function onStart()
    Player.setCostume(CHARACTER_MARIO,"SMW-Mario",true) --This works for other characters
end