How would I make a tool Unselectable(you cant take it off) once you equip it?
There's no exact way to do that, unless you make yourself a custom tool using scripts (not the tool instance)
Best I could come up is this:
--localscript in the tool local tool = script.Parent local me = game.Players.LocalPlayer local humanoid = me.Character.Humanoid while wait() do humanoid:EquipTool(tool) end