Advertisement
_Thanh_Thy_Cute_

Dragon Blox GUI AUTO TRANSFORM AUTO QUEST COMING SOON!

Aug 18th, 2021
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. local sv = setmetatable({},{
  2. __index = function(self, ind)
  3. if ypcall(function()game:GetService(ind)end) then
  4. return game:GetService(ind)
  5. else
  6. return nil
  7. end
  8. end
  9. })
  10.  
  11. local lib = loadstring(game:HttpGet('https://raw.githubusercontent.com/loglizzy/Elerium-lib/main/lib.lua'))()
  12. local repl = sv.ReplicatedStorage
  13. local a = require(repl.Aero.Shared.GameSettings.ModeData)
  14. a = getupvalue(a,1)
  15.  
  16. local rmt = {}
  17. for i,v in pairs(repl.Aero.AeroRemoteServices:GetDescendants()) do
  18. if v.Parent.Name ~= 'FusionService' then
  19. if v:IsA('RemoteEvent') then
  20. rmt[v.Name] = function(...)v:FireServer(...) end
  21. elseif v:IsA('RemoteFunction') then
  22. rmt[v.Name] = function(...)v:InvokeServer(...) end
  23. end
  24. end
  25. end
  26.  
  27. local w,flags = lib:AddWindow('gay game'),{}
  28. local m = w:AddTab('main')
  29.  
  30. m:AddSwitch('auto transform',function(v)
  31. flags.trans = v
  32. end)
  33. m:Show()
  34.  
  35. while wait() do
  36. if flags.trans then
  37. rmt.Transformation(a:GetBestMode(game.Players.LocalPlayer).Name)
  38. wait(1)
  39. end
  40. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement