Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local collectSpeed = 0.10 -- قيمة البداية لسرعة التجميع
- local multiplier = 20 -- قيمة الـ multiplier (عدد التكرارات)
- local gemMultiplier = 20 -- عدد مرات التكرار لكل دورة
- local collectSpeedGems = 0.10 -- قيمة البداية لسرعة جمع الجواهر
- local lastClickTime = 0 -- تخزين الوقت الذي تم فيه الضغط على الزر آخر مرة
- local cooldownTime = 5 -- الوقت بالثواني بين كل ضغطة على الزر (5 ثواني)
- local lastClickTimeChest = 0 -- وقت آخر ضغطة زر
- local cooldownTimeChest = 2
- local TeleportService = game:GetService("TeleportService")
- local UIS = game:GetService("UserInputService")
- local OrionLib = loadstring(game:HttpGet(('https://pastebin.com/raw/PjkY8zj0')))()
- OrionLib:MakeNotification({
- Name = "انتظر ...",
- Content = "اصبر",
- Image = "rbxassetid://4483345998",
- Time = 3
- })
- local Window = OrionLib:MakeWindow({Name = "سكربت ايم المهري | ماب السرعه", SearchBar = { Default = 'بحث قوائم في السكربت', ClearTextOnFocus = true }, HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- OrionLib:MakeNotification({
- Name = "تم تشغيل .",
- Content = "تم تشغيل",
- Image = "rbxassetid://4483345998",
- Time = 3
- })
- local Tab = Window:MakeTab({
- Name = "التلقائي",
- Icon = "rbxassetid://279461710",
- PremiumOnly = false
- })
- local Section = Tab:AddSection({
- Name = "تجميع تلقائي"
- })
- Tab:AddToggle({
- Name = "تجميع المستوى تلقائي",
- Default = false,
- Callback = function(Value)
- getgenv().OrbGet = Value
- local function collectOrbs()
- local orbEvent = game:GetService("ReplicatedStorage"):FindFirstChild("rEvents"):FindFirstChild("orbEvent")
- if not orbEvent then
- warn("orbEvent is not found!")
- return
- end
- while getgenv().OrbGet do
- for i = 1, multiplier do -- استخدام الـ multiplier هنا
- -- القيم التي سيتم دمجها في الموضع [3]
- local locations = {"City", "Snow City", "Magma City", "Legends Highway"}
- -- نرسل كل قيمة في locations باستخدام دالة منفصلة
- for _, location in ipairs(locations) do
- local args = {
- [1] = "collectOrb",
- [2] = "Red Orb",
- [3] = location
- }
- orbEvent:FireServer(unpack(args))
- end
- end
- wait(collectSpeed) -- استخدام سرعة التجميع التي حددها المستخدم (الفاصل الزمني بين كل مجموعة من التكرارات)
- end
- end
- -- تشغيل الوظيفة إذا كانت الميزة مفعّلة
- if getgenv().OrbGet then
- spawn(collectOrbs)
- end
- -- طباعة الحالة الحالية
- print("Auto Farm EXP:", Value)
- end
- })
- Tab:AddToggle({
- Name = "تحميع الجواهر تلقائي",
- Default = false,
- Callback = function(Value)
- getgenv().gemGet = Value -- تغيير قيمة gemGet بناءً على حالة الـ Toggle
- -- وظيفة جمع Gems
- spawn(function()
- while true do
- if getgenv().gemGet then -- التحقق من قيمة gemGet
- for i = 1, gemMultiplier do -- استخدام الـ gemMultiplier هنا
- -- القيم التي سيتم دمجها في الموضع [3]
- local locations = {"City", "Snow City", "Magma City", "Legends Highway"}
- -- نرسل كل قيمة في locations باستخدام دالة منفصلة
- for _, location in ipairs(locations) do
- local args = {
- [1] = "collectOrb",
- [2] = "Gem", -- هنا نستخدم Gem بدلاً من Orb
- [3] = location
- }
- game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
- end
- end
- end
- wait(collectSpeedGems) -- الانتظار بين كل مجموعة من التكرارات باستخدام سرعة جمع الجواهر
- end
- end)
- -- طباعة الحالة الحالية
- print("Auto Farm Gems:", Value)
- end
- })
- Tab:AddToggle({
- Name = "التوليد التلقائية",
- Default = false,
- Callback = function(Value)
- getgenv().rebirthGet = Value -- ربط المتغير rebirthGet بالقيمة المدخلة من الـ Toggle
- spawn(function()
- while true do
- if getgenv().rebirthGet then -- التحقق من قيمة rebirthGet
- local args = {
- [1] = "rebirthRequest"
- }
- game:GetService("ReplicatedStorage").rEvents.rebirthEvent:FireServer(unpack(args))
- end
- wait(1) -- الانتظار بين كل عملية Rebirth
- end
- end)
- -- طباعة الحالة الحالية
- print("Auto Rebirth:", Value)
- end
- })
- local Section = Tab:AddSection({
- Name = "اخذ"
- })
- Tab:AddButton({
- Name = "تجميع جميع الدوائر",
- Callback = function()
- -- التحقق من الوقت الحالي
- local currentTime = tick()
- -- التحقق إذا كان قد مر الوقت الكافي بين الضغطات
- if currentTime - lastClickTime < cooldownTime then
- OrionLib:MakeNotification({
- Name = "كول داون!",
- Content = "يجب عليك الانتظار بضعه ثواني للتشغيل مجدداً.",
- Image = "rbxassetid://11242915823",
- Time = 3
- })
- return -- إيقاف تنفيذ الكود إذا لم يمض الوقت الكافي
- end
- -- تحديث وقت آخر ضغطه
- lastClickTime = currentTime
- -- إعلام المستخدم بأن العملية قيد التنفيذ
- OrionLib:MakeNotification({
- Name = "تجميع جميع الدوائر تشغيل",
- Content = "انتظر الى ان ينتهي (:",
- Image = "rbxassetid://11242915823",
- Time = 5
- })
- -- عملية جمع الـ Hoops كما هي
- local player = game.Players.LocalPlayer
- local humanoidRootPart = player.Character and player.Character:FindFirstChild("HumanoidRootPart")
- local waypoints = { -- قائمة الإحداثيات للتنقل
- CFrame.new(-532.4559326171875, 55.3661003112793, 209.96029663085938), -- 150 gem
- CFrame.new(-535.57666015625, 57.61077117919922, -133.741455078125), -- 200 gem
- CFrame.new(230.2322540283203, 93.80809783935547, 84.1273193359375), -- 400 gem
- CFrame.new(-87.75586700439453, 115.23426055908203, -113.9611587524414), -- 600 gem
- CFrame.new(-486.6810302734375, 104.41036224365234, 2505.17041015625), -- 850 gem
- CFrame.new(-11096.2958984375, 212.30308532714844, 4465.2470703125), -- 900 gem
- CFrame.new(1810.54541015625, 104.22494506835938, 4613.70068359375), -- 900 gem
- CFrame.new(-1644.7889404296875, 78.40953826904297, 5338.04150390625), -- 950 gem
- CFrame.new(-1747.6690673828125, 166.3074493408203, 5373.328125), -- 1k gem
- CFrame.new(-535.57666015625, 57.61077117919922, -133.741455078125), -- 1k gem
- CFrame.new(2057.45556640625, 173.78150939941406, 4377.63134765625), -- 1k gem
- CFrame.new(-13139.7236328125, 217.60643005371094, 4465.1796875), -- 1.2k gem
- CFrame.new(-13257.9365234375, 234.20530700683594, 4891.4697265625), -- 1.2k gem
- CFrame.new(-12987.556640625, 214.90867614746094, 5222.92529296875), -- 1.2k gem
- CFrame.new(3979.87060546875, 173.75469970703125, 5584.34375), -- 1k gem
- CFrame.new(4648.78466796875, 231.541015625, 5614.39013671875), -- 1.2k gem
- CFrame.new(5395.201171875, 306.1264343261719, 5881.7744140625), -- 1.2k gem
- CFrame.new(5686.0751953125, 349.0641174316406, 6496.5888671875), -- 1.2k gem
- CFrame.new(5361.0830078125, 312.0931396484375, 7023.3994140625), -- 1.2k gem
- CFrame.new(4516.20703125, 230.49229431152344, 7179.24169921875), -- 1.2k gem
- CFrame.new(3805.672607421875, 313.88421630859375, 7217.205078125), -- 1k gem
- CFrame.new(-15152.623046875, 366.7594299316406, 4142.0498046875), -- 1.5k gem
- CFrame.new(-15381.1162109375, 424.46966552734375, 4475.17041015625), -- 1.5k gem
- CFrame.new(-15171.9453125, 397.78607177734375, 4888.0009765625), -- 1.5k gem
- CFrame.new(1769.5302734375, 92.4613037109375, 12880.7900390625), -- 1k gem
- CFrame.new(2489.255126953125, 148.7982635498047, 12380.76953125), -- 2k gem
- CFrame.new(2333.1767578125, 174.19638061523438, 13370.1142578125), -- 2k gem
- CFrame.new(2488.914794921875, 144.59878540039062, 12381.7412109375), -- 2k gem
- CFrame.new(2091.757080078125, 260.5799560546875, 12879.7724609375) -- 3k gem
- }
- if humanoidRootPart then
- -- حفظ موقع اللاعب الأصلي
- local originalPosition = humanoidRootPart.CFrame
- -- التنقل بين النقاط
- for _, waypoint in ipairs(waypoints) do
- humanoidRootPart.CFrame = waypoint -- نقل اللاعب إلى النقطة
- wait(0.2) -- انتظار ثانية بين كل انتقال
- end
- -- إعادة اللاعب إلى موقعه الأصلي
- humanoidRootPart.CFrame = originalPosition
- end
- end
- })
- Tab:AddButton({
- Name = "تجميع جميع الصناديق",
- Callback = function()
- local currentTime = tick()
- -- التحقق إذا كان قد مر الوقت الكافي بين الضغطات
- if currentTime - lastClickTimeChest < cooldownTimeChest then
- OrionLib:MakeNotification({
- Name = "كول داون!",
- Content = "يجب عليك الانتظار بضعه ثواني للتشغيل مجدداً.",
- Image = "rbxassetid://11242915823",
- Time = 3
- })
- return -- إيقاف تنفيذ الكود إذا لم يمض الوقت الكافي
- end
- -- تحديث وقت آخر ضغطه
- lastClickTimeChest = currentTime
- -- إرسال إشعار عندما يضغط الزر لأول مرة
- OrionLib:MakeNotification({
- Name = "تجميع جميع الصناديق تشغيل",
- Content = "انتظر الى ان ينتهي (:",
- Image = "rbxassetid://11242915823",
- Time = 5
- })
- local player = game.Players.LocalPlayer
- local humanoidRootPart = player.Character and player.Character:FindFirstChild("HumanoidRootPart")
- local chestLocations = { -- قائمة الإحداثيات الخاصة بالصناديق
- CFrame.new(-492.78729248046875, 4.135346412658691, 396.2787170410156), -- 1
- CFrame.new(-670.9588623046875, 65.08531188964844, -263.6251525878906), -- 2
- CFrame.new(-1609.509765625, 22.879961013793945, -493.0561218261719), -- 3
- CFrame.new(-492.78729248046875, 4.135346412658691, 396.2787170410156), -- 4
- CFrame.new(-592.4029541015625, 73.08528137207031, 2144.636474609375), -- 5
- CFrame.new(-1574.2310791015625, 103.31879425048828, 5678.08203125), -- 6
- CFrame.new(2087.633544921875, 147.85488891601562, 12880.6357421875) -- 7
- }
- if humanoidRootPart then
- -- حفظ موقع اللاعب الأصلي
- local originalPosition = humanoidRootPart.CFrame
- -- التنقل إلى مواقع الصناديق
- for _, chestLocation in ipairs(chestLocations) do
- humanoidRootPart.CFrame = chestLocation
- wait(0.2) -- الانتظار بين كل حركة
- end
- -- إعادة اللاعب إلى موقعه الأصلي
- humanoidRootPart.CFrame = originalPosition
- end
- end
- })
- local Section = Tab:AddSection({
- Name = "سريع"
- })
- Tab:AddButton({
- Name = "ريبيث سريع بدون توقف | لازم تكون بعالم البدايه",
- Callback = function()
- print("button pressed")
- wait(1)
- _G.Rebirth = true
- while _G.Rebirth == true do wait(5)
- local tbl_main =
- {
- "rebirthRequest"
- }
- game:GetService("ReplicatedStorage").rEvents.rebirthEvent:FireServer(unpack(tbl_main))
- end
- end
- })
- Tab:AddButton({
- Name = "تلفيل سريع بدون توقف | لازم تكون بعالم البدايه",
- Callback = function()
- print("button pressed") _G.Loll = true
- while _G.Loll == true do wait(0.01)
- for i=1,500 do
- local tbl_main =
- {
- "collectOrb",
- "Red Orb",
- "City"
- }
- game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(tbl_main))
- local tbl_main =
- {
- "collectOrb",
- "Yellow Orb",
- "City"
- }
- game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(tbl_main))
- local tbl_main =
- {
- "collectOrb",
- "Gem",
- "City"
- }
- game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(tbl_main))
- local tbl_main =
- {
- "collectOrb",
- "Orange Orb",
- "City"
- }
- game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(tbl_main))
- local tbl_main =
- {
- "rebirthRequest"
- }
- game:GetService("ReplicatedStorage").rEvents.rebirthEvent:FireServer(unpack(tbl_main))
- end
- end
- end
- })
- Tab:AddButton({
- Name = "تجميع مجوهرات سريع بدون توقف | لازم تكون بعالم البدايه",
- Callback = function()
- print("button pressed")
- wait(1)
- _G.Farm2 = true
- while _G.Farm2 == true do wait()
- for i,v in pairs(game.Workspace.orbFolder.City:GetChildren()) do
- if v.Name == "Gem" then
- v.outerGem.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- end
- end
- end
- end
- })
- Tab:AddButton({
- Name = "تجميع خطوات سريع بدون توقف | لازم تكون بعالم البدايه",
- Callback = function()
- print("button pressed")
- wait(1)
- _G.Farm1 = true
- while _G.Farm1 == true do wait()
- for i,v in pairs(game.Workspace.orbFolder.City:GetChildren()) do
- if v.Name ~= "Gem" then
- v.outerOrb.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- end
- end
- end
- end
- })
- Tab:AddButton({
- Name = "تجميع حلقات سريع بدون توقف | لازم تكون بعالم البدايه",
- Callback = function()
- print("button pressed")
- wait(1)
- _G.Farm3 = true
- while _G.Farm3 == true do wait()
- for i,v in pairs(game.Workspace.Hoops:GetChildren()) do
- v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- end
- end
- end
- })
- local Tab = Window:MakeTab({
- Name = "المتجر",
- Icon = "rbxassetid://11385419674",
- PremiumOnly = false
- })
- local Section = Tab:AddSection({
- Name = "جميع الكريستالات للحيوانات و البراقات"
- })
- Tab:AddButton({
- Name = "Red Crystal (300 Gems)",
- Callback = function()
- local args = {
- [1] = "openCrystal",
- [2] = "Red Crystal"
- }
- game:GetService("ReplicatedStorage").rEvents.openCrystalRemote:InvokeServer(unpack(args))
- print("button pressed")
- end
- })
- Tab:AddButton({
- Name = "Blue Crystal (600 Gems)",
- Callback = function()
- local args = {
- [1] = "openCrystal",
- [2] = "Blue Crystal"
- }
- game:GetService("ReplicatedStorage").rEvents.openCrystalRemote:InvokeServer(unpack(args))
- print("button pressed")
- end
- })
- Tab:AddButton({
- Name = "Purple Crystal (1k Gems)",
- Callback = function()
- local args = {
- [1] = "openCrystal",
- [2] = "Purple Crystal"
- }
- game:GetService("ReplicatedStorage").rEvents.openCrystalRemote:InvokeServer(unpack(args))
- print("button pressed")
- end
- })
- Tab:AddButton({
- Name = "Blue Crystal (1.2k Gems)",
- Callback = function()
- local args = {
- [1] = "openCrystal",
- [2] = "Yellow Crystal"
- }
- game:GetService("ReplicatedStorage").rEvents.openCrystalRemote:InvokeServer(unpack(args))
- print("button pressed")
- end
- })
- Tab:AddButton({
- Name = "Lightning Crystal (2.5k Gems)",
- Callback = function()
- local args = {
- [1] = "openCrystal",
- [2] = "Lightning Crystal"
- }
- game:GetService("ReplicatedStorage").rEvents.openCrystalRemote:InvokeServer(unpack(args))
- print("button pressed")
- end
- })
- Tab:AddButton({
- Name = "Snow Crystal (4k Gems)",
- Callback = function()
- local args = {
- [1] = "openCrystal",
- [2] = "Snow Crystal"
- }
- game:GetService("ReplicatedStorage").rEvents.openCrystalRemote:InvokeServer(unpack(args))
- print("button pressed")
- end
- })
- Tab:AddButton({
- Name = "Lava Crystal (8k Gems)",
- Callback = function()
- local args = {
- [1] = "openCrystal",
- [2] = "Lava Crystal"
- }
- game:GetService("ReplicatedStorage").rEvents.openCrystalRemote:InvokeServer(unpack(args))
- print("button pressed")
- end
- })
- Tab:AddButton({
- Name = "Inferno Crystal (8k Gems)",
- Callback = function()
- local args = {
- [1] = "openCrystal",
- [2] = "Inferno Crystal"
- }
- game:GetService("ReplicatedStorage").rEvents.openCrystalRemote:InvokeServer(unpack(args))
- print("button pressed")
- end
- })
- Tab:AddButton({
- Name = "Electro Legends Crystal (100k Gems)",
- Callback = function()
- local args = {
- [1] = "openCrystal",
- [2] = "Electro Legends Crystal"
- }
- game:GetService("ReplicatedStorage").rEvents.openCrystalRemote:InvokeServer(unpack(args))
- print("button pressed")
- end
- })
- Tab:AddButton({
- Name = "Jungle Crystal (1m Gems)",
- Callback = function()
- local args = {
- [1] = "openCrystal",
- [2] = "Jungle Crystal"
- }
- game:GetService("ReplicatedStorage").rEvents.openCrystalRemote:InvokeServer(unpack(args))
- print("button pressed")
- end
- })
- local Tab = Window:MakeTab({
- Name = "التنقل",
- Icon = "rbxassetid://12598594243",
- PremiumOnly = false
- })
- local Section = Tab:AddSection({
- Name = "التنقلات"
- })
- Tab:AddButton({
- Name = "City",
- Callback = function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-520.4733276367188, 4.135346412658691, 239.06204223632812)
- print("button presseYd")
- end
- })
- Tab:AddButton({
- Name = "Snow City",
- Callback = function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-804.8424072265625, 4.235345840454102, 2199.63037109375)
- print("button pressed")
- end
- })
- Tab:AddButton({
- Name = "Magma City",
- Callback = function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1867.6026611328125, 4.235354423522949, 4331.1142578125)
- print("button pressed")
- end
- })
- Tab:AddButton({
- Name = "Legends Highway",
- Callback = function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3751.796630859375, 71.71527862548828, 5593.2412109375)
- print("button pressed")
- end
- })
- Tab:AddButton({
- Name = "Jungle City",
- Callback = function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1597.24609375, 3.569559335708618, 12879.607421875)
- print("button pressed")
- end
- })
- local Tab = Window:MakeTab({
- Name = "الاعب",
- Icon = "rbxassetid://2795572800",
- PremiumOnly = false
- })
- local Section = Tab:AddSection({
- Name = "المميزات"
- })
- Tab:AddToggle({
- Name = "كشف الاماكن",
- Default = false, -- القيمة الافتراضية
- Callback = function(Value)
- -- هنا السكربت
- -- حالة التبديل، إذا كانت قيمة الـ Toggle true، يتم تفعيل السكربت
- if Value then
- -- تفعيل السكربت (إضافة التمييز والأسماء)
- for _, player in pairs(game.Players:GetChildren()) do
- if player.Character and not player.Character:FindFirstChild("Highlight") then
- local highlight = Instance.new("Highlight", player.Character) -- إضافة Highlight للشخصية
- highlight.FillTransparency = 0
- highlight.OutlineTransparency = 0
- highlight.FillColor = Color3.fromRGB(0, 0, 255) -- لون أزرق
- -- إضافة اسم اللاعب فوق رأسه
- local head = player.Character:FindFirstChild("Head")
- if head and not head:FindFirstChild("PlayerNameBar") then
- local billboard = Instance.new("BillboardGui")
- billboard.Name = "PlayerNameBar"
- billboard.AlwaysOnTop = true
- billboard.Size = UDim2.new(0, 100, 0, 25)
- billboard.StudsOffset = Vector3.new(0, 2, 0)
- billboard.Adornee = head
- local textLabel = Instance.new("TextLabel")
- textLabel.Parent = billboard
- textLabel.BackgroundTransparency = 1
- textLabel.Text = player.Name
- textLabel.Size = UDim2.new(1, 0, 1, 0)
- textLabel.TextStrokeTransparency = 0
- textLabel.TextScaled = true
- -- تحديد اللون بناءً على الفريق
- if player.Team and player.Team.Name == "Marines" then
- textLabel.TextColor3 = Color3.fromRGB(0, 0, 255) -- أزرق للفريق Marines
- elseif player.Team and player.Team.Name == "Pirates" then
- textLabel.TextColor3 = Color3.fromRGB(255, 0, 0) -- أحمر للفريق Pirates
- else
- textLabel.TextColor3 = Color3.fromRGB(255, 255, 255) -- أبيض للفريق الآخر
- end
- billboard.Parent = head
- end
- end
- end
- else
- -- تعطيل السكربت (إزالة التمييز والأسماء)
- for _, player in pairs(game.Players:GetChildren()) do
- if player.Character then
- -- إزالة التمييز (Highlight)
- if player.Character:FindFirstChild("Highlight") then
- player.Character.Highlight:Destroy()
- end
- -- إزالة اسم اللاعب
- local head = player.Character:FindFirstChild("Head")
- if head and head:FindFirstChild("PlayerNameBar") then
- head.PlayerNameBar:Destroy()
- end
- end
- end
- end
- print("ESP Toggled:", Value) -- طباعة حالة التبديل
- end
- })
- Tab:AddButton({
- Name = "الطيران",
- Callback = function()
- -- تشغيل السكربت من Pastebin
- local scriptUrl = "https://pastebin.com/raw/vL2SMxUV"
- local success, err = pcall(function()
- loadstring(game:HttpGet(scriptUrl))() -- تحميل السكربت وتشغيله
- end)
- if not success then
- warn("Error loading script: " .. err) -- في حال حدوث خطأ
- end
- print("Fly button pressed") -- طباعة عند الضغط على الزر
- end
- })
- Tab:AddButton({
- Name = "تسريع الجهاز",
- Callback = function()
- -- تشغيل السكربت من Pastebin
- local scriptUrl = "https://raw.githubusercontent.com/CasperFlyModz/discord.gg-rips/main/FPSBooster.lua"
- local success, err = pcall(function()
- loadstring(game:HttpGet(scriptUrl))() -- تحميل السكربت وتشغيله
- end)
- if not success then
- warn("Error loading script: " .. err) -- في حال حدوث خطأ
- end
- print("Fly button pressed") -- طباعة عند الضغط على الزر
- end
- })
- local Tab = Window:MakeTab({
- Name = "ثاني",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- Tab:AddToggle({
- Name = "عدم الموت",
- Default = false,
- Callback = function(value)
- getgenv().God = (value)
- while getgenv().God == true do
- game.Players.LocalPlayer.Character.Humanoid:Remove()
- Instance.new('Humanoid', game.Players.LocalPlayer.Character)
- game:GetService("Workspace")[game.Players.LocalPlayer.Name]:FindFirstChildOfClass(
- 'Humanoid').HipHeight = 2
- wait(10)
- end
- end
- })
- Tab:AddButton({
- Name = "سكربت طيران",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/YSL3xKYU'))()
- end
- })
- Tab:AddButton({
- Name = "راس مخفي",
- Callback = function()
- game.Players.localPlayer.Character.Head.Size = Vector3.new(0,0,0)
- end
- })
- Tab:AddButton({
- Name = "سكربت ادمن",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end
- })
- Tab:AddButton({
- Name = "سكربت ادمن 2",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/BloodyBurns/Hex/main/Iv%20Admin%20v3.lua'))()
- end
- })
- local Tab = Window:MakeTab({
- Name = "التخريب",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- Tab:AddButton({
- Name = "تحديد الشخص الي تبي تطيره",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/main/Auto%20Fling%20Player'))()
- end
- })
- Tab:AddButton({
- Name = "سكربت تنقل",
- Callback = function()
- -- Load the Kavo UI Library
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- -- Create a new window with the DarkTheme
- local Window = Library.CreateLib("التنقل", "BloodTheme")
- -- Create a new tab in the window
- local Tab = Window:NewTab("التنقل")
- -- Create a new section in the tab
- local Section = Tab:NewSection("الانتقال الى اللاعب")
- -- Create a textbox for the player's username
- Section:NewTextBox("اسم اللاعب", "Enter the username of the player you want to teleport to", function(username)
- -- Store the entered username for later use
- _G.targetUsername = username
- end)
- -- Create a button that will teleport the player when clicked
- Section:NewButton("تنقل | TELEPORT", "Teleport to the entered player", function()
- -- Get the Players service
- local Players = game:GetService("Players")
- -- Get the local player
- local player = Players.LocalPlayer
- -- Find the target player in the game
- local targetPlayer = Players:FindFirstChild(_G.targetUsername)
- -- Check that the target player exists and has a character
- if targetPlayer and targetPlayer.Character then
- -- Teleport the player to the target player
- player.Character.HumanoidRootPart.CFrame = targetPlayer.Character.HumanoidRootPart.CFrame
- else
- print("Target player not found or does not have a character.")
- end
- end)
- end
- })
- Tab:AddButton({
- Name = "طيران الكل",
- Callback = function()
- print("Before the while loop")
- local Targets = {"All"} -- "All", "Target Name", "Target name can be shortened"
- local Players = game:GetService("Players")
- local Player = Players.LocalPlayer
- local AllBool = falseasa
- local GetPlayer = function(Name)
- Name = Name:lower()
- if Name == "all" or Name == "others" then
- AllBool = true
- return
- elseif Name == "random" then
- local GetPlayers = Players:GetPlayers()
- if table.find(GetPlayers,Player) then table.remove(GetPlayers,table.find(GetPlayers,Player)) end
- return GetPlayers[math.random(#GetPlayers)]
- elseif Name ~= "random" and Name ~= "all" and Name ~= "others" then
- for _,x in next, Players:GetPlayers() do
- if x ~= Player then
- if x.Name:lower():match("^"..Name) then
- return x;
- elseif x.DisplayName:lower():match("^"..Name) then
- return x;
- end
- end
- end
- else
- return
- end
- end
- local Message = function(_Title, _Text, Time)
- game:GetService("StarterGui"):SetCore("SendNotification", {Title = _Title, Text = _Text, Duration = Time})
- end
- local SkidFling = function(TargetPlayer)
- local Character = Player.Character
- local Humanoid = Character and Character:FindFirstChildOfClass("Humanoid")
- local RootPart = Humanoid and Humanoid.RootPart
- local TCharacter = TargetPlayer.Character
- local THumanoid
- local TRootPart
- local THead
- local Accessory
- local Handle
- if TCharacter:FindFirstChildOfClass("Humanoid") then
- THumanoid = TCharacter:FindFirstChildOfClass("Humanoid")
- end
- if THumanoid and THumanoid.RootPart then
- TRootPart = THumanoid.RootPart
- end
- if TCharacter:FindFirstChild("Head") then
- THead = TCharacter.Head
- end
- if TCharacter:FindFirstChildOfClass("Accessory") then
- Accessory = TCharacter:FindFirstChildOfClass("Accessory")
- end
- if Accessoy and Accessory:FindFirstChild("Handle") then
- Handle = Accessory.Handle
- end
- if Character and Humanoid and RootPart then
- if RootPart.Velocity.Magnitude < 50 then
- getgenv().OldPos = RootPart.CFrame
- end
- if THumanoid and THumanoid.Sit and not AllBool then
- return Message("Error Occurred", "Targeting is sitting", 5) -- u can remove dis part if u want lol
- end
- if THead then
- workspace.CurrentCamera.CameraSubject = THead
- elseif not THead and Handle then
- workspace.CurrentCamera.CameraSubject = Handle
- elseif THumanoid and TRootPart then
- workspace.CurrentCamera.CameraSubject = THumanoid
- end
- if not TCharacter:FindFirstChildWhichIsA("BasePart") then
- return
- end
- local FPos = function(BasePart, Pos, Ang)
- RootPart.CFrame = CFrame.new(BasePart.Position) * Pos * Ang
- Character:SetPrimaryPartCFrame(CFrame.new(BasePart.Position) * Pos * Ang)
- RootPart.Velocity = Vector3.new(9e7, 9e7 * 10, 9e7)
- RootPart.RotVelocity = Vector3.new(9e8, 9e8, 9e8)
- end
- local SFBasePart = function(BasePart)
- local TimeToWait = 0.1
- local Time = tick()
- local Angle = 0
- repeat
- if RootPart and THumanoid then
- if BasePart.Velocity.Magnitude < 50 then
- Angle = Angle + 100
- FPos(BasePart, CFrame.new(0, 1.5, 0) + THumanoid.MoveDirection * BasePart.Velocity.Magnitude / 1.25, CFrame.Angles(math.rad(Angle),0 ,0))
- task.wait()
- FPos(BasePart, CFrame.new(0, -1.5, 0) + THumanoid.MoveDirection * BasePart.Velocity.Magnitude / 1.25, CFrame.Angles(math.rad(Angle), 0, 0))
- task.wait()
- FPos(BasePart, CFrame.new(2.25, 1.5, -2.25) + THumanoid.MoveDirection * BasePart.Velocity.Magnitude / 1.25, CFrame.Angles(math.rad(Angle), 0, 0))
- task.wait()
- FPos(BasePart, CFrame.new(-2.25, -1.5, 2.25) + THumanoid.MoveDirection * BasePart.Velocity.Magnitude / 1.25, CFrame.Angles(math.rad(Angle), 0, 0))
- task.wait()
- FPos(BasePart, CFrame.new(0, 1.5, 0) + THumanoid.MoveDirection,CFrame.Angles(math.rad(Angle), 0, 0))
- task.wait()
- FPos(BasePart, CFrame.new(0, -1.5, 0) + THumanoid.MoveDirection,CFrame.Angles(math.rad(Angle), 0, 0))
- task.wait()
- else
- FPos(BasePart, CFrame.new(0, 1.5, THumanoid.WalkSpeed), CFrame.Angles(math.rad(90), 0, 0))
- task.wait()
- FPos(BasePart, CFrame.new(0, -1.5, -THumanoid.WalkSpeed), CFrame.Angles(0, 0, 0))
- task.wait()
- FPos(BasePart, CFrame.new(0, 1.5, THumanoid.WalkSpeed), CFrame.Angles(math.rad(90), 0, 0))
- task.wait()
- FPos(BasePart, CFrame.new(0, 1.5, TRootPart.Velocity.Magnitude / 1.25), CFrame.Angles(math.rad(90), 0, 0))
- task.wait()
- FPos(BasePart, CFrame.new(0, -1.5, -TRootPart.Velocity.Magnitude / 1.25), CFrame.Angles(0, 0, 0))
- task.wait()
- FPos(BasePart, CFrame.new(0, 1.5, TRootPart.Velocity.Magnitude / 1.25), CFrame.Angles(math.rad(90), 0, 0))
- task.wait()
- FPos(BasePart, CFrame.new(0, -1.5, 0), CFrame.Angles(math.rad(90), 0, 0))
- task.wait()
- FPos(BasePart, CFrame.new(0, -1.5, 0), CFrame.Angles(0, 0, 0))
- task.wait()
- FPos(BasePart, CFrame.new(0, -1.5 ,0), CFrame.Angles(math.rad(-90), 0, 0))
- task.wait()
- FPos(BasePart, CFrame.new(0, -1.5, 0), CFrame.Angles(0, 0, 0))
- task.wait()
- end
- else
- break
- end
- until BasePart.Velocity.Magnitude > 500 or BasePart.Parent ~= TargetPlayer.Character or TargetPlayer.Parent ~= Players or not TargetPlayer.Character == TCharacter or THumanoid.Sit or Humanoid.Health <= 0 or tick() > Time + TimeToWait
- end
- workspace.FallenPartsDestroyHeight = 0/0
- local BV = Instance.new("BodyVelocity")
- BV.Name = "EpixVel"
- BV.Parent = RootPart
- BV.Velocity = Vector3.new(9e8, 9e8, 9e8)
- BV.MaxForce = Vector3.new(1/0, 1/0, 1/0)
- Humanoid:SetStateEnabled(Enum.HumanoidStateType.Seated, false)
- if TRootPart and THead then
- if (TRootPart.CFrame.p - THead.CFrame.p).Magnitude > 5 then
- SFBasePart(THead)
- else
- SFBasePart(TRootPart)
- end
- elseif TRootPart and not THead then
- SFBasePart(TRootPart)
- elseif not TRootPart and THead then
- SFBasePart(THead)
- elseif not TRootPart and not THead and Accessory and Handle then
- SFBasePart(Handle)
- else
- return Message("Error Occurred", "Target is missing everything", 5)
- end
- BV:Destroy()
- Humanoid:SetStateEnabled(Enum.HumanoidStateType.Seated, true)
- workspace.CurrentCamera.CameraSubject = Humanoid
- repeat
- RootPart.CFrame = getgenv().OldPos * CFrame.new(0, .5, 0)
- Character:SetPrimaryPartCFrame(getgenv().OldPos * CFrame.new(0, .5, 0))
- Humanoid:ChangeState("GettingUp")
- table.foreach(Character:GetChildren(), function(_, x)
- if x:IsA("BasePart") then
- x.Velocity, x.RotVelocity = Vector3.new(), Vector3.new()
- end
- end)
- task.wait()
- until (RootPart.Position - getgenv().OldPos.p).Magnitude < 25
- workspace.FallenPartsDestroyHeight = getgenv().FPDH
- else
- return Message("Error Occurred", "Random error", 5)
- end
- end
- if not Welcome then Message("Script by DranghetaSm0ke", "Enjoy!", 5) end
- getgenv().Welcome = true
- if Targets[1] then for _,x in next, Targets do GetPlayer(x) end else return end
- if AllBool then
- for _,x in next, Players:GetPlayers() do
- SkidFling(x)
- end
- end
- for _,x in next, Targets do
- if GetPlayer(x) and GetPlayer(x) ~= Player then
- if GetPlayer(x).UserId ~= 1414978355 then
- local TPlayer = GetPlayer(x)
- if TPlayer then
- SkidFling(TPlayer)
- end
- else
- Message("Error Occurred", "This user is whitelisted! (Owner)", 5)
- end
- elseif not GetPlayer(x) and not AllBool then
- Message("Error Occurred", "Username Invalid", 5)
- end
- end
- local WhitelistedPlayers = {
- [123456789] = true, -- Replace with the actual UserId of whitelisted players
- [987654321] = true,
- }
- local function IsPlayerWhitelisted(player)
- local userId = player.UserId
- return WhitelistedPlayers[userId] or false
- end
- return IsPlayerWhitelisted
- end
- })
- local Tab = Window:MakeTab({
- Name = "االاعدادات",
- Icon = "rbxassetid://11385220704",
- PremiumOnly = false
- })
- local Section = Tab:AddSection({
- Name = "اعدادات الاعب"
- })
- Tab:AddSlider({
- Name = "السرعه",
- Min = 0,
- Max = 2000,
- Default = 150,
- Color = Color3.fromRGB(255, 255, 255),
- Increment = 5,
- ValueName = "سرعة",
- Callback = function(Value)
- -- طباعة القيمة التي اختارها المستخدم
- print("Selected Speed: " .. Value)
- -- ربط السكربت بتغيير السرعة
- local args = {
- [1] = "changeSpeed", -- اسم الإجراء
- [2] = Value -- القيمة التي تم تحديدها من الـ Slider
- }
- -- استدعاء الـ RemoteEvent لتغيير السرعة باستخدام القيمة المختارة
- game:GetService("ReplicatedStorage"):WaitForChild("rEvents"):WaitForChild("changeSpeedJumpRemote"):InvokeServer(unpack(args))
- end
- })
- Tab:AddSlider({
- Name = "القفزة",
- Min = 0,
- Max = 2000,
- Default = 150,
- Color = Color3.fromRGB(255, 255, 255),
- Increment = 5,
- ValueName = "القفز",
- Callback = function(Value)
- -- طباعة القيمة التي اختارها المستخدم
- print("Selected Jump: " .. Value)
- -- ربط السكربت بتغيير القفز (Jump)
- local args = {
- [1] = "changeJump", -- اسم الإجراء
- [2] = Value -- القيمة التي تم تحديدها من الـ Slider
- }
- -- استدعاء الـ RemoteEvent لتغيير الجَنب باستخدام القيمة المختارة
- game:GetService("ReplicatedStorage"):WaitForChild("rEvents"):WaitForChild("changeSpeedJumpRemote"):InvokeServer(unpack(args))
- end
- })
- local Section = Tab:AddSection({
- Name = "العبة"
- })
- Tab:AddButton({
- Name = "تفعيل جميع الاكواد",
- Callback = function()
- OrionLib:MakeNotification({
- Name = "تم التفعيل جميع الاكواد",
- Content = "تم التفعيل",
- Image = "rbxassetid://11242915823",
- Time = 5
- })
- -- قائمة الأكواد التي تريد تفعيلها
- local codes = {
- "SPRINT250",
- "hyper250",
- "racer300",
- "launch200",
- "sparkles300",
- "legends500",
- "speedchampion000",
- "Jungleracer5000"
- }
- -- تفعيل كل الكودات في القائمة
- for _, code in pairs(codes) do
- local args = {
- [1] = code
- }
- game:GetService("ReplicatedStorage"):WaitForChild("rEvents"):WaitForChild("codeRemote"):InvokeServer(unpack(args))
- print("Redeemed code: " .. code)
- end
- end
- })
- Tab:AddButton({
- Name = "اعادة دخول الى السيرفر",
- Callback = function()
- print("Rejoining the server...")
- -- الحصول على الـ Job ID الخاص بالسيرفر الحالي
- local jobId = game.JobId
- -- استخدام TeleportService لإعادة دخول اللاعب إلى نفس السيرفر
- TeleportService:TeleportToPlaceInstance(game.PlaceId, jobId, game.Players.LocalPlayer)
- end
- })
- Tab:AddToggle({
- Name = "تجميع هدايا الوقت تلقائي",
- Default = false,
- Callback = function(Value)
- if Value then
- -- عندما يتم تفعيل التبديل
- while Value do
- for i = 1, 8 do
- local args = {
- [1] = "claimGift",
- [2] = i -- تفعيل الهدايا من 1 إلى 8
- }
- game:GetService("ReplicatedStorage"):WaitForChild("rEvents"):WaitForChild("freeGiftClaimRemote"):InvokeServer(unpack(args))
- end
- wait(1) -- الانتظار لمدة ثانية واحدة قبل التكرار
- end
- end
- end
- })
- local Section = Tab:AddSection({
- Name = "الحجر"
- })
- Tab:AddSlider({
- Name = "سرعة تجميع الاحجار",
- Min = 0.01,
- Max = 2,
- Default = 0.20,
- Color = Color3.fromRGB(255, 255, 255),
- Increment = 0.01,
- ValueName = "سرعة",
- Callback = function(Value)
- print("Selected Collect Speed: " .. Value)
- collectSpeed = Value
- end,
- CustomTouchHandler = function(slider, knob) -- التعامل مع اللمس
- local UIS = game:GetService("UserInputService")
- local dragging = false
- knob.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.Touch then
- dragging = true
- end
- end)
- knob.InputEnded:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.Touch then
- dragging = false
- end
- end)
- UIS.InputChanged:Connect(function(input)
- if dragging and input.UserInputType == Enum.UserInputType.Touch then
- local sliderSize = slider.AbsoluteSize.X
- local sliderPos = slider.AbsolutePosition.X
- local inputPos = input.Position.X
- local percent = math.clamp((inputPos - sliderPos) / sliderSize, 0, 1)
- local value = (percent * (slider.Max - slider.Min)) + slider.Min
- value = math.floor(value / slider.Increment) * slider.Increment
- knob.Position = UDim2.new(percent, 0, 0.5, 0)
- slider.Callback(value)
- end
- end)
- end
- })
- Tab:AddSlider({
- Name = "عدد تجميع الاحجار",
- Min = 0,
- Max = 300,
- Default = 25, -- قيمة الافتراضية
- Color = Color3.fromRGB(255, 255, 255),
- Increment = 1,
- ValueName = "الاحجار",
- Callback = function(Value)
- print("Selected Orbs: " .. Value)
- -- تحديث قيمة الـ multiplier بناءً على القيمة التي اختارها المستخدم
- multiplier = Value
- end
- })
- local Section = Tab:AddSection({
- Name = "الجواهر"
- })
- Tab:AddSlider({
- Name = "سرعه تجميع الجواهر",
- Min = 0.01,
- Max = 2,
- Default = 0.20,
- Color = Color3.fromRGB(255, 255, 255),
- Increment = 0.01,
- ValueName = "سرعة",
- Callback = function(Value)
- print("Selected Collect Speed Gems: " .. Value)
- -- تحديث سرعة جمع الجواهر بناءً على القيمة التي اختارها المستخدم
- collectSpeedGems = Value
- end
- })
- Tab:AddSlider({
- Name = "عدد تجميع الجواهر",
- Min = 0,
- Max = 300,
- Default = 25, -- قيمة الافتراضية
- Color = Color3.fromRGB(255, 255, 255),
- Increment = 1,
- ValueName = "الجواهر",
- Callback = function(Value)
- print("Selected Gems Multiplier: " .. Value)
- -- تحديث قيمة الـ gemMultiplier بناءً على القيمة التي اختارها المستخدم
- gemMultiplier = Value
- end
- })
- Tab:AddColorpicker({
- Name = "اختار لون السكربت",
- Default = Color3.fromRGB(255, 0, 0),
- Callback = function(Value)
- print(Value)
- end
- })
- --[[
- Name = <string> - The name of the colorpicker.
- Default = <color3> - The default value of the colorpicker.
- Callback = <function> - The function of the colorpicker.
- ]]local Tab = Window:MakeTab({
- Name = "التحديثات",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --[[
- Name = <string> - The name of the section.
- ]]local Section = Tab:AddSection({
- Name = "تحديث رقم0.1"
- })
- local Tab = Window:MakeTab({
- Name = "الحقوق",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local Section = Tab:AddSection({
- Name = "المطورين : محمد و ايوب"
- })
- OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement