Legend_Dev

Gui

Sep 19th, 2019
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.11 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/7Z6TzFnv", true))()
  2. local example = library:CreateWindow({
  3.   text = "Config:"
  4. })
  5.  
  6. local Orbs = library:CreateWindow({
  7.   text = "Infinite:"
  8. })
  9.  
  10. local credits = library:CreateWindow({text='Credits:'})
  11. credits:AddLabel("Credits\nLegend: UI and scripting\nZeroTwo: Idea UI\n")
  12.  
  13. example:AddToggle("Walk Speed", function(state)
  14.   game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = (state and 100 or 16)
  15. end)
  16.  
  17. example:AddButton("God", function()
  18.   while true do
  19.       game.ReplicatedStorage.DamageEvent:FireServer(game.Players.LocalPlayer.Character.Humanoid, -math.huge)
  20.       wait()
  21.    end
  22. end)
  23. example:AddToggle("Super Jump", function(state)
  24.   game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = (state and 100 or 50)
  25. end)
  26.  
  27.  
  28. example:AddButton("Loop kill mobs", function()
  29.   while wait() do
  30. for i,v in pairs(workspace:children()) do
  31. if v:findFirstChildOfClass("Humanoid") and v:findFirstChild("Head") and not game.Players:GetPlayerFromCharacter(v) then
  32. game.ReplicatedStorage.DamageEvent:FireServer(v:findFirstChildOfClass("Humanoid"), v:findFirstChildOfClass("Humanoid").Health)
  33. end
  34. end
  35. end
  36. end)
  37.  
  38. example:AddButton("Kill All", function()
  39. for i,v in pairs(game.Players:children()) do
  40. game.ReplicatedStorage.DamageEvent:FireServer(v.Character:findFirstChildOfClass("Humanoid"), v.Character:findFirstChildOfClass("Humanoid").Health)
  41. end
  42. end)
  43.  
  44.  
  45. Orbs:AddButton("Inf Sapphire", function()
  46. game.ReplicatedStorage.BuySapphireItemFunction:InvokeServer("HealingOrb",-1e+99999999)
  47. end)
  48.  
  49. Orbs:AddButton("Inf Ruby", function()
  50. game.ReplicatedStorage.BuyItemFunction:InvokeServer("EmojiHatFrame",-1e+99999999)
  51. end)
  52.  
  53. Orbs:AddButton("Auto Rebirth", function()
  54. while wait(6) do
  55. local A_1 = 121
  56. local A_2 = game:GetService("Workspace").Tycoons["Really blue"]
  57. local A_3 = 765329874
  58. local Event = game:GetService("ReplicatedStorage").PlayerRebirthEvent
  59. Event:FireServer(A_1, A_2, A_3)
  60. end
  61. end)
  62.  
  63.  
  64. print("Loaded!")
  65.  
  66. game.StarterGui:SetCore("SendNotification", {
  67. Title = "ZeroTwoGUI";
  68. Text = "Enjoy ;)";
  69. Duration = 7;
  70. })
Advertisement
Add Comment
Please, Sign In to add comment