Pastefi mark
Untitled
/eb1398e7
Paste view
NONE PUBLIC 19 views
eb1398e7
2026-03-30 13:32:10
local UserInputService = game:GetService("UserInputService")

UserInputService.InputBegan:Connect(function(input, procesado)
    if procesado then return end
    
    if input.KeyCode == Enum.KeyCode.K then
        if keypress then
            -- 1. Presiona ESC (0x1B)
            keypress(0x1B)
            task.wait() -- Espera solo 1 fotograma
            keyrelease(0x1B)
            
            task.wait()
            
            -- 2. Presiona L (0x4C)
            keypress(0x4C)
            task.wait()
            keyrelease(0x4C)
            
            task.wait()
            
            -- 3. Presiona ENTER (0x0D)
            keypress(0x0D)
            task.wait()
            keyrelease(0x0D)
        else
            game.Players.LocalPlayer:Kick("")
        end
    end
end)

Comments (0)

Log in to leave a comment.

No comments yet.