loadstring(game:HttpGet("https://raw.githubusercontent.com/ShadowXScript/Shadow-Hub/refs/heads/main/BasketballZeroScript.lua"))() task.wait() local discordGui = game:GetService("CoreGui"):WaitForChild("Discord") local toggleProp = discordGui:IsA("ScreenGui") and "Enabled" local isOn = discordGui[toggleProp] game:GetService("UserInputService").InputBegan:Connect(function(input, gameProcessed) if not gameProcessed and input.UserInputType == Enum.UserInputType.Keyboard then if input.KeyCode == Enum.KeyCode.RightShift then isOn = not isOn discordGui[toggleProp] = isOn end end end)