Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Script Lua FE GUI Draggable: "NDSLoader" - Natural Disaster Survival Script List GUI (Anti-Error Universal)
- -- Buatan heckes15 - Persistent, Anti-Crash, Handle Respawn & Nil Checks
- -- Fitur: GUI bisa digeser, tombol X untuk tutup, tombol Load NDS Scripts untuk munculkan GUI daftar script (Universal FE, khusus Natural Disaster Survival).
- local Players = game:GetService("Players")
- local TweenService = game:GetService("TweenService")
- local player = Players.LocalPlayer
- local playerGui = player:WaitForChild("PlayerGui")
- -- Daftar loadstring script untuk Natural Disaster Survival (dari sumber trusted 2025)
- local ndsScripts = {
- {name = "Null Fire Hub", url = "https://raw.githubusercontent.com/InfernusScripts/Null-Fire/main/Loader", desc = "No Fall Damage, Spoofing, Custom Gravity"},
- {name = "Zeerox Hub", url = "https://raw.githubusercontent.com/RunDTM/ZeeroxHub/main/Loader.lua", desc = "Fly, Infinite Jump, No Fall Damage"},
- {name = "Foxx Hub", url = "https://pastebin.com/raw/uxFq1VVR", desc = "Custom Walk Speed, Fly"},
- {name = "SpiderXHub", url = "https://raw.githubusercontent.com/SpiderScriptRB/Natural-Disaster-Survival/refs/heads/main/1.0.2%20Version%20Script.txt", desc = "Auto Win, Infinite Jump, and More"},
- {name = "NDS Script", url = "https://raw.githubusercontent.com/Thebestofhack123/2.0/refs/heads/main/NDS", desc = "No Collision, No Clip, and More"},
- {name = "Super Ring", url = "https://pastebin.com/raw/s6jT7YbN", desc = "Super Ring, Fling, Auto Farm"}
- }
- -- Fungsi load script spesifik (anti-error: pcall loadstring, handle HttpGet fail)
- local function loadScript(url, name)
- local success = pcall(function()
- loadstring(game:HttpGet(url))()
- end)
- if success then
- print(name .. " loaded successfully! Cocok untuk Natural Disaster Survival. 🌪️")
- else
- warn("Gagal load " .. name .. " (cek koneksi atau HttpGet block). Coba executor lain.")
- end
- end
- -- Fungsi buat GUI Daftar Script (muncul pas klik load)
- local function createNDSGUI()
- local success = pcall(function()
- local oldNDSGui = playerGui:FindFirstChild("NDSGUI")
- if oldNDSGui then oldNDSGui:Destroy() end
- local ndsScreenGui = Instance.new("ScreenGui")
- ndsScreenGui.Name = "NDSGUI"
- ndsScreenGui.Parent = playerGui
- ndsScreenGui.ResetOnSpawn = false
- local ndsFrame = Instance.new("Frame")
- ndsFrame.Name = "NDSFrame"
- ndsFrame.Size = UDim2.new(0, 350, 0, 300)
- ndsFrame.Position = UDim2.new(0.5, -175, 0.5, -150)
- ndsFrame.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- ndsFrame.BorderSizePixel = 0
- ndsFrame.Active = true
- ndsFrame.Draggable = true
- ndsFrame.Parent = ndsScreenGui
- local ndsCorner = Instance.new("UICorner")
- ndsCorner.CornerRadius = UDim.new(0, 10)
- ndsCorner.Parent = ndsFrame
- local ndsTitle = Instance.new("TextLabel")
- ndsTitle.Name = "Title"
- ndsTitle.Size = UDim2.new(1, 0, 0, 30)
- ndsTitle.Position = UDim2.new(0, 0, 0, 0)
- ndsTitle.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- ndsTitle.BorderSizePixel = 0
- ndsTitle.Text = "🌪️ Natural Disaster Survival Scripts 🌪️"
- ndsTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
- ndsTitle.TextScaled = true
- ndsTitle.Font = Enum.Font.SourceSansBold
- ndsTitle.Parent = ndsFrame
- local titleCorner = Instance.new("UICorner")
- titleCorner.CornerRadius = UDim.new(0, 10)
- titleCorner.Parent = ndsTitle
- -- Scrolling Frame untuk daftar script
- local scrollFrame = Instance.new("ScrollingFrame")
- scrollFrame.Name = "ScrollFrame"
- scrollFrame.Size = UDim2.new(1, -20, 1, -80)
- scrollFrame.Position = UDim2.new(0, 10, 0, 40)
- scrollFrame.BackgroundTransparency = 1
- scrollFrame.BorderSizePixel = 0
- scrollFrame.ScrollBarThickness = 10
- scrollFrame.Parent = ndsFrame
- local listLayout = Instance.new("UIListLayout")
- listLayout.SortOrder = Enum.SortOrder.LayoutOrder
- listLayout.Padding = UDim.new(0, 5)
- listLayout.Parent = scrollFrame
- -- Buat tombol untuk setiap script
- for i, script in ipairs(ndsScripts) do
- local scriptButton = Instance.new("TextButton")
- scriptButton.Name = script.name
- scriptButton.Size = UDim2.new(1, 0, 0, 40)
- scriptButton.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
- scriptButton.BorderSizePixel = 0
- scriptButton.Text = script.name .. "\n(" .. script.desc .. ")"
- scriptButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- scriptButton.TextScaled = true
- scriptButton.Font = Enum.Font.SourceSans
- scriptButton.TextYAlignment = Enum.TextYAlignment.Top
- scriptButton.LayoutOrder = i
- scriptButton.Parent = scrollFrame
- local buttonCorner = Instance.new("UICorner")
- buttonCorner.CornerRadius = UDim.new(0, 5)
- buttonCorner.Parent = scriptButton
- -- Hover efek
- scriptButton.MouseEnter:Connect(function()
- TweenService:Create(scriptButton, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(0, 150, 200)}):Play()
- end)
- scriptButton.MouseLeave:Connect(function()
- TweenService:Create(scriptButton, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(0, 170, 255)}):Play()
- end)
- -- Event load script
- scriptButton.MouseButton1Click:Connect(function()
- loadScript(script.url, script.name)
- scriptButton.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
- scriptButton.Text = script.name .. " ✅\n(" .. script.desc .. ")"
- end)
- end
- -- Atur canvas size
- scrollFrame.CanvasSize = UDim2.new(0, 0, 0, listLayout.AbsoluteContentSize.Y + 10)
- -- Update canvas on change
- listLayout:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function()
- scrollFrame.CanvasSize = UDim2.new(0, 0, 0, listLayout.AbsoluteContentSize.Y + 10)
- end)
- local closeNDSButton = Instance.new("TextButton")
- closeNDSButton.Name = "CloseNDS"
- closeNDSButton.Size = UDim2.new(0, 25, 0, 25)
- closeNDSButton.Position = UDim2.new(1, -30, 0, 2.5)
- closeNDSButton.BackgroundColor3 = Color3.fromRGB(255, 50, 50)
- closeNDSButton.BorderSizePixel = 0
- closeNDSButton.Text = "X"
- closeNDSButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- closeNDSButton.TextScaled = true
- closeNDSButton.Font = Enum.Font.SourceSansBold
- closeNDSButton.Parent = ndsTitle
- local closeNDSCorner = Instance.new("UICorner")
- closeNDSCorner.CornerRadius = UDim.new(0, 5)
- closeNDSCorner.Parent = closeNDSButton
- -- Event close
- closeNDSButton.MouseButton1Click:Connect(function()
- ndsScreenGui:Destroy()
- end)
- -- Animasi muncul
- ndsFrame.Size = UDim2.new(0, 0, 0, 0)
- local tweenIn = TweenService:Create(ndsFrame, TweenInfo.new(0.3, Enum.EasingStyle.Back), {Size = UDim2.new(0, 350, 0, 300)})
- tweenIn:Play()
- print("NDS Script List GUI loaded! Pilih script dari daftar. 🌪️")
- end)
- if success then
- print("NDS daftar script loaded! 🌪️")
- else
- warn("Gagal load NDS GUI!")
- end
- end
- -- Fungsi load NDS (panggil createNDSGUI)
- local function loadNDS()
- pcall(createNDSGUI)
- end
- -- Fungsi buat GUI Loader utama (anti-error)
- local function createGUI()
- local success = pcall(function()
- local oldGui = playerGui:FindFirstChild("NDSLoader")
- if oldGui then oldGui:Destroy() end
- local screenGui = Instance.new("ScreenGui")
- screenGui.Name = "NDSLoader"
- screenGui.Parent = playerGui
- screenGui.ResetOnSpawn = false
- local mainFrame = Instance.new("Frame")
- mainFrame.Name = "MainFrame"
- mainFrame.Size = UDim2.new(0, 300, 0, 200)
- mainFrame.Position = UDim2.new(0.5, -150, 0.5, -100)
- mainFrame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- mainFrame.BorderSizePixel = 0
- mainFrame.Active = true
- mainFrame.Draggable = true
- mainFrame.Parent = screenGui
- local corner = Instance.new("UICorner")
- corner.CornerRadius = UDim.new(0, 10)
- corner.Parent = mainFrame
- local titleBar = Instance.new("Frame")
- titleBar.Size = UDim2.new(1, 0, 0, 30)
- titleBar.Position = UDim2.new(0, 0, 0, 0)
- titleBar.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- titleBar.BorderSizePixel = 0
- titleBar.Parent = mainFrame
- local titleCorner = Instance.new("UICorner")
- titleCorner.CornerRadius = UDim.new(0, 10)
- titleCorner.Parent = titleBar
- local title = Instance.new("TextLabel")
- title.Size = UDim2.new(1, -30, 1, 0)
- title.Position = UDim2.new(0, 5, 0, 0)
- title.BackgroundTransparency = 1
- title.Text = "🌪️ NDS Script Loader 🌪️"
- title.TextColor3 = Color3.fromRGB(255, 255, 255)
- title.TextScaled = true
- title.Font = Enum.Font.SourceSansBold
- title.Parent = titleBar
- local closeButton = Instance.new("TextButton")
- closeButton.Size = UDim2.new(0, 25, 0, 25)
- closeButton.Position = UDim2.new(1, -30, 0, 2.5)
- closeButton.BackgroundColor3 = Color3.fromRGB(255, 50, 50)
- closeButton.BorderSizePixel = 0
- closeButton.Text = "X"
- closeButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- closeButton.TextScaled = true
- closeButton.Font = Enum.Font.SourceSansBold
- closeButton.Parent = titleBar
- local closeCorner = Instance.new("UICorner")
- closeCorner.CornerRadius = UDim.new(0, 5)
- closeCorner.Parent = closeButton
- closeButton.MouseEnter:Connect(function()
- TweenService:Create(closeButton, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(255, 0, 0)}):Play()
- end)
- closeButton.MouseLeave:Connect(function()
- TweenService:Create(closeButton, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(255, 50, 50)}):Play()
- end)
- local loadButton = Instance.new("TextButton")
- loadButton.Size = UDim2.new(1, -20, 0, 50)
- loadButton.Position = UDim2.new(0, 10, 0, 50)
- loadButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- loadButton.BorderSizePixel = 0
- loadButton.Text = "🌪️ LOAD NDS SCRIPT LIST (ANTI-ERROR)"
- loadButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- loadButton.TextScaled = true
- loadButton.Font = Enum.Font.SourceSansBold
- loadButton.Parent = mainFrame
- local loadCorner = Instance.new("UICorner")
- loadCorner.CornerRadius = UDim.new(0, 5)
- loadCorner.Parent = loadButton
- local infoLabel = Instance.new("TextLabel")
- infoLabel.Size = UDim2.new(1, -20, 0, 50)
- infoLabel.Position = UDim2.new(0, 10, 0, 110)
- infoLabel.BackgroundTransparency = 1
- infoLabel.Text = "Klik untuk daftar script Natural Disaster Survival!\n(Auto Win, Fly, Super Ring, dll. - Universal FE, anti-error)"
- infoLabel.TextColor3 = Color3.fromRGB(200, 200, 200)
- infoLabel.TextScaled = true
- infoLabel.Font = Enum.Font.SourceSans
- infoLabel.TextWrapped = true
- infoLabel.Parent = mainFrame
- local creditLabel = Instance.new("TextLabel")
- creditLabel.Size = UDim2.new(1, -20, 0, 20)
- creditLabel.Position = UDim2.new(0, 10, 1, -25)
- creditLabel.BackgroundTransparency = 1
- creditLabel.Text = "Made by heckes15 🔥 (Anti-Error Oct 2025)"
- creditLabel.TextColor3 = Color3.fromRGB(255, 100, 100)
- creditLabel.TextScaled = true
- creditLabel.Font = Enum.Font.SourceSansBold
- creditLabel.Parent = mainFrame
- loadButton.MouseButton1Click:Connect(function()
- loadNDS()
- infoLabel.Text = "NDS Script List GUI loaded! Pilih dari daftar. 🌪️"
- infoLabel.TextColor3 = Color3.fromRGB(0, 255, 0)
- loadButton.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
- loadButton.Text = "✅ LOADED"
- end)
- closeButton.MouseButton1Click:Connect(function()
- local tweenOut = TweenService:Create(mainFrame, TweenInfo.new(0.3, Enum.EasingStyle.Back), {Size = UDim2.new(0, 0, 0, 0)})
- tweenOut:Play()
- tweenOut.Completed:Connect(function()
- screenGui:Destroy()
- end)
- end)
- mainFrame.Size = UDim2.new(0, 300, 0, 200)
- end)
- if success then
- print("NDSLoader loaded (daftar script for Natural Disaster Survival)! 🌪️")
- else
- warn("Gagal load loader.")
- end
- end
- -- Jalankan
- createGUI()
- -- Persistent respawn
- player.CharacterAdded:Connect(function()
- wait(1)
- createGUI()
- end)
Advertisement
Add Comment
Please, Sign In to add comment