1. local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))()
  2. local UI = Material.Load({
  3. Title = "The Lift hax",
  4. Style = 1,
  5. SizeX = 400,
  6. SizeY = 300,
  7. Theme = "Dark",
  8. ColorOverrides = {
  9. MainFrame = Color3.fromRGB(250, 10, 70)
  10. }
  11. })
  12. local Page = UI.New({
  13. Title = "UI"
  14. })
  15. Page.Button({
  16. Text = "pushups",
  17. Callback = function()
  18. _G.Loopname = true
  19. while _G.Loopname do
  20. wait(0.02)
  21. local args = {
  22. [1] = "PushUp" }
  23. game:GetService("Players").LocalPlayer.RemoteEvent:FireServer(unpack(args))
  24. end
  25. end
  26. })
  27. Page.Button({
  28. Text = "stop pushups",
  29. Callback = function()
  30. _G.Loopname = false
  31. while _G.Loopname do
  32. wait(0.02)
  33. local args = {
  34. [1] = "PushUp"
  35. }
  36. game:GetService("Players").LocalPlayer.RemoteEvent:FireServer(unpack(args))
  37. end
  38. end
  39. })