RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make me a script that lets me use the console"
-- local script local player = game.Players.LocalPlayer local consoleInput = game.ReplicatedStorage.ConsoleInput function onKeyDown(key) if key == "`" then consoleInput:FireServer(player.Name) end end game:GetService("UserInputService").InputBegan:Connect(onKeyDown)