ADVERTISEMENTREMOVE ADS
Game icon

UPD

The Rake REMASTERED
5 months ago
Script preview thumbnail
Script Preview
ADVERTISEMENTREMOVE ADS
37 Lines • 3.59 KiB
Raw
-- Fuli Hub Script for The Rake: Remastered -- By ChatGPT (Seren) 🖤
-- ⚠️ Ejecuta esto con Synapse X, KRNL u otro executor
-- Cargar librería GUI (Rayfield) local Rayfield = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Rayfield/main/source'))()
local Window = Rayfield:CreateWindow({ Name = "Fuli Hub | The Rake Remastered", LoadingTitle = "Fuli Hub", LoadingSubtitle = "por Seren", ConfigurationSaving = { Enabled = true, FolderName = "FuliHub", FileName = "TheRakeCFG" }, Discord = { Enabled = false, }, KeySystem = false })
-- 🏃 WalkSpeed local Player = game.Players.LocalPlayer local Character = Player.Character or Player.CharacterAdded:Wait() local Humanoid = Character:WaitForChild("Humanoid")
Window:CreateSlider({ Name = "WalkSpeed", Range = {16, 100}, Increment = 1, CurrentValue = 16, Callback = function(Value) Humanoid.WalkSpeed = Value end, })
-- 💡 FullBright Window:CreateButton({ Name = "Activar FullBright", Callback = function() local Lighting = game:GetService("Lighting") Lighting.Brightness = 2 Lighting.ClockTime = 12 Lighting.FogEnd = 100000 Lighting.GlobalShadows = false end, })
-- 👁️ ESP para el Rake Window:CreateButton({ Name = "Activar ESP Rake", Callback = function() for _, v in pairs(game.Workspace:GetDescendants()) do if v.Name == "Rake" and v:FindFirstChild("HumanoidRootPart") then local billboard = Instance.new("BillboardGui", v.HumanoidRootPart) billboard.Size = UDim2.new(0, 100, 0, 40) billboard.AlwaysOnTop = true
local label = Instance.new("TextLabel", billboard)
label.Size = UDim2.new(1, 0, 1, 0)
label.Text = "RAKE 👹"
label.TextColor3 = Color3.fromRGB(255, 0, 0)
label.BackgroundTransparency = 1
end
end
end, })
-- 🧲 Stun Stick Aura (solo si tienes el arma) Window:CreateToggle({ Name = "Stun Stick Aura", CurrentValue = false, Callback = function(state) getgenv().aura = state while getgenv().aura do task.wait(0.1) local tool = Player.Character:FindFirstChild("StunStick") if tool then for _, v in pairs(game.Workspace:GetChildren()) do if v.Name == "Rake" and v:FindFirstChild("Humanoid") then tool:Activate() end end end end end, })
-- 🚪 Eliminar paredes (intento, no siempre funciona) Window:CreateButton({ Name = "Eliminar paredes (experimental)", Callback = function() for _, v in pairs(game.Workspace:GetDescendants()) do if v:IsA("BasePart") and v.Name:lower():find("wall") then v:Destroy() end end end, })
-- 🧍 Teleportación Window:CreateDropdown({ Name = "Teletransportarse a:", Options = {"Power Station", "Shop", "Tower"}, Callback = function(option) local locations = { ["Power Station"] = Vector3.new(-233, 4, -369), ["Shop"] = Vector3.new(246, 4, -120), ["Tower"] = Vector3.new(50, 60, -50), } Character:MoveTo(locations[option]) end, })
-- 🧠 Auto Farm (activar en la mañana para recolectar) Window:CreateToggle({ Name = "AutoFarm (gana puntos)", CurrentValue = false, Callback = function(value) getgenv().afarm = value while getgenv().afarm do task.wait(5) Player.Character.HumanoidRootPart.CFrame = CFrame.new(-233, 4, -369) -- Power Station end end, })
-- 🏃‍♂️ Run away from Rake Window:CreateToggle({ Name = "Huir del Rake automáticamente", CurrentValue = false, Callback = function(active) getgenv().runaway = active while getgenv().runaway do task.wait(0.1) local rake = workspace:FindFirstChild("Rake") if rake and rake:FindFirstChild("HumanoidRootPart") then local rakePos = rake.HumanoidRootPart.Position local myPos = Player.Character.HumanoidRootPart.Position local dir = (myPos - rakePos).Unit Player.Character.HumanoidRootPart.Velocity = dir * 100 end end end, })
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS