Advertisement
jjsnappy

Strongman Simulator

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