Kya aap iske feature bata sakte hain script -- Fly & No-Clip Fixed Script for Going Under Map local Players = game:GetService("Players") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local workspace = game:GetService("Workspace") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") if playerGui:FindFirstChild("FixedPanelGui") then playerGui.FixedPanelGui:Destroy() end local screenGui = Instance.new("ScreenGui") screenGui.Name = "FixedPanelGui" screenGui.ResetOnSpawn = false screenGui.Parent = playerGui local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 230, 0, 265) mainFrame.Position = UDim2.new(0.5, -115, 0.4, -130) mainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) mainFrame.BorderSizePixel = 0 mainFrame.Active = true mainFrame.Draggable = true mainFrame.Parent = screenGui local uiCorner = Instance.new("UICorner") uiCorner.CornerRadius = UDim.new(0, 8) uiCorner.Parent = mainFrame local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 40) title.BackgroundColor3 = Color3.fromRGB(45, 45, 45) title.Text = " Fly & No-Clip Panel" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextSize = 14 title.Font = Enum.Font.SourceSansBold title.TextXAlignment = Enum.TextXAlignment.Left title.Parent = mainFrame local titleCorner = Instance.new("UICorner") titleCorner.CornerRadius = UDim.new(0, 8) titleCorner.Parent = title local closeButton = Instance.new("TextButton") closeButton.Size = UDim2.new(0, 40, 0, 40) closeButton.Position = UDim2.new(1, -40, 0, 0) closeButton.BackgroundTransparency = 1 closeButton.Text = "X" closeButton.TextColor3 = Color3.fromRGB(255, 80, 80) closeButton.TextSize = 18 closeButton.Font = Enum.Font.SourceSansBold closeButton.Parent = mainFrame closeButton.MouseButton1Click:Connect(function() screenGui:Destroy() end) -- 1. ESP Toggle Button local toggleButton = Instance.new("TextButton") toggleButton.Size = UDim2.new(0.9, 0, 0, 35) toggleButton.Position = UDim2.new(0.05, 0, 0, 50) toggleButton.BackgroundColor3 = Color3.fromRGB(180, 50, 50) toggleButton.Text = "ESP: OFF" toggleButton.TextColor3 = Color3.fromRGB(255, 255, 255) toggleButton.TextSize = 13 toggleButton.Font = Enum.Font.SourceSansBold toggleButton.Parent = mainFrame local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(0, 6) btnCorner.Parent = toggleButton -- 2. No-Clip Button local noclipButton = Instance.new("TextButton") noclipButton.Size = UDim2.new(0.9, 0, 0, 35) noclipButton.Position = UDim2.new(0.05, 0, 0, 90) noclipButton.BackgroundColor3 = Color3.fromRGB(50, 130, 180) noclipButton.Text = "No-Clip: OFF" noclipButton.TextColor3 = Color3.fromRGB(255, 255, 255) noclipButton.TextSize = 13 noclipButton.Font = Enum.Font.SourceSansBold noclipButton.Parent = mainFrame local safeCorner = Instance.new("UICorner") safeCorner.CornerRadius = UDim.new(0, 6) safeCorner.Parent = noclipButton -- 3. Fly / Free Movement Button local flyButton = Instance.new("TextButton") flyButton.Size = UDim2.new(0.9, 0, 0, 35) flyButton.Position = UDim2.new(0.05, 0, 0, 130) flyButton.BackgroundColor3 = Color3.fromRGB(140, 50, 180) flyButton.Text = "Fly Mode: OFF" flyButton.TextColor3 = Color3.fromRGB(255, 255, 255) flyButton.TextSize = 13 flyButton.Font = Enum.Font.SourceSansBold flyButton.Parent = mainFrame local flyCorner = Instance.new("UICorner") flyCorner.CornerRadius = UDim.new(0, 6) flyCorner.Parent = flyButton local statusLabel = Instance.new("TextLabel") statusLabel.Size = UDim2.new(0.9, 0, 0, 55) statusLabel.Position = UDim2.new(0.05, 0, 0, 175) statusLabel.BackgroundColor3 = Color3.fromRGB(20, 20, 20) statusLabel.Text = "Turn on No-Clip + Fly to move down freely." statusLabel.TextColor3 = Color3.fromRGB(220, 220, 220) statusLabel.TextSize = 11 statusLabel.TextWrapped = true statusLabel.TextYAlignment = Enum.TextYAlignment.Top statusLabel.Parent = mainFrame local statusCorner = Instance.new("UICorner") statusCorner.CornerRadius = UDim.new(0, 6) statusCorner.Parent = statusLabel local espEnabled = false local noclipEnabled = false local noclipConnection = nil local flyEnabled = false local flyConnection -- ESP Logic toggleButton.MouseButton1Click:Connect(function() espEnabled = not espEnabled if espEnabled then toggleButton.BackgroundColor3 = Color3.fromRGB(50, 180, 80) toggleButton.Text = "ESP: ON" local totalFound = 0 for _, obj in pairs(workspace:GetDescendants()) do if (obj:IsA("Model") or obj:IsA("BasePart")) and not obj:IsDescendantOf(player.Character or workspace) then local nameLower = obj.Name:lower() if nameLower:find("world") or nameLower:find("area") or nameLower:find("zone") or nameLower:find("egg") or nameLower:find("portal") or nameLower:find("island") then if not obj:FindFirstChild("Marker_ESP") then pcall(function() local hl = Instance.new("Highlight") hl.Name = "Marker_ESP" hl.Adornee = obj hl.FillColor = Color3.fromRGB(0, 255, 200) hl.OutlineColor = Color3.fromRGB(255, 255, 255) hl.FillTransparency = 0.5 hl.OutlineTransparency = 0 hl.Parent = obj local billboard = Instance.new("BillboardGui") billboard.Name = "DistanceTag" billboard.Adornee = obj billboard.Size = UDim2.new(0, 120, 0, 40) billboard.StudsOffset = Vector3.new(0, 3, 0) billboard.AlwaysOnTop = true local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(1, 0, 1, 0) textLabel.BackgroundTransparency = 1 textLabel.TextColor3 = Color3.fromRGB(255, 255, 0) textLabel.TextStrokeTransparency = 0 textLabel.TextSize = 13 textLabel.Font = Enum.Font.SourceSansBold textLabel.Text = obj.Name textLabel.Parent = billboard billboard.Parent = obj totalFound = totalFound + 1 end) end end end end statusLabel.Text = "ESP Active. Found: " .. totalFound else toggleButton.BackgroundColor3 = Color3.fromRGB(180, 50, 50) toggleButton.Text = "ESP: OFF" for _, obj in pairs(workspace:GetDescendants()) do local hl = obj:FindFirstChild("Marker_ESP") if hl then hl:Destroy() end local tag = obj:FindFirstChild("DistanceTag") if tag then tag:Destroy() end end statusLabel.Text = "ESP turned off." end end) -- No-Clip Logic noclipButton.MouseButton1Click:Connect(function() noclipEnabled = not noclipEnabled if noclipEnabled then noclipButton.BackgroundColor3 = Color3.fromRGB(50, 180, 80) noclipButton.Text = "No-Clip: ON" statusLabel.Text = "No-Clip active!" noclipConnection = RunService.Stepped:Connect(function() pcall(function() local char = player.Character if char then for _, part in pairs(char:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end end) end) else noclipButton.BackgroundColor3 = Color3.fromRGB(50, 130, 180) noclipButton.Text = "No-Clip: OFF" statusLabel.Text = "No-Clip turned off." if noclipConnection then noclipConnection:Disconnect() noclipConnection = nil end end end) -- Fly Logic (Zameen ke niche free movement ke liye) flyButton.MouseButton1Click:Connect(function() flyEnabled = not flyEnabled if flyEnabled then flyButton.BackgroundColor3 = Color3.fromRGB(50, 180, 80) flyButton.Text = "Fly Mode: ON" statusLabel.Text = "Fly Mode active. Use joystick to move down." flyConnection = RunService.RenderStepped:Connect(function() pcall(function() local char = player.Character if char and char:FindFirstChild("HumanoidRootPart") then local hrp = char.HumanoidRootPart local humanoid = char:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.PlatformStand = true end hrp.AssemblyLinearVelocity = Vector3.new(0, -1, 0) end end) end) else flyButton.BackgroundColor3 = Color3.fromRGB(140, 50, 180) flyButton.Text = "Fly Mode: OFF" statusLabel.Text = "Fly Mode turned off." if flyConnection then flyConnection:Disconnect() flyConnection = nil end pcall(function() local char = player.Character if char then local humanoid = char:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.PlatformStand = false end end end) end end)