--[[ Force Script by: SAIF (Powered by Egalsa System) Fixed: Auto-Reset Protection bypass ]] local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local SaveBtn = Instance.new("TextButton") local TeleBtn = Instance.new("TextButton") local SpeedBtn = Instance.new("TextButton") local JumpBtn = Instance.new("TextButton") ScreenGui.Parent = game.CoreGui MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) MainFrame.Position = UDim2.new(0.5, -100, 0.5, -125) MainFrame.Size = UDim2.new(0, 200, 0, 240) MainFrame.Active = true MainFrame.Draggable = true Instance.new("UICorner", MainFrame).CornerRadius = UDim.new(0, 15) Title.Parent = MainFrame Title.Size = UDim2.new(1, 0, 0, 40) Title.Text = "سكربت الملك سيف 👑" Title.TextColor3 = Color3.fromRGB(255, 215, 0) Title.BackgroundTransparency = 1 Title.Font = Enum.Font.SourceSansBold Title.TextSize = 18 local function makeBtn(btn, text, pos, color) btn.Parent = MainFrame btn.Size = UDim2.new(0, 180, 0, 35) btn.Position = pos btn.Text = text btn.BackgroundColor3 = color btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.SourceSansBold btn.TextSize = 14 Instance.new("UICorner", btn) end makeBtn(SaveBtn, "حفظ الموقع 📍", UDim2.new(0, 10, 0, 50), Color3.fromRGB(46, 204, 113)) makeBtn(TeleBtn, "انتقال سريع 🌀", UDim2.new(0, 10, 0, 95), Color3.fromRGB(52, 152, 219)) makeBtn(SpeedBtn, "السرعة: OFF ⚡", UDim2.new(0, 10, 0, 140), Color3.fromRGB(44, 44, 44)) makeBtn(JumpBtn, "النطة: OFF 🚀", UDim2.new(0, 10, 0, 185), Color3.fromRGB(44, 44, 44)) local player = game.Players.LocalPlayer local savedPos = nil local speedOn = false local jumpOn = false -- ميزة الإجبار (Force Loop) لضمان العمل game:GetService("RunService").RenderStepped:Connect(function() pcall(function() local hum = player.Character:FindFirstChildOfClass("Humanoid") if hum then if speedOn then hum.WalkSpeed = 60 end if jumpOn then hum.UseJumpPower = true hum.JumpPower = 90 end end end) end) SaveBtn.MouseButton1Click:Connect(function() if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then savedPos = player.Character.HumanoidRootPart.CFrame SaveBtn.Text = "تم الحفظ ✅" wait(1) SaveBtn.Text = "حفظ الموقع 📍" end end) TeleBtn.MouseButton1Click:Connect(function() if player.Character and player.Character:FindFirstChild("HumanoidRootPart") and savedPos then player.Character.HumanoidRootPart.CFrame = savedPos end end) SpeedBtn.MouseButton1Click:Connect(function() speedOn = not speedOn SpeedBtn.Text = speedOn and "السرعة: ON ✅" or "السرعة: OFF ⚡" SpeedBtn.BackgroundColor3 = speedOn and Color3.fromRGB(192, 57, 43) or Color3.fromRGB(44, 44, 44) end) JumpBtn.MouseButton1Click:Connect(function() jumpOn = not jumpOn JumpBtn.Text = jumpOn and "النطة: ON ✅" or "النطة: OFF 🚀" JumpBtn.BackgroundColor3 = jumpOn and Color3.fromRGB(192, 57, 43) or Color3.fromRGB(44, 44, 44) end)