Is there a way to know which tool the player currently is "Equipping" without using .Equipped ?
I have tried a lot of things.
I have searched the wiki too, but without any luck
I am not asking for anyone to create a script for me, I just want to know how I would do this.
Any help is greatly appreciated!
You could iterate through the player's character, and find any "Tool" instance. Alternatively, you can use "FindFirstChildOfClass" to find the first "Tool" instance, since you cannot equip multiple tools at once. Note that this will not work for the older "HopperBin" tools.
-- The following is untested code local Player = game.Players.XXXX local Character = Player.Character function GetTool() return Character:FindFirstChildOfClass("Tool") end