--[[ Kurdish Rayfield Hub - v13.2 پشتیوانی KRNL و Delta دروستکراوە لەلایەن HediPlayz یوتیوب: https://www.youtube.com/@HediPlayz --]] local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))() local Window = Rayfield:CreateWindow({ Name = "🖤 مینیووی کوردی - v13.2", LoadingTitle = "بارکردنی مینیو...", LoadingSubtitle = "تکایە چاوەڕێ بکە...", ConfigurationSaving = { Enabled = false }, Discord = { Enabled = false }, KeySystem = false, BackgroundTransparency = 0.8 -- Added background transparency fix }) local currentDate = "7/28/2025" -- Updated date ---------------------------------------- -- Main Tab (Fly Menu) ---------------------------------------- local MainTab = Window:CreateTab("✈️ فڕین") MainTab:CreateLabel("ڕۆژ: " .. currentDate) -- Fly System MainTab:CreateButton({ Name = "فڕین چالاک بکە", Callback = function() Rayfield:Notify({ Title = "فڕین", Content = "سکریپتی فڕین بار دەکرێت...", Duration = 4 }) loadstring(game:HttpGet("https://pastefy.app/p6I9pVa5/raw"))() end }) -- Server Management in Fly Menu MainTab:CreateSection("بەڕێوەبەری سێرڤەر") MainTab:CreateButton({ Name = "🌐 گواستنەوە بۆ سێرڤەری تر", Callback = function() Rayfield:Notify({ Title = "گواستنەوە بۆ سێرڤەری تر", Content = "گەڕان بۆ سێرڤەری نوێ...", Duration = 3 }) -- Fixed server hop function local Http = game:GetService("HttpService") local TPS = game:GetService("TeleportService") local PlaceID = game.PlaceId local serversUrl = "https://games.roblox.com/v1/games/"..PlaceID.."/servers/Public?sortOrder=Asc&limit=100" local function findServer() local response = Http:JSONDecode(game:HttpGet(serversUrl)) for _, v in ipairs(response.data) do if v.playing < v.maxPlayers and v.id ~= game.JobId then return v.id end end return nil end local serverId = findServer() if serverId then TPS:TeleportToPlaceInstance(PlaceID, serverId) else Rayfield:Notify({ Title = "هەڵە", Content = "هیچ سێرڤەرێکی تر نەدۆزرایەوە", Duration = 5 }) end end }) MainTab:CreateButton({ Name = "🔄 دووبارە بەشداریکردن لە یاری", Callback = function() Rayfield:Notify({ Title = "دووبارە بەشداریکردن", Content = "دووبارە بەشداریکردن لە یاریەکە...", Duration = 3 }) wait(1.5) game:GetService("TeleportService"):Teleport(game.PlaceId) end }) -- Noclip local noclipActive = false local noclipConnection MainTab:CreateToggle({ Name = "🚪 ڕۆیشتن لە ناو دیوارەکان (نۆکلێپ)", CurrentValue = false, Callback = function(Value) noclipActive = Value if noclipActive then noclipConnection = game:GetService("RunService").Stepped:Connect(function() local char = game.Players.LocalPlayer.Character if char then for _, v in pairs(char:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end end) Rayfield:Notify({ Title = "نۆکلێپ", Content = "چالاککرا", Duration = 2 }) else if noclipConnection then noclipConnection:Disconnect() end local char = game.Players.LocalPlayer.Character if char then for _, v in pairs(char:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = true end end end Rayfield:Notify({ Title = "نۆکلێپ", Content = "وەستاندر", Duration = 2 }) end end, }) -- Speed Slider local defaultSpeed = 16 MainTab:CreateSlider({ Name = "⚡ خێرایی", Range = {16, 200}, Increment = 5, CurrentValue = 16, Callback = function(Value) local humanoid = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.WalkSpeed = Value Rayfield:Notify({ Title = "خێرایی", Content = "خێرایی ڕێکخرا بۆ "..Value, Duration = 2 }) end end, }) -- Jump Slider local defaultJump = 50 MainTab:CreateSlider({ Name = "🏃 بازدان", Range = {50, 200}, Increment = 10, CurrentValue = 50, Callback = function(Value) local humanoid = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.JumpPower = Value Rayfield:Notify({ Title = "بازدان", Content = "بازدان ڕێکخرا بۆ "..Value, Duration = 2 }) end end, }) ---------------------------------------- -- Teleport Tab (With Auto-Reset) ---------------------------------------- local TeleportTab = Window:CreateTab("🚀 تێلەپۆرت", true) -- Store buttons for easy removal local teleportButtons = {} local teleportResetTimer = 0 local teleportResetInterval = 60 -- Reset every 60 seconds local function updateTeleportList() -- Remove old buttons for _, button in ipairs(teleportButtons) do button:Destroy() end teleportButtons = {} -- Create new buttons for _, player in pairs(game.Players:GetPlayers()) do if player ~= game.Players.LocalPlayer then local button = TeleportTab:CreateButton({ Name = "📍 تێلەپۆرت بۆ "..player.Name, Callback = function() local targetChar = player.Character local myChar = game.Players.LocalPlayer.Character if targetChar and targetChar:FindFirstChild("HumanoidRootPart") and myChar and myChar:FindFirstChild("HumanoidRootPart") then myChar.HumanoidRootPart.CFrame = targetChar.HumanoidRootPart.CFrame * CFrame.new(0, 3, 0) Rayfield:Notify({ Title = "تێلەپۆرت کرا", Content = "بۆ "..player.Name, Duration = 3 }) else Rayfield:Notify({ Title = "هەڵە", Content = "پلەیرەکە یان چەریکترەکە نییە", Duration = 3 }) end end }) table.insert(teleportButtons, button) end end end -- Initial creation updateTeleportList() -- Auto-reset timer game:GetService("RunService").Heartbeat:Connect(function(delta) teleportResetTimer = teleportResetTimer + delta if teleportResetTimer >= teleportResetInterval then teleportResetTimer = 0 updateTeleportList() Rayfield:Notify({ Title = "تێلەپۆرت", Content = "لیستی پلەیەرەکان نوێکرایەوە", Duration = 2 }) end end) -- Automatically update when players join/leave game.Players.PlayerAdded:Connect(function(player) wait(0.5) updateTeleportList() Rayfield:Notify({ Title = "پلەیەری نوێ", Content = player.Name .. " بەشداریکرد", Duration = 3 }) end) game.Players.PlayerRemoving:Connect(function(player) wait(0.5) updateTeleportList() Rayfield:Notify({ Title = "پلەیەری نوێ", Content = player.Name .. " یارییەکەی بەجێهێشت", Duration = 3 }) end) ---------------------------------------- -- Head Sitting Tab (Enhanced) ---------------------------------------- local HeadSittingTab = Window:CreateTab("🧘 دانشتن لە سەر سەری نەفەر", true) -- Head sitting system local headSittingButtons = {} local headSittingSelectedPlayer = nil local headSittingActive = false local headSittingConnection = nil local headSittingResetTimer = 0 local headSittingResetInterval = 60 -- Reset every 60 seconds -- Function to update head sitting list local function updateHeadSittingList() -- Remove old buttons for _, button in ipairs(headSittingButtons) do button:Destroy() end headSittingButtons = {} -- Create new buttons for _, player in pairs(game.Players:GetPlayers()) do if player ~= game.Players.LocalPlayer then local button = HeadSittingTab:CreateButton({ Name = "🧘 هەڵبژاردنی "..player.Name, Callback = function() headSittingSelectedPlayer = player Rayfield:Notify({ Title = "هەڵبژاردن", Content = player.Name .. " هەڵبژێردرا", Duration = 2 }) end }) table.insert(headSittingButtons, button) end end end -- Head sitting toggle local headSittingToggle = HeadSittingTab:CreateToggle({ Name = "دانشتن لە سەر سەری نەفەر", CurrentValue = false, Callback = function(Value) headSittingActive = Value if headSittingActive then if not headSittingSelectedPlayer then Rayfield:Notify({ Title = "هەڵە", Content = "تکایە یەکێک لە پلەیەرەکان هەڵبژێرە", Duration = 3 }) headSittingToggle:Set(false) return end Rayfield:Notify({ Title = "دانشتن لە سەر سەری نەفەر", Content = "چالاککرا بۆ " .. headSittingSelectedPlayer.Name, Duration = 3 }) headSittingConnection = game:GetService("RunService").Heartbeat:Connect(function(delta) headSittingResetTimer = headSittingResetTimer + delta -- Auto-reset every minute if headSittingResetTimer >= headSittingResetInterval then headSittingResetTimer = 0 -- Stand up briefly to reset local myChar = game.Players.LocalPlayer.Character if myChar then local humanoid = myChar:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.Sit = false wait(0.2) end end end -- Position above head local targetChar = headSittingSelectedPlayer.Character local myChar = game.Players.LocalPlayer.Character if targetChar and targetChar:FindFirstChild("Head") and myChar and myChar:FindFirstChild("HumanoidRootPart") then myChar.HumanoidRootPart.CFrame = targetChar.Head.CFrame * CFrame.new(0, 2, 0) -- Force sit local humanoid = myChar:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.Sit = true end end end) else if headSittingConnection then headSittingConnection:Disconnect() headSittingConnection = nil end -- Stand up local myChar = game.Players.LocalPlayer.Character if myChar then local humanoid = myChar:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.Sit = false end end Rayfield:Notify({ Title = "دانشتن لە سەر سەری نەفەر", Content = "وەستاندر", Duration = 3 }) end end }) -- Initial creation updateHeadSittingList() -- Auto-reset timer for head sitting list game:GetService("RunService").Heartbeat:Connect(function(delta) headSittingResetTimer = headSittingResetTimer + delta if headSittingResetTimer >= headSittingResetInterval then headSittingResetTimer = 0 updateHeadSittingList() end end) -- Automatically update when players join/leave game.Players.PlayerAdded:Connect(function(player) wait(0.5) updateHeadSittingList() Rayfield:Notify({ Title = "پلەیەری نوێ", Content = player.Name .. " بەشداریکرد", Duration = 3 }) end) game.Players.PlayerRemoving:Connect(function(player) wait(0.5) -- Check if the leaving player is the one we're sitting on if headSittingSelectedPlayer == player then if headSittingConnection then headSittingConnection:Disconnect() headSittingConnection = nil end -- Stand up local myChar = game.Players.LocalPlayer.Character if myChar then local humanoid = myChar:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.Sit = false end end -- Reset toggle headSittingToggle:Set(false) headSittingSelectedPlayer = nil Rayfield:Notify({ Title = "پلەیەرەکە ڕۆیشت", Content = player.Name .. " یارییەکەی بەجێهێشت. سیستەمی دانشتن لە سەر سەر ڕیست کرا.", Duration = 5 }) end updateHeadSittingList() end) ---------------------------------------- -- Game Scripts Tab ---------------------------------------- local GamesTab = Window:CreateTab("🎮 یاریەکان", true) GamesTab:CreateButton({ Name = "🔫 MM2 سکریپت", Callback = function() Rayfield:Notify({ Title = "بارکردنی سکریپت", Content = "سکریپتی MM2 بار دەکرێت...", Duration = 4 }) loadstring(game:HttpGet("https://raw.githubusercontent.com/Joystickplays/psychic-octo-invention/main/yarhm.lua"))() end }) GamesTab:CreateParagraph({ Title = "یارییە نوێکان", Content = "سکریپتەکانی یارییە نوێکان بەم زووانە زیاد دەکرێن" }) ---------------------------------------- -- Info Tab (Updated) ---------------------------------------- local InfoTab = Window:CreateTab("ℹ️ زانیاری", true) InfoTab:CreateLabel("مینیووی کوردی - v13.2") InfoTab:CreateParagraph({ Title = "دەربارەی ئەم مینیوویە", Content = "ئەم مینیوویە بۆ یاری ڕۆبلۆکس دروستکراوە و بە زمانی کوردییە. فیتەرەکان بریتین لە فڕین، نۆکلێپ، زیادکردنی خێرایی و بازدان، تێلەپۆرت و سکریپتی یاریەکان." }) InfoTab:CreateParagraph({ Title = "پشتیوانی ئەکێکیوتەرەکان", Content = "🟢 ئێستا ئەم مینیوویە بە تەواوی کار دەکات لە KRNL و Delta Executor ـەوە!" }) InfoTab:CreateParagraph({ Title = "یوتیوب چەنەڵ", Content = "https://www.youtube.com/@HediPlayz" }) InfoTab:CreateLabel("ڕۆژ: " .. currentDate) local clockLabel = InfoTab:CreateLabel("کات: " .. os.date("%H:%M:%S")) spawn(function() while true do clockLabel:Set("کات: " .. os.date("%H:%M:%S")) wait(1) end end) -- Added detailed update information InfoTab:CreateParagraph({ Title = "گۆڕانکارییەکانی v13.2", Content = "- چاککردنی سیستەمی گواستنەوەی سێرڤەر\n" .. "- گواستنەوەی هەموو فیتەرەکانی سێرڤەر بۆ مینیووی فڕین\n" .. "- زیادکردنی تایبەتمەندی ڕیستکردنی خۆکار بۆ سیستەمی 'دانشتن لە سەر سەری نەفەر'\n" .. "- چاککردنی بارکردنی سکریپتەکان\n" .. "- زیادکردنی ئاگادارکردنەوەی زیاتر بۆ یەکەوەچوون و جیابوونەوەی پلەیەرەکان\n" .. "- چاککردنی پاشبنەما بۆ باشتر بینینی" }) InfoTab:CreateParagraph({ Title = "سیستەمی گواستنەوەی سێرڤەر", Content = "ئێستا سیستەمی گواستنەوەی سێرڤەر بە شێوەیەکی دروست کار دەکات و سێرڤەرە بەردەستەکان دەدۆزێتەوە" }) InfoTab:CreateParagraph({ Title = "پاشبنەما نوێکراوە", Content = "پاشبنەما چاککراوە و ڕوونتر کراوە بۆ ئاسانکارییەکی زیاتر" }) Rayfield:Notify({ Title = "بەخێربێیت", Content = "مینیووی کوردی v13.2 بە سەرکەوتوویی بارکرا! پشتیوانی دەکات لە KRNL و Delta!", Duration = 5 })