so my partner and i have been working on a room and wanting to add full body costumes but we are having trouble figuring out how to set the shield the costume gives to the player wearing it like you can do with the bean body costume dummy and the set player stat chip
any help with this would be a great help and appreciated+
1 Like
The only “Set Stat” chip in Cv2 is Leaderboard Set Local Stat
, which is for leaderboards
If the shield is an object, the Costume Dummy
object board should have an event for when the costume is equipped, you can receive this event and then say “On equip > Equip shield object”
If the shield is like a state, so this player takes less damage or smth, then you can just use Costume Get Wearer
to get who is wearing a costume, and Is Valid
, Player Get Is Local
, and And
to check if the wearer is valid and local, and if so, reduce incoming damage or smth
1 Like