How would I make a tool constantly equipped, but not show in the toolbar?

How would I go about making a character spawn in with the item equipped, and also not appear in the toolbar? I’m trying to make the character spawn in while holding a box for a new simulator I’m making, and I don’t want them to be able to unequip the box.

1 Like

You can define your player’s humanoid in a serverscript via playeradded event and when they spawn in you use humanoid:EquipTool(yourtool) on the server to make the player equip it.
I’m not sure if you are able to have a tool and for it to not show inside the toolbar unless you make your own inventory system.

tool.Unequipped:Connect(function()
    humanoid:EquipTool(tool)
end)

something like that to make it constantly equipped

1 Like

If you want to disable the toolbar go look at this article-
-To be honest you could make your own system where you don’t have to use tools and instead just have the Player hold the part and then if its a clicker for example you make so when you Click (or whatever you want to do ) it Runs a script that maybe gives you currency or something.(what ever you wanted to do with it)

2 Likes