--[[ How to Use: 1 - Go to a training area that you need to press a key from keyboard 2 - execute the script and if doesnt click the first time then click on the correct key and it will go auto --]] -- Not tested 100% bc i dont have points lol _G.Click = true local vim = game:GetService("VirtualInputManager") function pressKey(key) print("Key:", key) vim:SendKeyEvent(true, key, false, game) repeat wait() until game:GetService("Players").LocalPlayer.PlayerGui.TRAINING.Random.Key.TextLabel.Text ~= key vim:SendKeyEvent(false, key, false, game) end while _G.Click == true do wait() local text = game:GetService("Players").LocalPlayer.PlayerGui.TRAINING.Random.Key.TextLabel.Text if text == "W" or text == "S" or text == "D" or text == "A" or text == "K" or text == "J" or text == "N" or text == "M" then pressKey(text) end end