is my script correct

Duck0
Joined 03/02/2022
Posts 588
01:32 AM 12/02/2022
const outfit = new Outfit()
// Sets body colors to white
.body('#ffffff')
// Change head color (body colors are still changed!)
.head('#ffffff')

Game.on('playerJoin', (p) => {
p.on('avatarLoaded', () => {
// Apply the outfit to the player
p.setOutfit(outfit)
})
})
setOutfit(outfit: Outfit): Promise<any[]>
face(faceId: 207):
tshirt(tshirtId: 6):


Duck0
Joined 03/02/2022
Posts 588
01:33 AM 12/02/2022
is it correct, if its wrong help me to correct it

1