ADVERTISEMENTREMOVE ADS
Game icon

Show Answers

Math Murder
7 months ago
Script preview thumbnail
Script Preview

Description

This script shows the answer to the question (no gui)

Features:

  • Show Answers

Tested with

ADVERTISEMENTREMOVE ADS
13 Lines • 445 Bytes
Raw
local qT = workspace.Map.Functional.Screen.SurfaceGui.MainFrame.MainGameContainer.MainTxtContainer.QuestionText
qT:GetPropertyChangedSignal("Text"):Connect(function()
local e = qT.Text:gsub("=", "")
e = e:gsub("x", "*")
local s, r = pcall(function() return loadstring("return " .. e)() end)
task.wait()
if s and type(r) == "number" then
qT.Text = e:gsub("%*", "x") .. "= " .. r
end
end)
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS