local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Ali Editor | Ultimate Hub", LoadingTitle = "Ali Turbo Edition", LoadingSubtitle = "by Ali_editor", ConfigurationOverride = { DefaultSize = Vector2.new(400, 350), Version = "13.0", FileName = "AliConfig" } }) local Tab = Window:CreateTab("Paths & Farm", 4483362458) local TweenService = game:GetService("TweenService") local _G = { PathActive = false, SlapActive = false } -- [1] المسار القديم - سرعة فائقة جداً وتكرار لا يتوقف local OldPathWaypoints = { CFrame.new(-22.0000153, 50.5, 28.999918, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-22.0000153, 50.5, 17.999918, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-27.499733, 52.0223846, -6.50004578, 0, 0, -1, 1, 0, 0, 0, -1, 0) } local function startTurboPath() while _G.PathActive do local character = game.Players.LocalPlayer.Character if not character or not character:FindFirstChild("HumanoidRootPart") then break end local root = character.HumanoidRootPart for _, pos in ipairs(OldPathWaypoints) do if not _G.PathActive then break end -- سرعة البرق (0.05 ثانية) local tween = TweenService:Create(root, TweenInfo.new(0.05, Enum.EasingStyle.Linear), {CFrame = pos + Vector3.new(0, 3, 0)}) tween:Play() tween.Completed:Wait() -- لا توجد وقفة (task.wait) هنا لضمان السرعة القصوى وعدم التوقف end end end Tab:CreateToggle({ Name = "ye just click me for troll ()", CurrentValue = false, Callback = function(Value) _G.PathActive = Value if Value then Rayfield:Notify({Title = "Ali Editor", Content = "تم تفعيل المسار التيربو!", Duration = 2}) task.spawn(startTurboPath) end end, }) -- [2] تجميع الكفوف (بدون أي تغيير - منظم وهادئ) local SlapWaypoints = { CFrame.new(17.7402115, 7.47621441, 69.4818344, -1, 0, 0, 0, 1, 0, 0, 0, -1), CFrame.new(25.5349236, 6.1178894, -221.073166, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(286.149475, 6.11791706, -1.96504498, 0, 0, -1, 0, 1, 0, 1, 0, 0), CFrame.new(-228.120483, 357.734711, 7.90954971, 0, 0, 1, 0, 1, 0, -1, 0, 0) } local function startSlapFarm() while _G.SlapActive do local character = game.Players.LocalPlayer.Character if not character or not character:FindFirstChild("HumanoidRootPart") then break end local root = character.HumanoidRootPart for _, pos in ipairs(SlapWaypoints) do if not _G.SlapActive then break end local tween = TweenService:Create(root, TweenInfo.new(0.6, Enum.EasingStyle.Quart), {CFrame = pos + Vector3.new(0, 3, 0)}) tween:Play() tween.Completed:Wait() task.wait(0.5) -- البقاء على الوقفة الهادئة لتجنب الفوضى هنا end end end Tab:CreateToggle({ Name = "auto collect slaps (Stable)", CurrentValue = false, Callback = function(Value) _G.SlapActive = Value if Value then Rayfield:Notify({Title = "Ali Editor", Content = "بدأ تجميع الكفوف المنظم", Duration = 2}) task.spawn(startSlapFarm) end end, }) -- [3] زر النوكليب (Noclip) Tab:CreateButton({ Name = "Enable Noclip", Callback = function() game:GetService("RunService").Stepped:Connect(function() if game.Players.LocalPlayer.Character then for _, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end end) end, }) Rayfield:LoadConfiguration()