Players selecting 2 tools at once

Sorry if I had posted it in the wrong area. However, my game is experiencing an issue where sometimes players are able to have 2 tools selected at once. Sometimes players report that their tools go missing. This has never happened until a couple of days ago.

https://streamable.com/go93wy

This is the game: [Cannons fixed]🌴Battles🌴 - Roblox

1 Like

So when you start in the game can you select two tools?
Scripting Support is fore script problem so If you have a script to show us it would help us to help you.

Maybe a couple of days ago you didnt have players to report them?

This is actually a bug in the roblox engine. This should be in #platform-feedback:engine-bugs

1 Like

Here’s a script that should be able to fix the issue:

local P = game:GetService('Players')
local p = P.LocalPlayer
p.CharacterAdded:connect(function(c)
	local inv = p:WaitForChild('Backpack')
	local died
	local added = c.ChildAdded:connect(function(o)
		if o:IsA('Tool') then
			wait()
			for _,v in pairs(c:GetChildren()) do
				if v:IsA('Tool') and v ~= o then
					v.Parent = inv
				end
			end
		end
	end)
	died = c:WaitForChild('Humanoid').Died:connect(function()
		died:Disconnect()
		added:Disconnect()
	end)
end)

Put it in a LocalScript inside StarterPlayer > StarterPlayerScripts.

1 Like

I’m aware… Just not allowed to post there.

1 Like

Could this be occurring simply because of lag?