- First:
- loadstring(game:HttpGet('https://raw.githubusercontent.com/broreallyplayingthisgame/whitelisted/main/RebirthChampionsX.lua'))()
- Second:
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Rebirth Sim X", "DarkTheme")
- --INFO
- local Info = Window:NewTab("Info")
- local Info = Info:NewSection("Thanks for using my script!")
- -- MAIN
- local Main = Window:NewTab("Main")
- local MainSection = Main:NewSection("Main")
- MainSection:NewButton("AutoClick", "AutoClick lol", function()
- while wait() do
- local Event = game:GetService("ReplicatedStorage").Events.Click
- Event:FireServer()
- end
- end)
- MainSection:NewButton("AutoRebirth", "Rebirths you automatically!", function()
- while wait() do
- local A_1 = 1
- local Event = game:GetService("ReplicatedStorage").Events.Rebirth
- Event:FireServer(A_1)
- end
- end)
- MainSection:NewButton("AutoOpen Basic Egg", "Does just that lol", function()
- while wait() do
- local A_1 = "Basic"
- local A_2 = "Single"
- local Event = game:GetService("ReplicatedStorage").Functions.Unbox
- Event:InvokeServer(A_1, A_2)
- end
- end)
- --Credits
- local Credits = Window:NewTab("Credits")
- local Credits = Credits:NewSection("Script made by alfa#2144")
- Credits:NewButton("Discord Invite", "Copies discord invite", function()
- setclipboard("https://discord.com/invite/2uSkKWQGsx")
- end)