-- Script GUI compacto para The Rake: Remastered por Fuli x Seren local scrgui = Instance.new("ScreenGui", game.CoreGui) local frame = Instance.new("Frame", scrgui) frame.Size = UDim2.new(0,150,0,200) frame.Position = UDim2.new(0,10,0.4,0) frame.BackgroundColor3 = Color3.fromRGB(25,25,25) local plr = game.Players.LocalPlayer local char = plr.Character or plr.CharacterAdded:Wait() local hum = char:WaitForChild("Humanoid") local hrp = char:WaitForChild("HumanoidRootPart") local function btn(text, func) local b = Instance.new("TextButton", frame) b.Size = UDim2.new(1, 0, 0, 30) b.Text = text b.BackgroundColor3 = Color3.fromRGB(40, 40, 40) b.TextColor3 = Color3.new(1,1,1) b.Font = Enum.Font.SourceSansBold b.TextSize = 14 b.MouseButton1Click:Connect(func) end btn("FullBright", function() local l = game:GetService("Lighting") l.Brightness, l.ClockTime, l.FogEnd, l.GlobalShadows = 2, 12, 1e5, false end) btn("Speed 50", function() hum.WalkSpeed = 50 end) btn("God Mode", function() hum.Health = math.huge hum.MaxHealth = math.huge end) btn("Aura Stick", function() spawn(function() while true do task.wait(0.3) local t = char:FindFirstChildOfClass("Tool") if t then for _,p in pairs(game.Players:GetPlayers()) do if p ~= plr and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then if (p.Character.HumanoidRootPart.Position - hrp.Position).Magnitude < 10 then t:Activate() end end end end end end) end) btn("AutoFarm", function() spawn(function() while true do task.wait(1) for _,v in pairs(workspace:GetDescendants()) do if v:IsA("Tool") and v:FindFirstChild("Handle") then firetouchinterest(hrp, v.Handle, 0) firetouchinterest(hrp, v.Handle, 1) end end end end) end) btn("Seguir Rake", function() spawn(function() while true do task.wait(0.5) for _,v in pairs(workspace:GetChildren()) do if v:IsA("Model") and v:FindFirstChild("Humanoid") and v.Name:lower():find("rake") then hrp.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 0, -5) end end end end) end)