RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"code radial tool gui if you click q it opens the gui"
-- local script local player = game:GetService("Players").LocalPlayer local UserInputService = game:GetService("UserInputService") local radialGui = player.PlayerGui.RadialToolGui local function toggleGui() if radialGui.Enabled then radialGui.Enabled = false else radialGui.Enabled = true end end UserInputService.InputBegan:Connect(function(input, gameProcessedEvent) if input.KeyCode == Enum.KeyCode.Q and not gameProcessedEvent then toggleGui() end end)