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 SpeedBtn = Instance.new("TextButton") local TPBtn = Instance.new("TextButton") local DestroyBtn = Instance.new("TextButton") ScreenGui.Name = "4Jayyz_Ultra_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, -115) MainFrame.Size = UDim2.new(0, 170, 0, 230) 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 StyleBtn(btn, text, pos) btn.Parent = MainFrame btn.Text = text .. (text:find("TP") and "" or ": 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) end StyleBtn(RebirthBtn, "🔁 AUTO REBIRTH", UDim2.new(0.05, 0, 0.18, 0)) StyleBtn(SpeedBtn, "🚅 AUTO SPEED", UDim2.new(0.05, 0, 0.36, 0)) StyleBtn(TPBtn, "💰 GET CASH", UDim2.new(0.05, 0, 0.54, 0)) DestroyBtn.Parent = MainFrame DestroyBtn.Text = "Destroy UI" DestroyBtn.Size = UDim2.new(0.9, 0, 0, 25) DestroyBtn.Position = UDim2.new(0.05, 0, 0.85, 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 rebirthActive = false local speedActive = false RebirthBtn.MouseButton1Click:Connect(function() rebirthActive = not rebirthActive RebirthBtn.Text = "🔁 REBIRTH: " .. (rebirthActive and "ON" or "OFF") RebirthBtn.BackgroundColor3 = rebirthActive and Color3.fromRGB(0, 150, 0) or Color3.fromRGB(30, 30, 30) task.spawn(function() local remote = ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("RequestRebirth") while rebirthActive do remote:FireServer("free") task.wait(0.1) end end) end) SpeedBtn.MouseButton1Click:Connect(function() speedActive = not speedActive SpeedBtn.Text = "🚅 SPEED: " .. (speedActive and "ON" or "OFF") SpeedBtn.BackgroundColor3 = speedActive and Color3.fromRGB(0, 150, 0) or Color3.fromRGB(30, 30, 30) task.spawn(function() local remote = ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("StepTaken") while speedActive do remote:FireServer(99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999, false) task.wait() end end) end) TPBtn.MouseButton1Click:Connect(function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2.0, 7.0, -9076.0) end end) DestroyBtn.MouseButton1Click:Connect(function() rebirthActive = false speedActive = false ScreenGui:Destroy() end)