I was following a tutorial but I changed some things so it is usable on mobile, so then players can click the wood to to pick it up, it works perfectly exept that it can get picked up with any keycode instead of just the keycode F.
01 | local UIS = game:GetService( "UserInputService" ) |
02 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
03 | local PickupItem = ReplicatedStorage:WaitForChild( "Remotes" ):WaitForChild( "PickupItem" ) |
04 | local pickupKey = "F" |
05 |
06 | local player = game.Players.LocalPlayer |
07 | local mouse = player:GetMouse() |
08 | local item = mouse.Target |
09 | local distanceFromItem = nil |
10 |
11 | local PlayerGui = player:WaitForChild( "PlayerGui" ) |
12 | local PickupInfoGui = PlayerGui:WaitForChild( "PickupInfoGui" ) |
13 |
14 | UIS.InputBegan:Connect( function (input) |
15 | if mouse.Target and input.KeyCode = = Enum.KeyCode.F then |
01 | UIS.InputChanged:Connect( function (input) |
02 | if mouse.Target then |
03 | if mouse.Target:FindFirstChild( "Pickable" ) then |
04 | local item = mouse.Target |
05 | PickupInfoGui.Adornee = item |
06 | PickupInfoGui.ObjectName.Text = item.Name |
07 | PickupInfoGui.Enabled = true |
08 | else |
09 | PickupInfoGui.Adornee = nil |
10 | PickupInfoGui.Enabled = false |
11 | end |
12 | end |
13 | end ) |
You have a variable, pickupkey but you never use it. It's likely you didn't finish the tutorial or the tutorial was half-assed.
Either way, specify which input you want like this:
01 | UIS.InputBegan:Connect( function (input) |
02 | if mouse.Target and input.KeyCode = = Enum.KeyCode.F then |
03 | if mouse.Target:FindFirstChild( "Pickable" ) then |
04 | local item = mouse.Target |
05 | PickupInfoGui.Adornee = item |
06 | PickupInfoGui.ObjectName.Text = item.Name |
07 | PickupInfoGui.Enabled = true |
08 | else |
09 | PickupInfoGui.Adornee = nil |
10 | PickupInfoGui.Enabled = false |
11 | end |
12 | end |
13 | end ) |
Same goes for InputEnded, understand what I did visually and replicate it. Also, remove line 36
Side note: I also changed it to InputBegan vs InputChanged there is a minor difference that you can search up but it shouldn't impact you very hard.
Larger edit:
01 | UIS.InputEnded:Connect( function (input) |
02 | if mouse.Target then |
03 | if mouse.Target:FindFirstChild( "Pickable" ) then |
04 | item = mouse.Target |
05 | if item then |
06 | distanceFromItem = player:DistanceFromCharacter(item.Position) |
07 | if item.Touched then --if item clicked, I feel like it is here. |
08 | if input.KeyCode = = Enum.KeyCode.F then |
09 | PickupItem:FireServer(item) |
10 | end |
11 | end |
12 | end |
13 | end |
14 | end ) |
All the codes you need to make what you want will be included here.
Basic proximity prompt
1 | workspace.Part.ProximityPrompt.Triggered:Connect( function (player) |
2 | print ( "The user interacted with me!" ) |
3 | end ) |
Checking which device a player is in (i think this will work... I found this on the internet
01 | local UIS = game:GetService( "UserInputService" ) |
02 | local GuiService = game:GetService( "GuiService" ) |
03 |
04 | if UIS.TouchEnabled and not UIS.KeyboardEnabled and not UIS.MouseEnabled |
05 | and not UIS.GamepadEnabled and not GuiService:IsTenFootInterface() then |
06 |
07 | -- mobile device |
08 | else |
09 |
10 | --pc |
11 |
12 | end |