So I found this code in the toolbox that locks my animation to first person mode - However whenever I start in game I can still see the outline of my face model which ruins the experience a little. You can see the code and the problem in both of the images. does anyone know what I am doing wrong?
#Unable to hide face with first person animation script
1 messages · Page 1 of 1 (latest)
The decal shows when I am looking down; I need to find away to hide it just like I hide every other part of the body in the script when "CanViewBody" is set to false
what you can do is in a local script (placed in startercharacterscripts)
game.Loaded:Wait()
script.Parent.Head:FindFirstChildWhichIsA("Decal"):destroy()
this will destroy the face for your client, but not other players
or you can just make the decal transparent
Your above method did not work. How can I make the decal transparent
** You are now Level 1! **
to make it transparent do this
script.Parent.Head:FindFirstChildWhichIsA("Decal").Transparency = 1
Thanks it worked