Advertisement
kingmohamed

wall punch simulator INF

Apr 14th, 2023 (edited)
480
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. function Coin()
  2. while getgenv().Coin == true do
  3. game:GetService("ReplicatedStorage").NL:FireServer(game:GetService("Players").LocalPlayer,100000000000008)
  4. wait(0.2)
  5. end
  6. end
  7.  
  8. function Power()
  9. while getgenv().Power == true do
  10. --[[
  11. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  12. ]]
  13. local args = {
  14. [1] = game:GetService("Players").LocalPlayer,
  15. [2] = 9999999999999 -- u can change the number here
  16. }
  17.  
  18. game:GetService("ReplicatedStorage"):WaitForChild("GP"):FireServer(unpack(args))
  19.  
  20. wait(0.2)
  21. end
  22. end
  23.  
  24. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/mohamedyoo/owlhub/main/New%20ui"))()
  25. local Window = Library.CreateLib("Wall Punch Simulator", "DarkTheme")
  26.  
  27. local Main = Window:NewTab("Main")
  28. local Section = Main:NewSection("INF")
  29.  
  30. Section:NewToggle("Inf Coin", "Make your player auto click", function(state)
  31. getgenv().Coin = state
  32. if state then
  33. Coin()
  34. end
  35. end)
  36.  
  37. Section:NewToggle("Inf Power", "Make your player auto click", function(state)
  38. getgenv().Power = state
  39. if state then
  40. Power()
  41. end
  42. end)
  43.  
  44.  
  45.  
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement