Scary Spelling
11.3k Views
343 Executions

Auto Type open source

Scary SpellingUploaded by
1 year ago
Please login to perform these actions:

Description

auto type with legit delay settings

View Raw
Edited By: Efial Download


Comments

6
6 comments
Log in to join the conversation. Login
Cappuccino's profile picture
Cappuccino1 year ago(edited)

Some words are wrong. It types some words wrong. For example: philosopher = phiosopher, hydroelectric = hydroeletric.

3
ryannotbrian01's profile picture
ryannotbrian0110 months ago

does it work using xeno

0
miks81001's profile picture
miks8100111 months ago

so it goes faster

0
miks81001's profile picture
miks8100111 months ago

--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] getgenv().settings = { auto_type = true; smart_delay = { enabled = true; delay = {-2, -2}; } }; if (getgenv().execute) then return; end; getgenv().execute = true; -- variables local marketplace_service = game:GetService("MarketplaceService"); local replicated_storage = game:GetService("ReplicatedStorage"); local run_service = game:GetService("RunService"); local players = game:GetService("Players"); local local_player = players.LocalPlayer; -- script variables local vk_codes = {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}; local main_remote = replicated_storage.Events.GameEvent; local current_word; -- functions local remove_number = function(word) return word:gsub("%s?%(%d+%)", ""); -- remove the number * (yes I stole this) end; local random_delay = function(min, max) return min + math.random() * (max - min); end; local get_smart_delay = function() return random_delay(getgenv().settings["smart_delay"]["delay"][1], getgenv().settings["smart_delay"]["delay"][2]) * 0.2; end; local input_word = function(word) task.wait(random_delay(1.4, 2)); print("word inputted", word); for i = 1, #word do local char = word:sub(i, i); local key_code = vk_codes[char:lower()]; keypress(key_code); keyrelease(key_code); if (getgenv().settings["smart_delay"]["enabled"]) then task.wait(get_smart_delay()); end; end; keypress(0x0D); keyrelease(0x0D);

0
6kash's profile picture
6kash1 year ago

use the remote updateAnswer

-2
GoofyAhScript's profile picture
GoofyAhScript1 year ago

Not working on mobile

-1