-- [[ 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 MainFrame = Instance.new("Frame") local UICorner = Instance.new("UICorner") local Title = Instance.new("TextLabel") local TeleportBtn = Instance.new("TextButton") local TeleportCorner = Instance.new("UICorner") local RebirthBtn = Instance.new("TextButton") local RebirthCorner = Instance.new("UICorner") local Credits = Instance.new("TextLabel") -- إعدادات الواجهة ScreenGui.Parent = game:GetService("CoreGui") -- يعمل للسكربتات التنفيذية (Exploits) ScreenGui.ResetOnSpawn = false -- اللوحة الرئيسية (العارضة السوداء) MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(24, 25, 28) MainFrame.Position = UDim2.new(0.5, -135, 0.5, -110) MainFrame.Size = UDim2.new(0, 270, 0, 220) -- المقاس الأصلي المتناسق لزرين MainFrame.Active = true MainFrame.Draggable = true -- تتيح لك سحب وتحريك اللوحة بالشاشة UICorner.CornerRadius = UDim.new(0, 10) UICorner.Parent = MainFrame -- العنوان العلوي Title.Name = "Title" Title.Parent = MainFrame Title.BackgroundTransparency = 1 Title.Position = UDim2.new(0, 0, 0, 10) Title.Size = UDim2.new(1, 0, 0, 30) Title.Font = Enum.Font.SourceSansBold Title.Text = "Auto Farm Controller" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 20 -- الزر الأول: الانتقال التلقائي TeleportBtn.Name = "TeleportBtn" TeleportBtn.Parent = MainFrame TeleportBtn.BackgroundColor3 = Color3.fromRGB(165, 42, 42) -- اللون الأحمر المطابق للصورة TeleportBtn.Position = UDim2.new(0, 20, 0, 55) TeleportBtn.Size = UDim2.new(0, 230, 0, 45) TeleportBtn.Font = Enum.Font.SourceSansBold TeleportBtn.Text = "Auto Teleport: OFF" TeleportBtn.TextColor3 = Color3.fromRGB(255, 255, 255) TeleportBtn.TextSize = 18 TeleportCorner.CornerRadius = UDim.new(0, 8) TeleportCorner.Parent = TeleportBtn -- الزر الثاني: الريبيرث التلقائي المدمج RebirthBtn.Name = "RebirthBtn" RebirthBtn.Parent = MainFrame RebirthBtn.BackgroundColor3 = Color3.fromRGB(165, 42, 42) RebirthBtn.Position = UDim2.new(0, 20, 0, 115) RebirthBtn.Size = UDim2.new(0, 230, 0, 45) RebirthBtn.Font = Enum.Font.SourceSansBold RebirthBtn.Text = "Auto Rebirth: OFF" RebirthBtn.TextColor3 = Color3.fromRGB(255, 255, 255) RebirthBtn.TextSize = 18 RebirthCorner.CornerRadius = UDim.new(0, 8) RebirthCorner.Parent = RebirthBtn -- الحقوق أسفل اللوحة Credits.Name = "Credits" Credits.Parent = MainFrame Credits.BackgroundTransparency = 1 Credits.Position = UDim2.new(0, 0, 1, -35) Credits.Size = UDim2.new(1, 0, 0, 25) Credits.Font = Enum.Font.SourceSansItalic Credits.Text = "By 7s31 x gimni" Credits.TextColor3 = Color3.fromRGB(150, 150, 150) Credits.TextSize = 16 --------------------------------------------------------- -- الخدمات العامة والمتغيرات المشتركة --------------------------------------------------------- local ReplicatedStorage = game:GetService("ReplicatedStorage") local Players = game:GetService("Players") local localPlayer = Players.LocalPlayer _G.AutoTeleport = false _G.AutoRebirthOnly = false --------------------------------------------------------- -- أولاً: برمجة سكربت الانتقال التلقائي (Teleport) --------------------------------------------------------- local function startTeleportLoop() 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(-6510.71289, 266.217041, -15756.5098, 0, 0, 1, 0, 1, -0, -1, 0, 0) end task.wait(0.001) end end) end TeleportBtn.MouseButton1Click:Connect(function() _G.AutoTeleport = not _G.AutoTeleport if _G.AutoTeleport then TeleportBtn.Text = "Auto Teleport: ON" TeleportBtn.BackgroundColor3 = Color3.fromRGB(46, 139, 87) -- أخضر عند التشغيل startTeleportLoop() else TeleportBtn.Text = "Auto Teleport: OFF" TeleportBtn.BackgroundColor3 = Color3.fromRGB(165, 42, 42) -- أحمر عند الإيقاف end end) --------------------------------------------------------- -- ثانياً: برمجة سكربت الريبيرث التلقائي (Rebirth) --------------------------------------------------------- local RebirthRequest = ReplicatedStorage:WaitForChild("Events"):WaitForChild("Rebirth"):WaitForChild("Request") local RebirthUtility = require(ReplicatedStorage:WaitForChild("Utility"):WaitForChild("Rebirth")) local function checkAndExecuteRebirth() local leaderstats = localPlayer:FindFirstChild("leaderstats") if not leaderstats then return end local currentLevel = leaderstats:FindFirstChild("Level") and leaderstats.Level.Value local currentRebirths = leaderstats:FindFirstChild("Rebirths") and leaderstats.Rebirths.Value if currentLevel and currentRebirths then local requiredLevel = RebirthUtility.GetRequiredLevel(currentRebirths) if currentLevel >= requiredLevel then pcall(function() RebirthRequest:InvokeServer() print("[Auto-Rebirth] Rebirth executed successfully at Level: " .. tostring(currentLevel)) end) end end end local function startRebirthLoop() task.spawn(function() while _G.AutoRebirthOnly do checkAndExecuteRebirth() task.wait(0.5) end end) end RebirthBtn.MouseButton1Click:Connect(function() _G.AutoRebirthOnly = not _G.AutoRebirthOnly if _G.AutoRebirthOnly then RebirthBtn.Text = "Auto Rebirth: ON" RebirthBtn.BackgroundColor3 = Color3.fromRGB(46, 139, 87) -- أخضر عند التشغيل -- إشعار التفعيل الأصلي من سكربتك game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Auto Rebirth Only", Text = "Standalone Auto Rebirth is now running!", Duration = 3 }) startRebirthLoop() else RebirthBtn.Text = "Auto Rebirth: OFF" RebirthBtn.BackgroundColor3 = Color3.fromRGB(165, 42, 42) -- أحمر عند الإيقاف end end)