Advertisement
VenoxComeback

RAYFIELD TESTTTT

Mar 7th, 2025 (edited)
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Consistt/Ui/main/UnLeaked"))()
  2.  
  3. library.rank = "Buyer"
  4. local Wm = library:Watermark("ZeroHub | Z" .. library.version .. " | " .. library:GetUsername() .. " | rank: " .. library.rank)
  5. local FpsWm = Wm:AddWatermark("fps: " .. library.fps)
  6. coroutine.wrap(function()
  7. while wait(.75) do
  8. FpsWm:Text("fps: " .. library.fps)
  9. end
  10. end)()
  11.  
  12. local Notif = library:InitNotifications()
  13.  
  14. local LoadingXSX = Notif:Notify("Loading Zero Hub, please be patient.", 5, "information")
  15.  
  16. library.title = "ZeroHub"
  17.  
  18. library:Introduction()
  19. wait(1)
  20. local Init = library:Init()
  21.  
  22. local Tab1 = Init:NewTab("Main")
  23.  
  24. -- Create Fly Button
  25. local FlyButton = Tab1:NewButton("Fly", function()
  26. -- Execute the loadstring for flying functionality
  27. loadstring(game:HttpGet("https://pastebin.com/raw/5bx8f7Fx"))()
  28. end)
  29.  
  30. -- Create Day Button
  31. local DayButton = Tab1:NewButton("Day", function()
  32. -- Execute the loadstring for Day functionality
  33. loadstring(game:HttpGet("https://pastebin.com/raw/PCijEXet"))()
  34. end)
  35.  
  36. -- Create Noclip Button
  37. local NoClipButton = Tab1:NewButton("Noclip", function()
  38. -- Execute the loadstring for Noclip functionality
  39. loadstring(game:HttpGet("https://pastebin.com/raw/j5bVdYUR"))()
  40. end)
  41.  
  42. local Tab1 = Init:NewTab("AutoFarm")
  43.  
  44. -- Create AutoFarm Toggle
  45. local AutofarmToggle = Tab1:NewToggle("Bin Job", false, function(state)
  46. local autofarmScript = loadstring(game:HttpGet("https://pastebin.com/raw/ahvh2j2q"))() -- Load the script
  47.  
  48. if state then
  49. -- Executes the autofarm when toggled on
  50. autofarmScript.startAutofarm()
  51. else
  52. -- Stops the autofarm when toggled off
  53. autofarmScript.stopAutofarm()
  54. end
  55. end)
  56.  
  57.  
  58.  
  59. local FinishedLoading = Notif:Notify("Loaded ZeroHub V1", 4, "success")
  60.  
  61. -- // FUNCTION DOCS:
  62. --[[ The rest of your documentation remains unchanged. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement