What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Show Answers

Version / Update: v1.0.0
Download / Script Link
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)
[ View More ]
ac9b22a3-9c40-4acb-aedb-33c14dd90446.webp


This script shows the answer to the question (no gui)
 
Works on mobile
  1. Yes
Back
Top