Verity Companion Auto quest reference
Companion dialogue triggers and repeatability — read it as study material, never run against the live Roblox client.
What the auto quest pattern teaches
The auto quest reference documents the dialogue trigger order that Verity Companion uses for repeatable side-quests. Studying the pattern helps you understand why some quests reset on a timer while others require a fresh server. The code below is formatted as Luau pseudocode; it is meant to be read, not executed against the live Roblox client.
Reference snippet
-- Verity Companion — repeat side quest reference
local companion = workspace.Companion
local questFlag = player.QuestFlags["ROOM_3_LANTERN"]
if questFlag and companion.HasItem("lantern_clue") then
companion:Dialogue("Sidequest_Reset")
questFlag.Value = false
end
Why this pattern matters
The companion listens for the ROOM_3_LANTERN flag and only triggers the side-quest reset dialogue when the lantern clue has already been collected. Understanding the condition lets you plan a legitimate grind path. The how to progress fast guide turns this knowledge into a real Roblox session plan that does not require executables.
Variables to recognise
companion.HasItem— checks the companion inventory for a clue object.questFlag— a BoolValue stored on the player; resets each save.Dialogue— a server remote the companion uses to surface dialogue lines.companion.Personality— a string attribute on the AI entity, picked at lobby.player:GetAttribute("CurrentRoom")— the room identifier the player is currently in.workspace:GetAttribute("TimeSinceLastJumpscare")— seconds since the last scripted jumpscare fired.
Pair the variables with the Tier List hub so you know which companions respond to each trigger most reliably. The Empath and Skeptic personalities are the most reliable triggers for the repeatable sidequest.
Pattern re-use across rooms
The auto-quest reference is reusable across every room. The companion listens for a flag, validates an inventory item, then surfaces a dialogue reset. The same pattern appears in Room 4 (mirror dialogue), Room 5 (chair probe), and the bonus room (Loki ending). Studying the pattern teaches you how every room gates its progression.
Logging and instrumentation
The reference prints to the server log when a quest resets. In Roblox Studio you can attach print statements to confirm the dialogue trigger order. Pair the instrumentation with the how to use the AI companion guide so you can validate the trigger in your own builds.
Pair the pattern with codes
The PUZZLEPIECE code from the Codes hub unlocks the lantern clue early. With the clue pre-collected, the repeatable sidequest prompt fires as soon as you enter Room 3, shaving minutes off your first completion time. The how to progress fast guide uses the same idea for the grind loop.
Safety reminder
Roblox’s Terms of Use forbid injecting external code into the live client. Use the pattern in offline study or in your own Roblox Studio project — never as an executable against Verity Companion. The Official Links hub lists the legitimate channels for getting help with the game.
Related references
- Companion AI dialogue map — visualises the dialogue tree.
- Infinite coins reference — explains why ‘infinite’ Robux scripts are scams.
- How to use the AI companion — practical guide for in-game decisions.
Frequently Asked Questions
Quick answers to the most common questions.
Can I run this script in the live client?
No. Roblox's Terms of Use prohibit third-party executables. The script is reference material only — read the safety reminder at the top of every Scripts hub page.
Does the script need a specific companion?
The pattern works with every companion but triggers fastest with the personalities ranked in the Tier List hub.
Why does the side-quest reset?
The reset flag is tied to your save slot. The how to progress fast guide explains how to leverage the timer without losing progress.
What happens if I edit the script?
Treat edits as a study exercise in Roblox Studio. The Updates hub logs every patch that changed the underlying remote events.
Are there other repeatable references?
Yes — the AI dialogue map documents the companion variable logic, and the infinite coins reference shows why free Robux scripts never work. Together they cover the three patterns every community developer should study.