How to change body color of a player ?
This question has been solved by the original poster.
So... i'm trying to make a drink , when you drink it your skin turns blue , it's like a ice potion sooo... i don't really know how to select the player's body color.Sorry for the issue
Also here is my script
09 | tool.GripForward = Vector 3. new( 0 ,-. 759 ,-. 651 ) |
10 | tool.GripPos = Vector 3. new( 1.5 ,-. 5 ,. 3 ) |
11 | tool.GripRight = Vector 3. new( 1 , 0 , 0 ) |
12 | tool.GripUp = Vector 3. new( 0 ,. 651 ,-. 759 ) |
13 | local char = tool.Parent |
14 | local hum = char:FindFirstChild( "Humanoid" ) |
16 | if hum.WalkSpeed = = 16 then |
22 | tool.GripForward = Vector 3. new(-. 976 , 0 ,- 0.217 ) |
23 | tool.GripPos = Vector 3. new( 0.03 , 0 , 0 ) |
24 | tool.GripRight = Vector 3. new(. 217 , 0 ,-. 976 ) |
25 | tool.GripUp = Vector 3. new( 0 , 1 , 0 ) |
38 | tool.Activated:Connect(onActivate) |
39 | tool.Equipped:Connect(onEquipped) |