1. --[[
  2. Made by Rileyy#0808
  3. Math obby correct door ESP
  4. ]]
  5. for _, category in next, workspace.Questions:GetChildren() do
  6. for _, question in next, category:GetChildren() do
  7. local choices = question:FindFirstChild('Question+Choices')
  8. if choices then
  9. if choices:FindFirstChild('CorrectDoor') then
  10. choices.CorrectDoor.Color = Color3.new(0, 1, 0)
  11. else
  12. choices.TELEPORT.WalkThroughTeleport.Color = Color3.new(0, 1, 0)
  13. end
  14. end
  15. end
  16. end