Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

why can I pick up the wood with any keycode when I just want it to be the keycode F?

Asked by
xxaxxaz 42
3 years ago
Edited 3 years ago

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.

01local UIS = game:GetService("UserInputService")
02local ReplicatedStorage = game:GetService("ReplicatedStorage")
03local PickupItem = ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("PickupItem")
04local pickupKey = "F"
05 
06local player = game.Players.LocalPlayer
07local mouse = player:GetMouse()
08local item = mouse.Target
09local distanceFromItem = nil
10 
11local PlayerGui = player:WaitForChild("PlayerGui")
12local PickupInfoGui = PlayerGui:WaitForChild("PickupInfoGui")
13 
14UIS.InputBegan:Connect(function(input)
15    if mouse.Target and input.KeyCode == Enum.KeyCode.F then
View all 43 lines...
0
Why are you not useing a proximity promt??? Xyternal 247 — 3y
0
because that is not what I need but I will try to make one xxaxxaz 42 — 3y

2 answers

Log in to vote
1
Answered by 3 years ago
Edited 3 years ago
01UIS.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
13end)

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:

01UIS.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
13end)

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:

01UIS.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
14end)
0
I did finish the tutorial but I changed the [inputkey] to F just to make sure that was not the problem xxaxxaz 42 — 3y
Ad
Log in to vote
1
Answered by
Xyternal 247 Moderation Voter
3 years ago

All the codes you need to make what you want will be included here.

Basic proximity prompt

1workspace.Part.ProximityPrompt.Triggered:Connect(function(player)
2    print("The user interacted with me!")
3end)

Checking which device a player is in (i think this will work... I found this on the internet

01local UIS = game:GetService("UserInputService")
02local GuiService = game:GetService("GuiService")
03 
04if UIS.TouchEnabled and not UIS.KeyboardEnabled and not UIS.MouseEnabled
05   and not UIS.GamepadEnabled and not GuiService:IsTenFootInterface() then
06 
07   -- mobile device
08else
09 
10 --pc
11 
12end
0
thx xxaxxaz 42 — 3y
0
does not work error: Players.xxaxxaz.PlayerScripts.PickupManager:9: attempt to index nil with 'Position' - Client - PickupManager:9 xxaxxaz 42 — 3y
0
I think it is because it does not auto clone to all the blocks that need it. xxaxxaz 42 — 3y
0
I made a succesful auto clone and it still does not work xxaxxaz 42 — 3y
0
hmm Xyternal 247 — 3y

Answer this question