Advertisement
Guest User

Hydroxide

a guest
Dec 25th, 2019
2,552
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. --[[
  2. ▄████████▄ ▄█▄ ▄█▄
  3. ███ ███ ███ ███
  4. ███ ███ ███ ███
  5. ███ ███ ████▄▄████ ▄███▄▄▄▄███▄
  6. ███ ███ ████▀▀████ ▀███▀▀▀▀███▀
  7. ███ ███ ███ ███
  8. ███ ███ ███ ███
  9. ▀████████▀ ▀█▀ ▀█▀
  10. :::[H:Y:D:R:O:X:I:D:E]:::
  11. -- developed by nrv-ous/hush --
  12.  
  13. Welcome to Hydroxide, the most superior script development
  14. tool as of 10/12/19. Feel free to browse the source code,
  15. and make any changes. Hydroxide utilizes a module structure
  16. for organization and cleanliness, so my apologies if any of
  17. this is a hassle to edit.
  18. ]]--
  19.  
  20. assert(not oh or oh.running, "Hydroxide is already running!")
  21.  
  22. local import = function(toimport)
  23. if type(toimport) == "string" then
  24. return loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/nrv-ous/Hydroxide/master/" .. toimport))()
  25. else
  26. return game:GetObjects("rbxassetid://" .. toimport)[1]
  27. end
  28. end
  29.  
  30. getgenv().oh = {}
  31. oh.gui = import(4055219910)
  32. oh.assets = import(4055228005)
  33. oh.environment = import("environment.lua")
  34. oh.auxiliary = import("auxiliary.lua")
  35.  
  36. import("visuals.lua")
  37. import("remote_spy.lua")
  38. import("upvalue_scanner.lua")
  39.  
  40. oh.initialize()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement