Advertisement
DANIL_ron

lift sim script (auto update)

Oct 17th, 2020 (edited)
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.12 KB | None | 0 0
  1. -- Tytytyyt
  2. -- Version: 5.1!
  3. -- by ???
  4. --Update log 5.1:
  5. --anti cheat bypassed
  6.  
  7. -- Instances:
  8.  
  9. local ScreenGui1 = Instance.new("ScreenGui")
  10. local frame = Instance.new("Frame")
  11. local Autoliftt = Instance.new("TextButton")
  12. local autosell = Instance.new("TextButton")
  13. local shop = Instance.new("TextButton")
  14. local sellmusclee = Instance.new("TextButton")
  15.  
  16. --Properties:
  17.  
  18. ScreenGui1.Parent = game.CoreGui
  19. frame.Name = "frame"
  20. frame.Parent = ScreenGui1
  21. frame.BackgroundColor3 = Color3.fromRGB(255, 143, 7)
  22. frame.BorderColor3 = Color3.fromRGB(255, 143, 7)
  23. frame.Position = UDim2.new(0.388794571, 0, 0.362407833, 0)
  24. frame.Size = UDim2.new(0, 329, 0, 165)
  25. frame.Active = true
  26. frame.Draggable = true
  27.  
  28. Autoliftt.Name = "Autoliftt"
  29. Autoliftt.Parent = frame
  30. Autoliftt.BackgroundColor3 = Color3.fromRGB(255, 247, 0)
  31. Autoliftt.BorderColor3 = Color3.fromRGB(255, 247, 0)
  32. Autoliftt.Position = UDim2.new(0.0334346518, 0, 0.0666666701, 0)
  33. Autoliftt.Size = UDim2.new(0, 103, 0, 43)
  34. Autoliftt.Font = Enum.Font.SciFi
  35. Autoliftt.Text = "AutoLift"
  36. Autoliftt.TextColor3 = Color3.fromRGB(2, 250, 254)
  37. Autoliftt.TextSize = 24.000
  38. Autoliftt.MouseButton1Down:connect(function()
  39. _G.Lift = true
  40.  
  41. while _G.Lift do
  42. wait(0.47)
  43. local table_1 = {
  44. [1] = 'GainMuscle'
  45. };
  46. local Target = game:GetService("ReplicatedStorage").RemoteEvent;
  47. Target:FireServer(table_1);
  48. end
  49. end)
  50.  
  51. autosell.Name = "autosell"
  52. autosell.Parent = frame
  53. autosell.BackgroundColor3 = Color3.fromRGB(255, 247, 0)
  54. autosell.BorderColor3 = Color3.fromRGB(255, 247, 53)
  55. autosell.Position = UDim2.new(0.0334346518, 0, 0.375757575, 0)
  56. autosell.Size = UDim2.new(0, 103, 0, 43)
  57. autosell.Font = Enum.Font.SciFi
  58. autosell.Text = "AutoSell"
  59. autosell.TextColor3 = Color3.fromRGB(2, 250, 254)
  60. autosell.TextSize = 24.000
  61. autosell.MouseButton1Down:connect(function()
  62. _G.Sale = true
  63.  
  64. while _G.Sale do
  65. wait()
  66. local table_1 = {
  67. [1] = 'SellMuscle'
  68. };
  69. local Target = game:GetService("ReplicatedStorage").RemoteEvent;
  70. Target:FireServer(table_1);
  71. end
  72. end)
  73.  
  74. shop.Name = "shop"
  75. shop.Parent = frame
  76. shop.BackgroundColor3 = Color3.fromRGB(255, 247, 0)
  77. shop.BorderColor3 = Color3.fromRGB(255, 247, 53)
  78. shop.Position = UDim2.new(0.0334346518, 0, 0.678787887, 0)
  79. shop.Size = UDim2.new(0, 103, 0, 43)
  80. shop.Font = Enum.Font.SciFi
  81. shop.Text = "Shop"
  82. shop.TextColor3 = Color3.fromRGB(2, 250, 254)
  83. shop.TextSize = 24.000
  84. shop.MouseButton1Down:connect(function()
  85. game:GetService("Players").LocalPlayer.PlayerGui["Main_Gui"]["UpgradeMenu_Frame"].Visible = 1
  86. end)
  87.  
  88. sellmusclee.Name = "sellmusclee"
  89. sellmusclee.Parent = frame
  90. sellmusclee.BackgroundColor3 = Color3.fromRGB(255, 247, 0)
  91. sellmusclee.BorderColor3 = Color3.fromRGB(255, 247, 0)
  92. sellmusclee.Position = UDim2.new(0.389057755, 0, 0.0666666701, 0)
  93. sellmusclee.Size = UDim2.new(0, 103, 0, 43)
  94. sellmusclee.Font = Enum.Font.SciFi
  95. sellmusclee.Text = "SellPower"
  96. sellmusclee.TextColor3 = Color3.fromRGB(2, 250, 254)
  97. sellmusclee.TextSize = 24.000
  98. sellmusclee.MouseButton1Down:connect(function()
  99.         local table_1 = {
  100.             [1] = 'SellMuscle'
  101.         };
  102.         local Target = game:GetService("ReplicatedStorage").RemoteEvent;
  103.         Target:FireServer(table_1);
  104.     end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement