Answered by
6 years ago Edited 6 years ago
Put a Local Script inside the Text Button with the following code:
01 | local player = game.Players.LocalPlayer |
02 | script.Parent.MouseButton 1 Click:Connect( function () |
03 | char = player.Character |
04 | char.Head.Transparency = 1 |
05 | char.Torso.Transparency = 1 |
06 | char [ "Left Arm" ] .Transparency = 1 |
07 | char [ "Left Leg" ] .Transparency = 1 |
08 | char [ "Right Arm" ] .Transparency = 1 |
09 | char [ "Right Leg" ] .Transparency = 1 |
10 | char.Head.face.Transparency = 1 |
11 | for i,v in pairs (char:GetChildren()) do |
12 | if v.ClassName = = "Accessory" then |
13 | v.Handle.Transparency = 1 |
That code should work I think. If this helps, be sure to mark me as an answer. It would've been better if you'd shown us some coding in your question though.
Closed as Not Constructive by User#19524 and Zafirua
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?