local RunService = game:GetService("RunService") local ReplicatedStorage = game:GetService("ReplicatedStorage") local LocalPlayer = game:GetService("Players").LocalPlayer local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local UICorner = Instance.new("UICorner") local UIStroke = Instance.new("UIStroke") local Title = Instance.new("TextLabel") local RebirthBtn = Instance.new("TextButton") local DestroyBtn = Instance.new("TextButton") ScreenGui.Name = "4Jayyz_Rebirth_Hub" ScreenGui.Parent = game:GetService("CoreGui") ScreenGui.ResetOnSpawn = false MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) MainFrame.Position = UDim2.new(0.5, -80, 0.5, -60) MainFrame.Size = UDim2.new(0, 160, 0, 120) MainFrame.Active = true MainFrame.Draggable = true UICorner.CornerRadius = UDim.new(0, 10) UICorner.Parent = MainFrame UIStroke.Thickness = 2 UIStroke.Parent = MainFrame task.spawn(function() while RunService.RenderStepped:Wait() do local hue = tick() % 5 / 5 UIStroke.Color = Color3.fromHSV(hue, 1, 1) end end) Title.Parent = MainFrame Title.BackgroundTransparency = 1 Title.Size = UDim2.new(1, 0, 0, 30) Title.Text = "Instagram: 4jayyz" Title.TextColor3 = Color3.new(1, 1, 1) Title.Font = Enum.Font.GothamBold Title.TextSize = 13 RebirthBtn.Parent = MainFrame RebirthBtn.Text = "🔁 Auto Rebirth: OFF" RebirthBtn.Size = UDim2.new(0.9, 0, 0, 35) RebirthBtn.Position = UDim2.new(0.05, 0, 0.3, 0) RebirthBtn.BackgroundColor3 = Color3.fromRGB(30, 30, 30) RebirthBtn.TextColor3 = Color3.new(1, 1, 1) RebirthBtn.Font = Enum.Font.GothamBold RebirthBtn.TextSize = 11 Instance.new("UICorner", RebirthBtn) DestroyBtn.Parent = MainFrame DestroyBtn.Text = "Destroy UI" DestroyBtn.Size = UDim2.new(0.9, 0, 0, 25) DestroyBtn.Position = UDim2.new(0.05, 0, 0.7, 0) DestroyBtn.BackgroundColor3 = Color3.fromRGB(150, 0, 0) DestroyBtn.TextColor3 = Color3.new(1, 1, 1) DestroyBtn.Font = Enum.Font.GothamBold DestroyBtn.TextSize = 11 Instance.new("UICorner", DestroyBtn) local rebirthEnabled = false RebirthBtn.MouseButton1Click:Connect(function() rebirthEnabled = not rebirthEnabled RebirthBtn.Text = "🔁 Auto Rebirth: " .. (rebirthEnabled and "ON" or "OFF") RebirthBtn.BackgroundColor3 = rebirthEnabled and Color3.fromRGB(0, 150, 0) or Color3.fromRGB(30, 30, 30) if rebirthEnabled then task.spawn(function() local remote = ReplicatedStorage:WaitForChild("Communication"):WaitForChild("Request Rebirth") while rebirthEnabled do remote:InvokeServer() task.wait() end end) end end) DestroyBtn.MouseButton1Click:Connect(function() rebirthEnabled = false ScreenGui:Destroy() end)