Longest Answer Wins AUTO PLAYER SCRIPT

Created by LordOfDarkness

Features:

  • AUTOPLAYER
local ReplicatedStorage = game:GetService("ReplicatedStorage")

local hintAnswer = ReplicatedStorage.HintAnswer
local submitAnswer = ReplicatedStorage.SubmittedAnswer

local function answerQuestion()
   local correctAnswer = hintAnswer.Value
   local answerLength = #correctAnswer
   
   task.wait(math.random(20, 30) / 10 + answerLength / 5) -- 2 - 3s of "thinking", typing speed at 5 cps (average)
   
   submitAnswer:FireServer(correctAnswer, answerLength)
end

answerQuestion()

hintAnswer:GetPropertyChangedSignal("Value"):Connect(answerQuestion)

⚠️ Warning: Do not download any extensions or any executable files, you're just here for the script!

✔️ Any Patched/Broken Script Can Be Reported To French Dog#6704 In Discord For Removal