iOSdeveloper

Untitled

Dec 15th, 2024
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 KB | None | 0 0
  1. — script is open source pls give credit By Arbix ( TOUKA)
  2. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
  3.  
  4. -- Window or baseplate Make tab or section
  5. local Window = Library:NewWindow("Arbix Hub | Nam piece2")
  6.  
  7. -- Section - Section Useful you don't want ok?
  8. local Section = Window:NewSection("Beli (money)")
  9.  
  10. -- Button Add Scripts in it
  11. Section:CreateButton("Get inf money", function()
  12. print("Get inf money button pressed")
  13. local args = {
  14. [1] = "Buy",
  15. [2] = "wait",
  16. [3] = -9e9
  17. }
  18. game:GetService("ReplicatedStorage").Shop:FireServer(unpack(args))
  19. end)
  20.  
  21. -- TextBox You can make keysystem
  22. Section:CreateTextbox("money giver", function(text)
  23. local numberValue = tonumber(text) -- Convert input to number
  24. if numberValue then
  25. local args = {
  26. [1] = "Buy",
  27. [2] = "wait",
  28. [3] = -numberValue
  29. }
  30. game:GetService("ReplicatedStorage").Shop:FireServer(unpack(args))
  31. else
  32. print("Invalid input: Please enter a number.")
  33. end
  34. end)
  35.  
  36. local Section = Window:NewSection("Fruits")
  37.  
  38. Section:CreateButton("Get Legendary Fruits", function()
  39. print("Get Legendary Fruits button pressed")
  40. local args = {
  41. [1] = "Legendary"
  42. }
  43. game:GetService("Players").LocalPlayer.PlayerGui.SpinGui.LOL.Spin.Spin.Reward:FireServer(unpack(args))
  44. end)
  45.  
  46. Section:CreateTextbox("Eat any fruit", function(text)
  47. local fruit = workspace:FindFirstChild(text)
  48. if fruit and fruit:FindFirstChild("EatScript") and fruit.EatScript:FindFirstChild("Eat") then
  49. fruit.EatScript.Eat:FireServer()
  50. else
  51. print("Fruit not found or invalid structure.")
  52. end
  53. end)
  54.  
  55. local Section = Window:NewSection("Op skills")
  56.  
  57. Section:CreateButton("I am atomic", function()
  58. print("I am atomic button pressed")
  59. game:GetService("ReplicatedStorage").AtomicFolder.Event:FireServer()
  60. end)
  61.  
  62. Section:CreateButton("dark blade skill 1 (not works)", function()
  63. local darkblade = workspace:FindFirstChild("popcatc") and workspace.popcatc:FindFirstChild("darkblade")
  64. if darkblade and darkblade:FindFirstChild("magmahound") and darkblade.magmahound:FindFirstChild("fire") then
  65. darkblade.magmahound.fire:FireServer()
  66. else
  67. print("Dark blade skill 1 not found or invalid structure.")
  68. end
  69. end)
  70.  
  71. Section:CreateButton("dark blade skill 2 (not works)", function()
  72. local darkblade = workspace:FindFirstChild("popcatc") and workspace.popcatc:FindFirstChild("darkblade")
  73. if darkblade and darkblade:FindFirstChild("eee") and darkblade.eee:FindFirstChild("fire") then
  74. darkblade.eee.fire:FireServer()
  75. else
  76. print("Dark blade skill 2 not found or invalid structure.")
  77. end
  78. end)
Advertisement
Add Comment
Please, Sign In to add comment