local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))() local UI = Material.Load({ Title = "The Lift hax", Style = 1, SizeX = 400, SizeY = 300, Theme = "Dark", ColorOverrides = { MainFrame = Color3.fromRGB(250, 10, 70) } }) local Page = UI.New({ Title = "UI" }) Page.Button({ Text = "pushups", Callback = function() _G.Loopname = true while _G.Loopname do wait(0.02) local args = { [1] = "PushUp" } game:GetService("Players").LocalPlayer.RemoteEvent:FireServer(unpack(args)) end end }) Page.Button({ Text = "stop pushups", Callback = function() _G.Loopname = false while _G.Loopname do wait(0.02) local args = { [1] = "PushUp" } game:GetService("Players").LocalPlayer.RemoteEvent:FireServer(unpack(args)) end end })