Basically, I want to make it so a player can not deselect a tool (Or a UMP45) I tried just making it requip every second but it just glitched the gun and make sounds not happen,
Thanks for reading and helping! James Bread
If you don't need the user to be able to select anything else, then you could always remove the action bar at the bottom completely
in a local script
local startergui = game:GetService("StarterGui") startergui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
local tool = game.ReplicatedStorage:WaitForChild("Tool") game.Players.PlayerAdded:Connect(function(plr) local playertool = tool:Clone() playertool.Parent = game.Workspace(player.Name).Character end)
Also use the script that 123marble showed you so they can't unequip it.