Answered by
5 years ago Edited 5 years ago
Improvements
Use WaitForChild()
to make sure a part exists before using it
Use GetService()
for the Players
Service
InputBegan
takes two parameters, the input
, and a gameproccessed
event (used to check if the input occurred in / on a gui)
Issues
My assumption is that the "part" you are referring to is in the workspace
, however, LocalScripts will NOT run in the workspace
, only Server Scripts, so I'd move your LocalScript
to StarterGui
instead
Revised Local Script in the StarterGui
01 | local uis = game:GetService( "UserInputService" ) |
03 | local p = game:GetService( "Players" ).LocalPlayer |
04 | local c = p.Character or p.CharacterAdded:Wait() |
05 | local h = c:WaitForChild( "Humanoid" ) |
07 | local gui = script.Parent:WaitForChild( "PressF" ):WaitForChild( "Frame" ) |
09 | local f = workspace:WaitForChild( "Floor" ) |
11 | uis.InputBegan:Connect( function (input, event) |
12 | if input.KeyCode = = Enum.KeyCode.A then |
13 | print ( "A was pressed!" ) |
If anything else in your code requires "script.Parent" i'd suggest making the part it refers to a local variable in your code and replacing those instances.