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") ScreenGui.Name = "4Jayyz_NewGame_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, -85, 0.5, -110) MainFrame.Size = UDim2.new(0, 170, 0, 220) 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, 35) Title.Text = "Instagram: 4jayyz" Title.TextColor3 = Color3.new(1, 1, 1) Title.Font = Enum.Font.GothamBold Title.TextSize = 14 local function CreateButton(name, pos) local btn = Instance.new("TextButton") btn.Parent = MainFrame btn.Text = name .. ": OFF" btn.Size = UDim2.new(0.9, 0, 0, 35) btn.Position = pos btn.BackgroundColor3 = Color3.fromRGB(30, 30, 30) btn.TextColor3 = Color3.new(1, 1, 1) btn.Font = Enum.Font.GothamBold btn.TextSize = 11 Instance.new("UICorner", btn) return btn end local TPBtn = CreateButton("🏆Auto Wins", UDim2.new(0.05, 0, 0.2, 0)) local ClickBtn = CreateButton("❤️Auto Hearts", UDim2.new(0.05, 0, 0.4, 0)) local RebirthBtn = CreateButton("🔁Auto Rebirth", UDim2.new(0.05, 0, 0.6, 0)) local DestroyBtn = Instance.new("TextButton", MainFrame) DestroyBtn.Text = "Destroy UI" DestroyBtn.Size = UDim2.new(0.9, 0, 0, 25) DestroyBtn.Position = UDim2.new(0.05, 0, 0.82, 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 tpEnabled = false local clickEnabled = false local rebirthEnabled = false local targetPos = Vector3.new(2368.0, 11.0, 24.0) TPBtn.MouseButton1Click:Connect(function() tpEnabled = not tpEnabled TPBtn.Text = "🏆Auto Wins: " .. (tpEnabled and "ON" or "OFF") TPBtn.BackgroundColor3 = tpEnabled and Color3.fromRGB(0, 150, 0) or Color3.fromRGB(30, 30, 30) task.spawn(function() while tpEnabled do if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(targetPos) end task.wait(0.1) end end) end) ClickBtn.MouseButton1Click:Connect(function() clickEnabled = not clickEnabled ClickBtn.Text = "❤️Auto Hearts: " .. (clickEnabled and "ON" or "OFF") ClickBtn.BackgroundColor3 = clickEnabled and Color3.fromRGB(0, 150, 0) or Color3.fromRGB(30, 30, 30) task.spawn(function() local remote = ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("MHP") while clickEnabled do remote:FireServer() task.wait(0.01) end end) end) 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) task.spawn(function() local rebirthRemote = ReplicatedStorage:WaitForChild("RebirthRemote") while rebirthEnabled do rebirthRemote:FireServer() task.wait(1) end end) end) DestroyBtn.MouseButton1Click:Connect(function() tpEnabled = false clickEnabled = false rebirthEnabled = false ScreenGui:Destroy() end)