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.
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.
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.