Advertisement
Honansik

Roblox Type Race Auto Type Script

Jan 25th, 2022
5,577
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.53 KB | None | 0 0
  1. local sb = workspace.SelectionBox
  2. local vim = game:GetService("VirtualInputManager")
  3. while wait() do
  4.     pcall(function()
  5.         if workspace.SelectionBox.Adornee and workspace.SelectionBox.Adornee ~= workspace.Baseplate then
  6.             local key = (sb.Adornee.SurfaceGui.TextLabel.Text ~= " " and sb.Adornee.SurfaceGui.TextLabel.Text:upper() or "Space")
  7.             vim:SendKeyEvent(true,Enum.KeyCode[key],false,nil)
  8.             wait()
  9.             vim:SendKeyEvent(false,Enum.KeyCode[key],false,nil)
  10.         end
  11.     end)
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement