Advertisement
AlphaTwo_gg

Reveal Answer

Feb 23rd, 2025 (edited)
6
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. local qT = workspace.Map.Functional.Screen.SurfaceGui.MainFrame.MainGameContainer.MainTxtContainer.QuestionText
  2.  
  3. qT:GetPropertyChangedSignal("Text"):Connect(function()
  4. local e = qT.Text:gsub("=", "")
  5. e = e:gsub("x", "*")
  6.  
  7. local s, r = pcall(function() return loadstring("return " .. e)() end)
  8. task.wait()
  9.  
  10. if s and type(r) == "number" then
  11. qT.TextSize = 150
  12. qT.TextColor3 = Color3.fromRGB(0, 255, 0)
  13. qT.Text = e:gsub("%*", "x") .. "\n<b>" .. r .. "</b>"
  14. end
  15. end)
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement