Answered by
4 years ago Edited 4 years ago
It would be helpful if you could give a little more information about the problem. To me, the first thing that comes to mind is that under the InputBegan
event gameStuff
is true. Why are you returning when gameStuff
is true?
This should fix it:
02 | local plr = game.Players.LocalPlayer |
03 | local char = plr.Character or plr.CharacterAdded:Wait() |
04 | local UserInputService = game:GetService( "UserInputService" ) |
08 | local function ToggleVisibility(toggle) |
12 | if Visibility = = 0 then |
18 | if plr.Team.Name = = "Foundation Personnel" or plr.Team.Name = = "Internal Security Department" then |
20 | for _, Part in pairs (char:GetDescendants()) do |
21 | if (Part:IsA( "BasePart" ) or Part:IsA( "MeshPart" )) and Part.Name ~ = "HumanoidRootPart" then |
22 | Part.Transparency = Visibility |
23 | char.Head.face.Transparency = Visibility |
29 | UserInputService.InputBegan:Connect( function (Input,GameStuff) |
30 | if Input.KeyCode = = Enum.KeyCode [ Key ] then |
Note: I have also cleaned up the code a little bit. When programming you should always try to adhere to what is called the DRY (do not repeat yourself) principle. There is no need to repeat that if statement and for loop.