-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() -- GUI local screenGui = Instance.new("ScreenGui", player:FindFirstChild("PlayerGui")) local mainFrame = Instance.new("Frame", screenGui) mainFrame.Size = UDim2.new(0, 300, 0, 100) mainFrame.Position = UDim2.new(0.5, -150, 0.5, -50) mainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) mainFrame.BorderSizePixel = 0 mainFrame.Active = true mainFrame.Draggable = true local title = Instance.new("TextLabel", mainFrame) title.Size = UDim2.new(1, 0, 0, 40) title.BackgroundColor3 = Color3.fromRGB(50, 50, 50) title.Text = "ToH Hack" title.TextColor3 = Color3.new(1, 1, 1) title.Font = Enum.Font.SourceSansBold title.TextSize = 24 -- Godmode Button local godmodeBtn = Instance.new("TextButton", mainFrame) godmodeBtn.Size = UDim2.new(1, -20, 0, 40) godmodeBtn.Position = UDim2.new(0, 10, 0, 50) godmodeBtn.Text = "Godmode [OFF]" godmodeBtn.BackgroundColor3 = Color3.fromRGB(80, 80, 80) godmodeBtn.TextColor3 = Color3.new(1, 1, 1) -- Godmode Logic local godmodeEnabled = false godmodeBtn.MouseButton1Click:Connect(function() godmodeEnabled = not godmodeEnabled if godmodeEnabled then godmodeBtn.Text = "Godmode [ON]" godmodeBtn.BackgroundColor3 = Color3.fromRGB(40, 180, 40) else godmodeBtn.Text = "Godmode [OFF]" godmodeBtn.BackgroundColor3 = Color3.fromRGB(80, 80, 80) end end) game:GetService("RunService").Heartbeat:Connect(function() if godmodeEnabled and player.Character and player.Character:FindFirstChild("Humanoid") then player.Character.Humanoid.MaxHealth = 9e9 player.Character.Humanoid.Health = 9e9 end end) -- Rainbow GUI Effect local hue = 0 game:GetService("RunService").RenderStepped:Connect(function() hue = (hue + 0.01) % 1 local color = Color3.fromHSV(hue, 1, 1) mainFrame.BackgroundColor3 = color title.BackgroundColor3 = color godmodeBtn.BackgroundColor3 = color end)