-new- - Best — Rh2 The Journey Script - -free-

-- GUI Creation local screenGui = Instance.new("ScreenGui") local mainFrame = Instance.new("Frame") local title = Instance.new("TextLabel") local autoWinBtn = Instance.new("TextButton") local godModeBtn = Instance.new("TextButton") local teleportBtn = Instance.new("TextButton")

screenGui.Parent = game:GetService("CoreGui") mainFrame.Parent = screenGui mainFrame.Size = UDim2.new(0, 200, 0, 150) mainFrame.Position = UDim2.new(0.5, -100, 0.5, -75) mainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) mainFrame.BorderSizePixel = 0 -NEW- - Best RH2 The Journey Script - -FREE-

title.Parent = mainFrame title.Size = UDim2.new(1, 0, 0, 30) title.Text = "RH2 Journey Script (FREE)" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.BackgroundColor3 = Color3.fromRGB(20, 20, 20) -- GUI Creation local screenGui = Instance

Update the script – RH2 patches script methods often. Look for a version marked “updated today.” 150) mainFrame.Position = UDim2.new(0.5

-- Auto-Win Function autoWinBtn.MouseButton1Click:connect(function() while true do for _, v in pairs(workspace:GetDescendants()) do if v:IsA("Model") and v.Name:find("Zombie") then v:Destroy() elseif v:IsA("Model") and v.Name:find("Boss") then v.Humanoid.Health = 0 end end wait(0.5) end end)

godModeBtn.Parent = mainFrame godModeBtn.Size = UDim2.new(0.8, 0, 0, 30) godModeBtn.Position = UDim2.new(0.1, 0, 0.5, 0) godModeBtn.Text = "God Mode" godModeBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 0)

-- ACTUAL WORKING SCRIPT (No Key) local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local RunService = game:GetService("RunService")