RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Hide Roblox default backpack when text button is pressed"
-- local script local textButton = script.Parent local function hideBackpack() local player = game.Players.LocalPlayer local backpack = player.PlayerGui:FindFirstChild("Backpack") if backpack then backpack.Enabled = not backpack.Enabled end end textButton.MouseButton1Click:Connect(hideBackpack)