Can someone help me please? :)

Hello everyone, does anyone know how to make character carry a box? Thank you :slight_smile:

In limelight or ink?

Limelight :slight_smile:

Animations for carrying a box that exist in limelight:

Females & males both have these animations available for them:

idle_box_carry_neutral_loop

talk_box_carry_neutral

walk_box_neutral_loop

walk_talk_box_neutral_loop

So, in your script, you’d write something like this (p.s this is just an example):

@add Moving Box to CHAR

@CHAR is idle_box_carry_neutral_loop

NARR
Bla bla bla…

*You’d replace CHAR’s name with your characters and it doesn’t have to be idle_box_carry_neutral_loop, you can use any box carrying animation that’s available in limelight.

To remove the box, you’d write:

@remove Moving Box from CHAR

So, to sum it up, to add a prop (in this case, the moving box), it’s:

@add Moving Box to CHAR

And to remove a prop, (in the case, the moving box), it’s:

@remove Moving Box from CHAR

1 Like

Thank you soo mucch :smiley:

No problem <3