Advertisement
jjsnappy

Strongest Punch Simulator

Feb 2nd, 2022
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.36 KB | None | 0 0
  1. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/Maxgat5/UiLib/main/lua')))()
  2. local w = library:CreateWindow("Strongest Punch Simulator")
  3. local b = w:CreateFolder("AutoFarm (Detectable)")
  4. local f = w:CreateFolder("AutoFarm (Undetectable)")
  5. local e = w:CreateFolder("Mix")
  6. local u = w:CreateFolder("Credits")
  7.  
  8. b:Toggle("AutoClicker",function(bool)
  9. shared.toggle = bool
  10. AutoClickerv1 = bool
  11. end)
  12.  
  13. b:Toggle("AutoCollectOrbs",function(bool)
  14. shared.toggle = bool
  15. AutoCollectOrbsv1 = bool
  16. end)
  17.  
  18. b:Toggle("Next Map",function(bool)
  19. shared.toggle = bool
  20. NextMap = bool
  21. end)
  22.  
  23. b:Toggle("Upgrade Pet",function(bool)
  24. shared.toggle = bool
  25. UpgradePet = bool
  26. end)
  27.  
  28. f:Toggle("AutoClicker",function(bool)
  29. shared.toggle = bool
  30. AutoClickerv2 = bool
  31. end)
  32.  
  33. f:Toggle("AutoCollectOrbs",function(bool)
  34. shared.toggle = bool
  35. AutoCollectOrbsv2 = bool
  36. end)
  37.  
  38. e:Toggle("Noclip",function(bool)
  39. shared.toggle = bool
  40. noclip = bool
  41. end)
  42.  
  43. e:Toggle("AntiAfk",function(bool)
  44. shared.toggle = bool
  45. AntiAfk = bool
  46. end)
  47.  
  48. --Credits
  49. u:Label("Youtube Subs: "..getgenv().Subscribers,{
  50. TextSize = 25;
  51. TextColor = Color3.fromRGB(255,255,255);
  52. BgColor = Color3.fromRGB(69,69,69)
  53. })
  54.  
  55. u:Label("Discord Members: "..getgenv().TotalMembers,{
  56. TextSize = 25;
  57. TextColor = Color3.fromRGB(255,255,255);
  58. BgColor = Color3.fromRGB(69,69,69)
  59. })
  60.  
  61. u:Label("Pastebin Views: "..getgenv().TotalPastebinViews,{
  62. TextSize = 25;
  63. TextColor = Color3.fromRGB(255,255,255);
  64. BgColor = Color3.fromRGB(69,69,69)
  65. })
  66.  
  67. u:Button("Discord Server",function()
  68. setclipboard(getgenv().Discord)
  69. end)
  70.  
  71. u:Button("Youtube Channel",function()
  72. setclipboard(getgenv().Youtube)
  73. end)
  74.  
  75. u:Button("Pastebin Page",function()
  76. setclipboard(getgenv().Pastebin)
  77. end)
  78.  
  79. u:Button(getgenv().Username,function()
  80. setclipboard(getgenv().Username)
  81. end)
  82.  
  83. game:GetService('RunService').Stepped:connect(function()
  84. spawn(function()
  85. if AntiAfk == true then
  86. local bb=game:service'VirtualUser'
  87. bb:CaptureController()
  88. bb:ClickButton2(Vector2.new())
  89. end
  90. end)
  91. spawn(function()
  92. if AutoClickerv2 == true then
  93. mouse1press() wait() mouse1release()
  94. end
  95. end)
  96. end)
  97.  
  98. spawn(function()
  99. while wait() do
  100. if UpgradePet == true then
  101. firesignal(game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui["Pet_Frame"]["UpgradePet_Btn"].Activated)
  102. end
  103. end
  104. end)
  105.  
  106. spawn(function()
  107. while wait() do
  108. if NextMap == true then
  109. firesignal(game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui["Menu_Frame"]["MapTeleportation_Frame"]["NextMap_ImgBtn"].Activated)
  110. end
  111. end
  112. end)
  113.  
  114. spawn(function()
  115. while wait(1) do
  116. if noclip == true then
  117. for i=1,10 do
  118. pcall(function()
  119. wait()
  120. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  121. end)
  122. end
  123. end
  124. end
  125. end)
  126.  
  127. spawn(function()
  128. world = ""
  129. allow = true
  130. while wait(math.random(1,3)) do
  131. if AutoCollectOrbsv1 == true then
  132. if allow == true then
  133. allow = false
  134. function ClosestPart()
  135. local dist = math.huge
  136. local target = nil
  137. for i,v in pairs(game:GetService("Workspace").Map.Stages.Boosts:GetDescendants()) do
  138. if v.ClassName == "TouchTransmitter" then
  139. local magnitude = (v.Parent.Position - game:GetService("Players").LocalPlayer.Character.Head.Position).magnitude
  140. if magnitude < dist then
  141. dist = magnitude
  142. target = v.Parent
  143. end
  144. end
  145. end
  146. return target
  147. end
  148. world = ClosestPart().Parent.Parent
  149. function ClosestPart1()
  150. local dist = math.huge
  151. local target = nil
  152. for i,v in pairs(game:GetService("Workspace").Map.Stages.Boosts:GetChildren()) do
  153. if tostring(v.Name) == tostring(world) then
  154. for i,v1 in pairs(v:GetChildren()) do
  155. for i,v2 in pairs(v1:GetChildren()) do
  156. for i,v3 in pairs(v2:GetChildren()) do
  157. if v3.ClassName == "TouchTransmitter" then
  158. if v3.Parent.Transparency ~= 1 then
  159. local magnitude = (v3.Parent.Position - game:GetService("Players").LocalPlayer.Character.Head.Position).magnitude
  160. if magnitude < dist then
  161. dist = magnitude
  162. target = v3.Parent
  163. end
  164. end
  165. end
  166. end
  167. end
  168. end
  169. end
  170. end
  171. return target
  172. end
  173. end
  174. pcall(function()
  175. ClosestPart1().CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,0,0)
  176. end)
  177. else
  178. allow = true
  179. world = ""
  180. end
  181. end
  182. end)
  183.  
  184. spawn(function()
  185. world = ""
  186. allow = true
  187. while wait() do
  188. if AutoCollectOrbsv2 == true then
  189. if allow == true then
  190. allow = false
  191. function ClosestPart()
  192. local dist = math.huge
  193. local target = nil
  194. for i,v in pairs(game:GetService("Workspace").Map.Stages.Boosts:GetDescendants()) do
  195. if v.ClassName == "TouchTransmitter" then
  196. local magnitude = (v.Parent.Position - game:GetService("Players").LocalPlayer.Character.Head.Position).magnitude
  197. if magnitude < dist then
  198. dist = magnitude
  199. target = v.Parent
  200. end
  201. end
  202. end
  203. return target
  204. end
  205. world = ClosestPart().Parent.Parent
  206. function ClosestPart1()
  207. local dist = math.huge
  208. local target = nil
  209. for i,v in pairs(game:GetService("Workspace").Map.Stages.Boosts:GetChildren()) do
  210. if tostring(v.Name) == tostring(world) then
  211. for i,v1 in pairs(v:GetChildren()) do
  212. for i,v2 in pairs(v1:GetChildren()) do
  213. for i,v3 in pairs(v2:GetChildren()) do
  214. if v3.ClassName == "TouchTransmitter" then
  215. if v3.Parent.Transparency ~= 1 then
  216. local magnitude = (v3.Parent.Position - game:GetService("Players").LocalPlayer.Character.Head.Position).magnitude
  217. if magnitude < dist then
  218. dist = magnitude
  219. target = v3.Parent
  220. end
  221. end
  222. end
  223. end
  224. end
  225. end
  226. end
  227. end
  228. return target
  229. end
  230. end
  231. pcall(function()
  232. game.Players.LocalPlayer.Character.Humanoid:MoveTo(ClosestPart1().Position)
  233. end)
  234. else
  235. allow = true
  236. world = ""
  237. end
  238. end
  239. game:GetService('Players').LocalPlayer.Character:WaitForChild("Humanoid").Died:Connect(function()
  240. world = ""
  241. allow = true
  242. while wait() do
  243. if AutoCollectOrbsv2 == true then
  244. if allow == true then
  245. allow = false
  246. function ClosestPart()
  247. local dist = math.huge
  248. local target = nil
  249. for i,v in pairs(game:GetService("Workspace").Map.Stages.Boosts:GetDescendants()) do
  250. if v.ClassName == "TouchTransmitter" then
  251. local magnitude = (v.Parent.Position - game:GetService("Players").LocalPlayer.Character.Head.Position).magnitude
  252. if magnitude < dist then
  253. dist = magnitude
  254. target = v.Parent
  255. end
  256. end
  257. end
  258. return target
  259. end
  260. world = ClosestPart().Parent.Parent
  261. function ClosestPart1()
  262. local dist = math.huge
  263. local target = nil
  264. for i,v in pairs(game:GetService("Workspace").Map.Stages.Boosts:GetChildren()) do
  265. if tostring(v.Name) == tostring(world) then
  266. for i,v1 in pairs(v:GetChildren()) do
  267. for i,v2 in pairs(v1:GetChildren()) do
  268. for i,v3 in pairs(v2:GetChildren()) do
  269. if v3.ClassName == "TouchTransmitter" then
  270. if v3.Parent.Transparency ~= 1 then
  271. local magnitude = (v3.Parent.Position - game:GetService("Players").LocalPlayer.Character.Head.Position).magnitude
  272. if magnitude < dist then
  273. dist = magnitude
  274. target = v3.Parent
  275. end
  276. end
  277. end
  278. end
  279. end
  280. end
  281. end
  282. end
  283. return target
  284. end
  285. end
  286. pcall(function()
  287. game.Players.LocalPlayer.Character.Humanoid:MoveTo(ClosestPart1().Position)
  288. end)
  289. else
  290. allow = true
  291. world = ""
  292. end
  293. end
  294. end)
  295. end)
  296.  
  297. while wait() do
  298. if AutoClickerv1 == true then
  299. game:GetService("ReplicatedStorage").RemoteEvent:FireServer({"Activate_Punch"})
  300. end
  301. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement