So, I've run into animation troubles. I want to make an animation where this guy grabs two guns from his side and pull them up to his hands, holding them out in defense. But I am unaware of a transparency script for that specific instance.
You can make his bodyparts transparent like this.
Example:
1 | local body = script.Parent |
2 | local hum = body.Humanoid |
3 | local animation = script.Parent.Animation |
4 | local animationTrack = hum:LoadAnimation(animation) |
5 |
6 | animationTrack:Play() |
7 | body.LeftHand.Transparency = 1 |