Ezpi Math Wall Simulator Script
Script
--// UI Library \\-- local File = writefile and readfile or false local Library = false Success, Library = pcall(function() return readfile("uwuware UI.lua") end) if Success == false then Library = game:HttpGet('https://raw.githubusercontent.com/Just-Egg-Salad/roblox-scripts/main/uwuware') if File then writefile("uwuware UI.lua", Library) end end Library = loadstring(Library)() local Window = Library:CreateWindow("Math? by Ezpi") Window:AddToggle({ text = "Loop TP", flag = "Loop", callback = function() local Egg = game:GetService("Workspace").Map.SpecialParts.Finishes["Class 20"] local P = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart while Library.flags.Loop do for i = 1, 2 do P.CFrame = Egg.CFrame * CFrame.new(0, 0, i * 3) task.wait(0.1) end end end }) Library:Init()