Advertisement
Daniel8cz

Strongman Simulator Scripts

Aug 24th, 2021 (edited)
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.10 KB | None | 0 0
  1. loadstring(game:HttpGet(('https://pastebin.com/raw/2qquMirv')))()
  2. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/Maxgat5/UiLib/main/lua')))()
  3. local w = library:CreateWindow("Strongman Simulator")
  4. local b = w:CreateFolder("AutoFarm")
  5. local f = w:CreateFolder("AutoBuy")
  6. local e = w:CreateFolder("Mix")
  7. local u = w:CreateFolder("Credits")
  8. SelectedItem = "Feather"
  9. Items = {}
  10. for i,v in pairs(game:GetService("Workspace").Areas:GetDescendants()) do
  11.     if v.Name == "DraggableItems" then
  12.         for i,v1 in pairs(v:GetChildren()) do
  13.             if v1.ClassName == "MeshPart" or v1.ClassName == "Part" then
  14.                 table.insert(Items,v1.Title.Value)
  15.             end
  16.         end
  17.     end
  18. end
  19.  
  20. b:Toggle("Squats",function(bool)
  21.     shared.toggle = bool
  22.     Squats = bool
  23. end)
  24.  
  25. b:Dropdown("Select Item",Items,true,function(mob)
  26.     SelectedItem = mob
  27. end)
  28.  
  29. b:Toggle("AutoTakeItem",function(bool)
  30.     shared.toggle = bool
  31.     AutoTakeItem = bool
  32. end)
  33.  
  34. b:Toggle("AutoFinish",function(bool)
  35.     shared.toggle = bool
  36.     AutoFinish = bool
  37. end)
  38.  
  39. f:Toggle("Rebirths",function(bool)
  40.     shared.toggle = bool
  41.     Rebirths = bool
  42. end)
  43.  
  44. e:Toggle("AntiAfk",function(bool)
  45.     shared.toggle = bool
  46.     AntiAfk = bool
  47. end)
  48.  
  49. e:Button("Delete Doors",function()
  50.     for i,v in pairs(game:GetService("Workspace").Areas:GetDescendants()) do
  51.         if string.find(v.Name,"Exit") then
  52.             v:Destroy()
  53.         end
  54.     end
  55. end)
  56.  
  57. e:Button("Speed",function()
  58.     pcall(function()
  59.         while wait() do
  60.             game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = 50
  61.         end
  62.     end)
  63. end)
  64.  
  65. e:Button("Be Smaller",function()
  66.     while wait() do
  67.         pcall(function()
  68.             for i,v in pairs(game:GetService("Workspace")[game.Players.LocalPlayer.Name].Humanoid:GetChildren()) do
  69.                 if v.ClassName == "NumberValue" then
  70.                     v.Value = 0.5
  71.                 end
  72.             end
  73.         end)
  74.     end
  75. end)
  76. --Credits
  77. u:Button("maxgat5#8395",function()
  78.     setclipboard("maxgat5#8395")
  79. end)
  80.  
  81. u:Button("Discord Server",function()
  82.     setclipboard("https://discord.gg/K4txdRSVfq")
  83. end)
  84.  
  85. while wait() do
  86.     if AutoTakeItem == true then
  87.         local a,b = pcall(function()
  88.             for i,v in pairs(game:GetService("Workspace").Areas:GetDescendants()) do
  89.                 if v.Name == "ProximityPrompt" then
  90.                     if v.Parent.Parent.Parent.Name == "DraggableItems" then
  91.                         if v.Parent.Parent.Title.Value == SelectedItem then
  92.                             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Parent.CFrame.Position + Vector3.new(0,0,0))
  93.                             wait(.1)
  94.                             fireproximityprompt(v,0)
  95.                             fireproximityprompt(v,1)
  96.                         end
  97.                     end
  98.                 end
  99.             end
  100.         end)
  101.         print(a,b)
  102.     end
  103.    
  104.     if AutoFinish == true then
  105.         local a,b = pcall(function()
  106.             for i,v in pairs(game:GetService("Workspace").Areas:GetDescendants()) do
  107.                 if v.ClassName == "StringValue" then
  108.                     if v.Value == SelectedItem then
  109.                         if v.Parent.Parent.Name == "DraggableItems" then
  110.                             if v.Parent.Parent.Parent:FindFirstChild("Goal") then
  111.                                 for i,v in pairs(game:GetService("Workspace").PlayerDraggables[game.Players.LocalPlayer.UserId]:GetChildren()) do
  112.                                     for i,v1 in pairs(v:GetDescendants()) do
  113.                                         if v1.ClassName == "Part" then
  114.                                             v1:Destroy()
  115.                                         end
  116.                                     end
  117.                                 end
  118.                                 for i,v1 in pairs(game:GetService("Workspace").PlayerDraggables[game.Players.LocalPlayer.UserId]:GetChildren()) do
  119.                                     if v1.ClassName == "MeshPart" then
  120.                                         v1.CFrame = CFrame.new(v.Parent.Parent.Parent.Goal.CFrame.Position + Vector3.new(0,0,0))
  121.                                     end
  122.                                 end
  123.                             else
  124.                                 if v.Parent.Parent.Parent:FindFirstChild("BlackWhiteTileTexture") then
  125.                                     for i,v in pairs(game:GetService("Workspace").PlayerDraggables[game.Players.LocalPlayer.UserId]:GetChildren()) do
  126.                                         for i,v1 in pairs(v:GetDescendants()) do
  127.                                             if v1.ClassName == "Part" then
  128.                                                 v1:Destroy()
  129.                                             end
  130.                                         end
  131.                                     end
  132.                                     for i,v1 in pairs(game:GetService("Workspace").PlayerDraggables[game.Players.LocalPlayer.UserId]:GetChildren()) do
  133.                                         if v1.ClassName == "MeshPart" then
  134.                                             v1.CFrame = CFrame.new(v.Parent.Parent.Parent.BlackWhiteTileTexture.CFrame.Position + Vector3.new(0,0,0))
  135.                                         end
  136.                                     end
  137.                                 end
  138.                             end
  139.                         end
  140.                     end
  141.                 end
  142.             end
  143.         end)
  144.         print(a,b)
  145.     end
  146.    
  147.     spawn(function()
  148.         if Squats == true then
  149.             game:GetService("ReplicatedStorage").StrongMan_UpgradeStrength:InvokeServer()
  150.         end
  151.     end)
  152.    
  153.     spawn(function()
  154.         if Rebirths == true then
  155.             game:GetService("ReplicatedStorage").StrongMan_Rebirth:FireServer()
  156.         end
  157.     end)
  158.    
  159.     spawn(function()
  160.         if AntiAfk == true then
  161.             local bb=game:service'VirtualUser'
  162.             bb:CaptureController()
  163.             bb:ClickButton2(Vector2.new())
  164.         end
  165.     end)
  166. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement