19.1K views
10.2K downloads
1 year ago
This new script for Type Race allows you to quickly type in all the letters. It might be a lil buggy sometimes tho, either wait for it to continue or put one letter in manually so it gets unstuck again!
Script Features:
Auto Type
This script has remained unmodified since its initial release
--BROUGHT TO YOU BY RSCRIPTS.NET!--
_G.wpmlimit = 150 -- Max WPM you can hit, will start stuttering at this limit
_G.keydelay = 0.075 -- Delay between keys to seem more legit. 0.075 ~ 144wpm
local vim = game:GetService("VirtualInputManager") -- I specifically did this bc keypress used only VK bytecodes
-- Interpreting straight letter to VIM seems to be faster than using VK, and it works without needing game focus
---- vvvvv I DID NOT MAKE ANYTHING IN THIS SECTION vvvvv ----
local function findLetterTable()
for i,obj in pairs( getgc() ) do
if type(obj) == "function" and getfenv(obj).script == game:GetService("Players").LocalPlayer.PlayerGui.LocalMain then
local consts=debug.getconstants(obj)
if consts[8]=="idXTO3JVlV0CBTmiSbaQ" then
--local tab=debug.getupvalue(obj,4)
return debug.getupvalue(obj,4) -- FULL CREDIT TO IDoN0t ON V3RM FOR THIS THING [showthread.php?tid=1140292]
end end end end -- I have no idea what's going on in this thing, other than just raw letters come out of it
---- ^^^^^ I DID NOT MAKE ANYTHING IN THIS SECTION ^^^^^ ----
local descendants = findLetterTable()
for index, descendant in pairs(descendants) do
if string.upper(descendant) ~= " " then -- Remnant of an old method of getting letters
local key = Enum.KeyCode[string.upper(descendant)]
vim:SendKeyEvent(1,key,0,nil)
vim:SendKeyEvent(0,key,0,nil)
else
vim:SendKeyEvent(1,32,0,nil) -- This is how I used to interpret spaces safely
vim:SendKeyEvent(0,32,0,nil) -- It's crusty, but it works
end
while tonumber(game.Players.LocalPlayer.PlayerGui.ScreenGui.Main.RaceScreen.LiveStats.WPM.Stat.Text) > _G.wpmlimit do
task.wait() -- This section hard limits at the set WPM cap. Should this also be keydelay so it's less jittery/stuttery?
end
wait(_G.keydelay)
if game.Workspace:FindFirstChild("Doll") then -- To avoid bugs with non RLGL modes
while game:GetService("SoundService").DollSaying.TimePosition > 5 or game:GetService("SoundService").DollSaying.TimePosition <= 0 do
task.wait() -- I encourage experimenting with the timepos to squeeze the most out of the time you have. 5 is the highest it's reliable at.
end
end
end
Similiar Scripts
Hungry for more? Check out these Roblox Scripts!
16.3K views
1 year ago

Typing Simulator Auto Type
RAINBOW Typing Simulator
RAINBOW Typing Simulator
17.3K views
5 months ago

Race Clicker || Auto Click, Auto Win
Race Clicker
Race Clicker
Key System
18.4K views
5 months ago

Car Dealership Tycoon GUI | Race Auto Farm & MORE
ATV Car Dealership Tycoon
ATV Car Dealership Tycoon
16.1K views
5 months ago
.webp)
Race Clicker Fastest Auto Win & Server Hop
Race Clicker
Race Clicker
Key System
Mobile Friendly
6.1K views
1 month ago

Fly Race Gui OP Auto Farm
Fly Race! [🍀x2 +🎄 EVENT]
Fly Race! [🍀x2 +🎄 EVENT]
0 Comments
Log in here to comment