Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Script Lua FE GUI Draggable: "99NightsForestLoader" - Loadstring 99 Nights in the Forest GUI (Anti-Error Universal)
- -- Buatan heckes15 - Persistent, Anti-Crash, Handle Respawn & Nil Checks
- -- Fitur: GUI bisa digeser, tombol X untuk tutup, tombol Load 99 Nights Script untuk jalankan loadstring FE Voidware (Universal, anti-error pcall).
- local Players = game:GetService("Players")
- local TweenService = game:GetService("TweenService")
- local player = Players.LocalPlayer
- local playerGui = player:WaitForChild("PlayerGui")
- -- Loadstring FE 99 Nights in the Forest Voidware (No Key, Best Script)
- local nightsLoadstring = 'loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-99-nights-in-the-forest-best-no-key-VOIDWARE-not-mine-58182"))()'
- -- Fungsi load 99 Nights script (anti-error: pcall loadstring, handle HttpGet fail)
- local function loadNightsScript()
- local success = pcall(function()
- loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-99-nights-in-the-forest-best-no-key-VOIDWARE-not-mine-58182"))()
- end)
- if success then
- print("99 Nights in the Forest Voidware loaded successfully! 🌲 (Auto Farm, Kill Aura, No Key)")
- else
- warn("Gagal load 99 Nights script (cek koneksi atau HttpGet block). Coba executor lain.")
- end
- end
- -- Fungsi buat GUI Loader utama (anti-error creation)
- local function createGUI()
- local success = pcall(function()
- -- Hapus GUI lama
- local oldGui = playerGui:FindFirstChild("99NightsForestLoader")
- if oldGui then oldGui:Destroy() end
- -- Buat ScreenGui
- local screenGui = Instance.new("ScreenGui")
- screenGui.Name = "99NightsForestLoader"
- screenGui.Parent = playerGui
- screenGui.ResetOnSpawn = false
- screenGui.Enabled = true -- Anti gak muncul
- -- Frame utama
- 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
- -- Title Bar
- 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
- -- Title Text
- 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 = "🌲 99 Nights in the Forest Loader 🌲"
- title.TextColor3 = Color3.fromRGB(255, 255, 255)
- title.TextScaled = true
- title.Font = Enum.Font.SourceSansBold
- title.Parent = titleBar
- -- Tombol Close (X)
- 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
- -- Hover efek close
- 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)
- -- Tombol Load 99 Nights Script
- 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 99 NIGHTS VOIDWARE (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
- -- Label info
- 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 load Voidware script 99 Nights in the Forest!\n(Auto Farm, Kill Aura, No Key - Universal FE, anti-error pcall)"
- infoLabel.TextColor3 = Color3.fromRGB(200, 200, 200)
- infoLabel.TextScaled = true
- infoLabel.Font = Enum.Font.SourceSans
- infoLabel.TextWrapped = true
- infoLabel.Parent = mainFrame
- -- Label kredit
- 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
- -- Event load button
- loadButton.MouseButton1Click:Connect(function()
- loadNightsScript()
- infoLabel.Text = "Voidware 99 Nights loaded! Cek GUI script baru. 🌲"
- infoLabel.TextColor3 = Color3.fromRGB(0, 255, 0)
- loadButton.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
- loadButton.Text = "✅ LOADED"
- end)
- -- Event close
- 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)
- -- Direct show (anti-tween error)
- mainFrame.Size = UDim2.new(0, 300, 0, 200)
- end)
- if success then
- print("99 Nights in the Forest Loader loaded (anti-error Voidware)! Klik load untuk script. 🌲")
- else
- warn("Gagal load GUI, coba ulang executor.")
- end
- end
- -- Jalankan
- createGUI()
- -- Persistent respawn
- player.CharacterAdded:Connect(function()
- wait(1)
- createGUI()
- end)
Advertisement
Add Comment
Please, Sign In to add comment