you'll need to create a file called "PixelUI", u save ur pixel note's assets there and the put this in ur script.functiononCreatePost()fori=0, getProperty('opponentStrums.length')-1dosetPropertyFromGroup('opponentStrums', i, 'texture', '(the name of the opponent's notes assets)');endfori=0, getProperty('unspawnNotes.length')-1doifgetPropertyFromGroup('unspawnNotes', i, 'mustPress') ==falsethensetPropertyFromGroup('unspawnNotes', i, 'texture', '(the name of the opponent's notes assets)');endendfori=0, getProperty('playerStrums.length')-1dosetPropertyFromGroup('playerStrums', i, 'texture', '(the name of bf's notes assets)'');endfori=0, getProperty('unspawnNotes.length')-1doifgetPropertyFromGroup('unspawnNotes', i, 'mustPress') thensetPropertyFromGroup('unspawnNotes', i, 'texture', '(the name of bf's notes assets)');endendend
Personally I have some scripts in psych that make it so the Dad uses a separate noteskin. I can edit this message later with said script and hopefully with the fatality noteskin working
you'll need to create a file called "PixelUI", u save ur pixel note's assets there and the put this in ur script. function onCreatePost() for i = 0, getProperty('opponentStrums.length')-1 do setPropertyFromGroup('opponentStrums', i, 'texture', '(the name of the opponent's notes assets)'); end for i = 0, getProperty('unspawnNotes.length')-1 do if getPropertyFromGroup('unspawnNotes', i, 'mustPress') == false then setPropertyFromGroup('unspawnNotes', i, 'texture', '(the name of the opponent's notes assets)'); end end for i = 0, getProperty('playerStrums.length')-1 do setPropertyFromGroup('playerStrums', i, 'texture', '(the name of bf's notes assets)''); end for i = 0, getProperty('unspawnNotes.length')-1 do if getPropertyFromGroup('unspawnNotes', i, 'mustPress') then setPropertyFromGroup('unspawnNotes', i, 'texture', '(the name of bf's notes assets)'); end end end
Personally I have some scripts in psych that make it so the Dad uses a separate noteskin. I can edit this message later with said script and hopefully with the fatality noteskin working