-- [[ 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 ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local UIAspectRatioConstraint = Instance.new("UIAspectRatioConstraint") local UICorner = Instance.new("UICorner") local Title = Instance.new("TextLabel") local AutoWalkBtn = Instance.new("TextButton") local UICorner_2 = Instance.new("UICorner") local AutoRebirthBtn = Instance.new("TextButton") local UICorner_Rebirth = Instance.new("UICorner") local AutoTeleportBtn = Instance.new("TextButton") local UICorner_3 = Instance.new("UICorner") local Credits = Instance.new("TextLabel") -- عرض الواجهة وحمايتها داخل CoreGui ScreenGui.Parent = game:GetService("CoreGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Name = "MainFrame" Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(24, 25, 28) Frame.Position = UDim2.new(0.4, 0, 0.3, 0) Frame.Size = UDim2.new(0.18, 0, 0.35, 0) Frame.Active = true Frame.Draggable = true UIAspectRatioConstraint.Parent = Frame UIAspectRatioConstraint.AspectRatio = 0.85 UICorner.CornerRadius = UDim.new(0.06, 0) UICorner.Parent = Frame -- العنوان Title.Name = "Title" Title.Parent = Frame Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title.BackgroundTransparency = 1.000 Title.Position = UDim2.new(0.05, 0, 0.05, 0) Title.Size = UDim2.new(0.9, 0, 0.12, 0) Title.Font = Enum.Font.SourceSansBold Title.Text = "Auto Farm Controller" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 15 -- زر Auto Walk AutoWalkBtn.Name = "AutoWalkBtn" AutoWalkBtn.Parent = Frame AutoWalkBtn.BackgroundColor3 = Color3.fromRGB(166, 38, 38) AutoWalkBtn.Position = UDim2.new(0.1, 0, 0.22, 0) AutoWalkBtn.Size = UDim2.new(0.8, 0, 0.16, 0) AutoWalkBtn.Font = Enum.Font.SourceSansBold AutoWalkBtn.Text = "Auto Walk: OFF" AutoWalkBtn.TextColor3 = Color3.fromRGB(255, 255, 255) AutoWalkBtn.TextSize = 13 UICorner_2.CornerRadius = UDim.new(0.25, 0) UICorner_2.Parent = AutoWalkBtn -- زر Auto Rebirth AutoRebirthBtn.Name = "AutoRebirthBtn" AutoRebirthBtn.Parent = Frame AutoRebirthBtn.BackgroundColor3 = Color3.fromRGB(166, 38, 38) AutoRebirthBtn.Position = UDim2.new(0.1, 0, 0.43, 0) AutoRebirthBtn.Size = UDim2.new(0.8, 0, 0.16, 0) AutoRebirthBtn.Font = Enum.Font.SourceSansBold AutoRebirthBtn.Text = "Auto Rebirth: OFF" AutoRebirthBtn.TextColor3 = Color3.fromRGB(255, 255, 255) AutoRebirthBtn.TextSize = 13 UICorner_Rebirth.CornerRadius = UDim.new(0.25, 0) UICorner_Rebirth.Parent = AutoRebirthBtn -- زر Auto Teleport AutoTeleportBtn.Name = "AutoTeleportBtn" AutoTeleportBtn.Parent = Frame AutoTeleportBtn.BackgroundColor3 = Color3.fromRGB(166, 38, 38) AutoTeleportBtn.Position = UDim2.new(0.1, 0, 0.64, 0) AutoTeleportBtn.Size = UDim2.new(0.8, 0, 0.16, 0) AutoTeleportBtn.Font = Enum.Font.SourceSansBold AutoTeleportBtn.Text = "Auto Teleport: OFF" AutoTeleportBtn.TextColor3 = Color3.fromRGB(255, 255, 255) AutoTeleportBtn.TextSize = 13 UICorner_3.CornerRadius = UDim.new(0.25, 0) UICorner_3.Parent = AutoTeleportBtn -- الحقوق Credits.Name = "Credits" Credits.Parent = Frame Credits.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Credits.BackgroundTransparency = 1.000 Credits.Position = UDim2.new(0.1, 0, 0.85, 0) Credits.Size = UDim2.new(0.8, 0, 0.1, 0) Credits.Font = Enum.Font.SourceSansItalic Credits.Text = "By 7s31 x gimni" Credits.TextColor3 = Color3.fromRGB(120, 120, 120) Credits.TextSize = 11 --------------------------------------------------------- -- المنطق البرمجي الآمن للتوازي (Logic) --------------------------------------------------------- _G.AutoWalking = false _G.AutoRebirth = false _G.AutoTeleport = false _G.WalkingThreads = {} local ReplicatedStorage = game:GetService("ReplicatedStorage") local Players = game:GetService("Players") local localPlayer = Players.LocalPlayer -- ميزة الـ Auto Walk الآمنة local function startAutoWalk() _G.AutoWalking = true local UpdateSpeed = ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("UpdateSpeed") local args = { "Walking" } for i = 1, 15 do local thread = task.spawn(function() while _G.AutoWalking do pcall(function() UpdateSpeed:FireServer(unpack(args)) end) task.wait(0.01) -- تنظيم خفيف جداً يمنع تعليق الكود عند دمج الميزات end end) table.insert(_G.WalkingThreads, thread) end end local function stopAutoWalk() _G.AutoWalking = false if _G.WalkingThreads then for _, thread in ipairs(_G.WalkingThreads) do pcall(task.cancel, thread) end end _G.WalkingThreads = {} end -- ميزة الـ Auto Rebirth local function startAutoRebirth() _G.AutoRebirth = true local RebirthRemote = ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("Rebirth") _G.RebirthThread = task.spawn(function() while _G.AutoRebirth do pcall(function() RebirthRemote:FireServer() end) task.wait(0.5) end end) end local function stopAutoRebirth() _G.AutoRebirth = false if _G.RebirthThread then pcall(task.cancel, _G.RebirthThread) end end -- ميزة الـ Auto Teleport السلسة local function startAutoTeleport() _G.AutoTeleport = true _G.TeleportThread = task.spawn(function() while _G.AutoTeleport do local character = localPlayer.Character or localPlayer.CharacterAdded:Wait() local hrp = character:FindFirstChild("HumanoidRootPart") if hrp then -- نقل آمن لا يؤدي إلى اهتزاز أو كراش مع السيرفر hrp.CFrame = CFrame.new(-9488.71777, 64.0392151, 2030.39746, -0.99999851, -0.00172796962, 0, -0.00172796671, 0.999996841, 0.00181499217, -3.13625128e-06, 0.00181498949, -0.999998331) end task.wait(0.01) -- حماية إضافية تضمن إمكانية التعرف على أمر الضغط والإيقاف فوراً end end) end local function stopAutoTeleport() _G.AutoTeleport = false if _G.TeleportThread then pcall(task.cancel, _G.TeleportThread) end end -- تشغيل وإيقاف الأزرار بشكل مستقل وبدون أي تداخل أو تضارب AutoWalkBtn.MouseButton1Click:Connect(function() if _G.AutoWalking then stopAutoWalk() AutoWalkBtn.Text = "Auto Walk: OFF" AutoWalkBtn.BackgroundColor3 = Color3.fromRGB(166, 38, 38) else startAutoWalk() AutoWalkBtn.Text = "Auto Walk: ON" AutoWalkBtn.BackgroundColor3 = Color3.fromRGB(46, 139, 87) end end) AutoRebirthBtn.MouseButton1Click:Connect(function() if _G.AutoRebirth then stopAutoRebirth() AutoRebirthBtn.Text = "Auto Rebirth: OFF" AutoRebirthBtn.BackgroundColor3 = Color3.fromRGB(166, 38, 38) else startAutoRebirth() AutoRebirthBtn.Text = "Auto Rebirth: ON" AutoRebirthBtn.BackgroundColor3 = Color3.fromRGB(46, 139, 87) end end) AutoTeleportBtn.MouseButton1Click:Connect(function() if _G.AutoTeleport then stopAutoTeleport() AutoTeleportBtn.Text = "Auto Teleport: OFF" AutoTeleportBtn.BackgroundColor3 = Color3.fromRGB(166, 38, 38) else startAutoTeleport() AutoTeleportBtn.Text = "Auto Teleport: ON" AutoTeleportBtn.BackgroundColor3 = Color3.fromRGB(46, 139, 87) end end)