Advertisement
Skylar12

Walk Punch Simulator Script

Apr 22nd, 2025
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. loadstring(game:HttpGet("https://raw.githubusercontent.com/FlamesIsCool/FlamezHub/refs/heads/main/discordjoin.lua"))()
  2. local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()
  3. local SaveManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/SaveManager.lua"))()
  4. local InterfaceManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/InterfaceManager.lua"))()
  5.  
  6. local Window = Fluent:CreateWindow({
  7. Title = "Wall Punch Simulator " .. Fluent.Version,
  8. SubTitle = "by Flames/Aura",
  9. TabWidth = 160,
  10. Size = UDim2.fromOffset(580, 460),
  11. Acrylic = true,
  12. Theme = "Darker",
  13. MinimizeKey = Enum.KeyCode.LeftControl
  14. })
  15.  
  16. local Tabs = {
  17. Main = Window:AddTab({ Title = "Main", Icon = "home" })
  18. }
  19.  
  20. Tabs.Main:AddButton({
  21. Title = "Infinite Power",
  22. Description = "Grants massive power",
  23. Callback = function()
  24. local player = game:GetService("Players").LocalPlayer
  25. local amount = 100000000000000
  26.  
  27. game:GetService("ReplicatedStorage"):WaitForChild("GP"):FireServer(player, amount)
  28.  
  29. Fluent:Notify({
  30. Title = "Power Granted!",
  31. Content = "You've gained Infinite Power.",
  32. Duration = 5
  33. })
  34. end
  35. })
  36.  
  37. Tabs.Main:AddButton({
  38. Title = "Infinite Money",
  39. Description = "Gives you insane money",
  40. Callback = function()
  41. local player = game:GetService("Players").LocalPlayer
  42. local amount = 100000000000000
  43.  
  44. game:GetService("ReplicatedStorage"):WaitForChild("NL"):FireServer(player, amount)
  45.  
  46. Fluent:Notify({
  47. Title = "Money Granted!",
  48. Content = "You've received Infinite Money.",
  49. Duration = 5
  50. })
  51. end
  52. })
  53.  
  54.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement