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