RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a shift lock whit activation of F"
-- local script local UserInputService = game:GetService("UserInputService") local player = game.Players.LocalPlayer local function onKeyPress(input) if input.KeyCode == Enum.KeyCode.F then player.DevEnableMouseLock = not player.DevEnableMouseLock end end UserInputService.InputBegan:Connect(onKeyPress)