Type Race | INSTANT FINISH RACE

MADE BY jaames#9911

FEATURE:

  • INSTANT FINISH RACE (MOST 5 SECOND)
  • AROUND 250 WPM

GAME LINK:
TYPE RACE

SCRIPT:

-- game https://www.roblox.com/games/7232779505/Type-Race
local letters = game.Workspace.Letters:GetChildren()[1]
local keyCodes = {
    ['a'] = 0x41;
    ['b'] = 0x42;
    ['c'] = 0x43;
    ['d'] = 0x44;
    ['e'] = 0x45;
    ['f'] = 0x46;
    ['g'] = 0x47;
    ['h'] = 0x48;
    ['i'] = 0x49;
    ['j'] = 0x4A;
    ['k'] = 0x4B;
    ['l'] = 0x4C;
    ['m'] = 0x4D;
    ['n'] = 0x4E;
    ['o'] = 0x4F;
    ['p'] = 0x50;
    ['q'] = 0x51;
    ['r'] = 0x52;
    ['s'] = 0x53;
    ['t'] = 0x54;
    ['u'] = 0x55;
    ['v'] = 0x56;
    ['w'] = 0x57;
    ['x'] = 0x58;
    ['y'] = 0x59;
    ['z'] = 0x5A;
    [' '] = 0x20;
}
wait(1)
for i = 1, #letters:GetChildren() do
    local _currentLetter = game.Workspace.SelectionBox.Adornee.SurfaceGui.TextLabel.Text
    
    keypress(keyCodes[_currentLetter:lower()])
    keyrelease(keyCodes[_currentLetter:lower()])
    wait(0.00001)
    print('pressed', keyCodes[_currentLetter:lower()])
end


⚠️ Warning: Do not download any extensions or anything other than .txt/.lua file, because script will download only in .txt/.lua format or It will redirect you to a pastebin link.

📋 Notice: If you find any of the scripts patched or not working, please report it to Forever4D through Discord. The script will be removed or marked as patched!