FurkingBoi

Lifting Simulator

Jul 17th, 2020
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local frame = Instance.new("Frame")
  8. local OneSafeZone = Instance.new("TextButton")
  9. local Autoliftt = Instance.new("TextButton")
  10. local autosell = Instance.new("TextButton")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.CoreGui
  15.  
  16. frame.Name = "frame"
  17. frame.Parent = ScreenGui
  18. frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  19. frame.Position = UDim2.new(0.326148063, 0, 0.29880476, 0)
  20. frame.Size = UDim2.new(0, 371, 0, 188)
  21. frame.Active = true
  22. frame.Draggable = true
  23.  
  24. OneSafeZone.Name = "One Safe Zone"
  25. OneSafeZone.Parent = frame
  26. OneSafeZone.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  27. OneSafeZone.Position = UDim2.new(0.0539083555, 0, 0.0744680762, 0)
  28. OneSafeZone.Size = UDim2.new(0, 154, 0, 50)
  29. OneSafeZone.Font = Enum.Font.GothamBold
  30. OneSafeZone.Text = "One Safe Zone"
  31. OneSafeZone.TextColor3 = Color3.fromRGB(0, 0, 0)
  32. OneSafeZone.TextScaled = true
  33. OneSafeZone.TextSize = 14.000
  34. OneSafeZone.TextWrapped = true
  35. OneSafeZone.MouseButton1Down:connect(function()
  36. local plr = game.Players
  37. local lplr = plr.LocalPlayer
  38. local lchar = lplr.Character
  39. local HRP = lchar.HumanoidRootPart
  40.  
  41. HRP.CFrame = CFrame.new(-100, 100, -10000)
  42.  
  43. local C = Instance.new("Part")
  44. C.Parent = workspace
  45. C.CFrame = CFrame.new(-100, 50, -10000)
  46. C.Size = Vector3.new(1000000, 100, 10000000)
  47. C.Anchored = true
  48. end)
  49.  
  50. Autoliftt.Name = "Auto liftt"
  51. Autoliftt.Parent = frame
  52. Autoliftt.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  53. Autoliftt.Position = UDim2.new(0.560646892, 0, 0.0744680837, 0)
  54. Autoliftt.Size = UDim2.new(0, 141, 0, 50)
  55. Autoliftt.Font = Enum.Font.GothamBold
  56. Autoliftt.Text = "Auto lift"
  57. Autoliftt.TextColor3 = Color3.fromRGB(0, 0, 0)
  58. Autoliftt.TextScaled = true
  59. Autoliftt.TextSize = 14.000
  60. Autoliftt.TextWrapped = true
  61. Autoliftt.MouseButton1Down:connect(function()
  62. _G.Lift = true
  63.  
  64. while _G.Lift do
  65. wait(1.3)
  66. local table_1 = {
  67. [1] = 'GainMuscle'
  68. };
  69. local Target = game:GetService("ReplicatedStorage").RemoteEvent;
  70. Target:FireServer(table_1);
  71. end
  72. end)
  73.  
  74.  
  75. autosell.Name = "auto sell"
  76. autosell.Parent = frame
  77. autosell.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  78. autosell.Position = UDim2.new(0.185983822, 0, 0.462765962, 0)
  79. autosell.Size = UDim2.new(0, 200, 0, 50)
  80. autosell.Font = Enum.Font.GothamBold
  81. autosell.Text = "auto sell"
  82. autosell.TextColor3 = Color3.fromRGB(0, 0, 0)
  83. autosell.TextScaled = true
  84. autosell.TextSize = 14.000
  85. autosell.TextWrapped = true
  86. autosell.MouseButton1Down:connect(function()
  87. _G.Sale = true
  88.  
  89. while _G.Sale do
  90. wait()
  91. local table_1 = {
  92. [1] = 'SellMuscle'
  93. };
  94. local Target = game:GetService("ReplicatedStorage").RemoteEvent;
  95. Target:FireServer(table_1);
  96. end
  97. end)
Add Comment
Please, Sign In to add comment