Tool Default Images: Trying to make default invisible and replace with custom image

  1. I am trying to achieve tool-equip look that’s something like this (example is from Anime Fighting Simulator):

  2. How would I go about making the default box invisible? Here is a default example (taken from Super Power Fighting Simulator)Screen Shot 2020-11-22 at 1.34.32 PM

  3. I am not sure where to start looking for a solution (I looked at the tools themselves, but there is only the image option where you can insert an image ID to be displayed inside the default box), so any pointers would be much appreciated.

Thanks :slight_smile:

The function you’re looking for is StarterGui:SetCoreGuiEnabled, which takes an enum and disables or enables various core Roblox interface options. You can create your own tool equip buttons using Humanoid:EquipTool and Humanoid:UnequipTools and firing them through a RemoteEvent (since Humanoid functions are serverside)

1 Like

Thank you so much for the quick response! I really appreciate it.