When a player in roblox has tools in their starter pack when you click play they show up in an action bar at the bottom of the screen, is there any way to remove this action bar bit still keep the tools?
In a LocalScript in StarterGui use this code:
local startergui = game:GetService("StarterGui") startergui:SetCoreGuiEnabled(Enum.CoreGuiType.BackPack, false)
I think this is what you want.