Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local library = loadstring(game:HttpGet("https://pastebin.com/raw/7Z6TzFnv", true))()
- local example = library:CreateWindow({
- text = "Config:"
- })
- local Orbs = library:CreateWindow({
- text = "Infinite:"
- })
- local credits = library:CreateWindow({text='Credits:'})
- credits:AddLabel("Credits\nLegend: UI and scripting\nZeroTwo: Idea UI\n")
- example:AddToggle("Walk Speed", function(state)
- game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = (state and 100 or 16)
- end)
- example:AddButton("God", function()
- while true do
- game.ReplicatedStorage.DamageEvent:FireServer(game.Players.LocalPlayer.Character.Humanoid, -math.huge)
- wait()
- end
- end)
- example:AddToggle("Super Jump", function(state)
- game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = (state and 100 or 50)
- end)
- example:AddButton("Loop kill mobs", function()
- while wait() do
- for i,v in pairs(workspace:children()) do
- if v:findFirstChildOfClass("Humanoid") and v:findFirstChild("Head") and not game.Players:GetPlayerFromCharacter(v) then
- game.ReplicatedStorage.DamageEvent:FireServer(v:findFirstChildOfClass("Humanoid"), v:findFirstChildOfClass("Humanoid").Health)
- end
- end
- end
- end)
- example:AddButton("Kill All", function()
- for i,v in pairs(game.Players:children()) do
- game.ReplicatedStorage.DamageEvent:FireServer(v.Character:findFirstChildOfClass("Humanoid"), v.Character:findFirstChildOfClass("Humanoid").Health)
- end
- end)
- Orbs:AddButton("Inf Sapphire", function()
- game.ReplicatedStorage.BuySapphireItemFunction:InvokeServer("HealingOrb",-1e+99999999)
- end)
- Orbs:AddButton("Inf Ruby", function()
- game.ReplicatedStorage.BuyItemFunction:InvokeServer("EmojiHatFrame",-1e+99999999)
- end)
- Orbs:AddButton("Auto Rebirth", function()
- while wait(6) do
- local A_1 = 121
- local A_2 = game:GetService("Workspace").Tycoons["Really blue"]
- local A_3 = 765329874
- local Event = game:GetService("ReplicatedStorage").PlayerRebirthEvent
- Event:FireServer(A_1, A_2, A_3)
- end
- end)
- print("Loaded!")
- game.StarterGui:SetCore("SendNotification", {
- Title = "ZeroTwoGUI";
- Text = "Enjoy ;)";
- Duration = 7;
- })
Advertisement
Add Comment
Please, Sign In to add comment