rayiahmadjuhandi

Voidware 99 Night in the forest script

Oct 13th, 2025 (edited)
1,407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.31 KB | Gaming | 0 0
  1. -- Script Lua FE GUI Draggable: "99NightsForestLoader" - Loadstring 99 Nights in the Forest GUI (Anti-Error Universal)
  2. -- Buatan heckes15 - Persistent, Anti-Crash, Handle Respawn & Nil Checks
  3. -- Fitur: GUI bisa digeser, tombol X untuk tutup, tombol Load 99 Nights Script untuk jalankan loadstring FE Voidware (Universal, anti-error pcall).
  4.  
  5. local Players = game:GetService("Players")
  6. local TweenService = game:GetService("TweenService")
  7.  
  8. local player = Players.LocalPlayer
  9. local playerGui = player:WaitForChild("PlayerGui")
  10.  
  11. -- Loadstring FE 99 Nights in the Forest Voidware (No Key, Best Script)
  12. local nightsLoadstring = 'loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-99-nights-in-the-forest-best-no-key-VOIDWARE-not-mine-58182"))()'
  13.  
  14. -- Fungsi load 99 Nights script (anti-error: pcall loadstring, handle HttpGet fail)
  15. local function loadNightsScript()
  16.     local success = pcall(function()
  17.         loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-99-nights-in-the-forest-best-no-key-VOIDWARE-not-mine-58182"))()
  18.     end)
  19.     if success then
  20.         print("99 Nights in the Forest Voidware loaded successfully! 🌲 (Auto Farm, Kill Aura, No Key)")
  21.     else
  22.         warn("Gagal load 99 Nights script (cek koneksi atau HttpGet block). Coba executor lain.")
  23.     end
  24. end
  25.  
  26. -- Fungsi buat GUI Loader utama (anti-error creation)
  27. local function createGUI()
  28.     local success = pcall(function()
  29.         -- Hapus GUI lama
  30.         local oldGui = playerGui:FindFirstChild("99NightsForestLoader")
  31.         if oldGui then oldGui:Destroy() end
  32.        
  33.         -- Buat ScreenGui
  34.         local screenGui = Instance.new("ScreenGui")
  35.         screenGui.Name = "99NightsForestLoader"
  36.         screenGui.Parent = playerGui
  37.         screenGui.ResetOnSpawn = false
  38.         screenGui.Enabled = true  -- Anti gak muncul
  39.  
  40.         -- Frame utama
  41.         local mainFrame = Instance.new("Frame")
  42.         mainFrame.Name = "MainFrame"
  43.         mainFrame.Size = UDim2.new(0, 300, 0, 200)
  44.         mainFrame.Position = UDim2.new(0.5, -150, 0.5, -100)
  45.         mainFrame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  46.         mainFrame.BorderSizePixel = 0
  47.         mainFrame.Active = true
  48.         mainFrame.Draggable = true
  49.         mainFrame.Parent = screenGui
  50.  
  51.         local corner = Instance.new("UICorner")
  52.         corner.CornerRadius = UDim.new(0, 10)
  53.         corner.Parent = mainFrame
  54.  
  55.         -- Title Bar
  56.         local titleBar = Instance.new("Frame")
  57.         titleBar.Size = UDim2.new(1, 0, 0, 30)
  58.         titleBar.Position = UDim2.new(0, 0, 0, 0)
  59.         titleBar.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  60.         titleBar.BorderSizePixel = 0
  61.         titleBar.Parent = mainFrame
  62.  
  63.         local titleCorner = Instance.new("UICorner")
  64.         titleCorner.CornerRadius = UDim.new(0, 10)
  65.         titleCorner.Parent = titleBar
  66.  
  67.         -- Title Text
  68.         local title = Instance.new("TextLabel")
  69.         title.Size = UDim2.new(1, -30, 1, 0)
  70.         title.Position = UDim2.new(0, 5, 0, 0)
  71.         title.BackgroundTransparency = 1
  72.         title.Text = "🌲 99 Nights in the Forest Loader 🌲"
  73.         title.TextColor3 = Color3.fromRGB(255, 255, 255)
  74.         title.TextScaled = true
  75.         title.Font = Enum.Font.SourceSansBold
  76.         title.Parent = titleBar
  77.  
  78.         -- Tombol Close (X)
  79.         local closeButton = Instance.new("TextButton")
  80.         closeButton.Size = UDim2.new(0, 25, 0, 25)
  81.         closeButton.Position = UDim2.new(1, -30, 0, 2.5)
  82.         closeButton.BackgroundColor3 = Color3.fromRGB(255, 50, 50)
  83.         closeButton.BorderSizePixel = 0
  84.         closeButton.Text = "X"
  85.         closeButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  86.         closeButton.TextScaled = true
  87.         closeButton.Font = Enum.Font.SourceSansBold
  88.         closeButton.Parent = titleBar
  89.  
  90.         local closeCorner = Instance.new("UICorner")
  91.         closeCorner.CornerRadius = UDim.new(0, 5)
  92.         closeCorner.Parent = closeButton
  93.  
  94.         -- Hover efek close
  95.         closeButton.MouseEnter:Connect(function()
  96.             TweenService:Create(closeButton, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(255, 0, 0)}):Play()
  97.         end)
  98.         closeButton.MouseLeave:Connect(function()
  99.             TweenService:Create(closeButton, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(255, 50, 50)}):Play()
  100.         end)
  101.  
  102.         -- Tombol Load 99 Nights Script
  103.         local loadButton = Instance.new("TextButton")
  104.         loadButton.Size = UDim2.new(1, -20, 0, 50)
  105.         loadButton.Position = UDim2.new(0, 10, 0, 50)
  106.         loadButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  107.         loadButton.BorderSizePixel = 0
  108.         loadButton.Text = "🌲 LOAD 99 NIGHTS VOIDWARE (ANTI-ERROR)"
  109.         loadButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  110.         loadButton.TextScaled = true
  111.         loadButton.Font = Enum.Font.SourceSansBold
  112.         loadButton.Parent = mainFrame
  113.  
  114.         local loadCorner = Instance.new("UICorner")
  115.         loadCorner.CornerRadius = UDim.new(0, 5)
  116.         loadCorner.Parent = loadButton
  117.  
  118.         -- Label info
  119.         local infoLabel = Instance.new("TextLabel")
  120.         infoLabel.Size = UDim2.new(1, -20, 0, 50)
  121.         infoLabel.Position = UDim2.new(0, 10, 0, 110)
  122.         infoLabel.BackgroundTransparency = 1
  123.         infoLabel.Text = "Klik untuk load Voidware script 99 Nights in the Forest!\n(Auto Farm, Kill Aura, No Key - Universal FE, anti-error pcall)"
  124.         infoLabel.TextColor3 = Color3.fromRGB(200, 200, 200)
  125.         infoLabel.TextScaled = true
  126.         infoLabel.Font = Enum.Font.SourceSans
  127.         infoLabel.TextWrapped = true
  128.         infoLabel.Parent = mainFrame
  129.  
  130.         -- Label kredit
  131.         local creditLabel = Instance.new("TextLabel")
  132.         creditLabel.Size = UDim2.new(1, -20, 0, 20)
  133.         creditLabel.Position = UDim2.new(0, 10, 1, -25)
  134.         creditLabel.BackgroundTransparency = 1
  135.         creditLabel.Text = "Made by heckes15 🔥 (Anti-Error Oct 2025)"
  136.         creditLabel.TextColor3 = Color3.fromRGB(255, 100, 100)
  137.         creditLabel.TextScaled = true
  138.         creditLabel.Font = Enum.Font.SourceSansBold
  139.         creditLabel.Parent = mainFrame
  140.  
  141.         -- Event load button
  142.         loadButton.MouseButton1Click:Connect(function()
  143.             loadNightsScript()
  144.             infoLabel.Text = "Voidware 99 Nights loaded! Cek GUI script baru. 🌲"
  145.             infoLabel.TextColor3 = Color3.fromRGB(0, 255, 0)
  146.             loadButton.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
  147.             loadButton.Text = "✅ LOADED"
  148.         end)
  149.  
  150.         -- Event close
  151.         closeButton.MouseButton1Click:Connect(function()
  152.             local tweenOut = TweenService:Create(mainFrame, TweenInfo.new(0.3, Enum.EasingStyle.Back), {Size = UDim2.new(0, 0, 0, 0)})
  153.             tweenOut:Play()
  154.             tweenOut.Completed:Connect(function()
  155.                 screenGui:Destroy()
  156.             end)
  157.         end)
  158.  
  159.         -- Direct show (anti-tween error)
  160.         mainFrame.Size = UDim2.new(0, 300, 0, 200)
  161.     end)
  162.    
  163.     if success then
  164.         print("99 Nights in the Forest Loader loaded (anti-error Voidware)! Klik load untuk script. 🌲")
  165.     else
  166.         warn("Gagal load GUI, coba ulang executor.")
  167.     end
  168. end
  169.  
  170. -- Jalankan
  171. createGUI()
  172.  
  173. -- Persistent respawn
  174. player.CharacterAdded:Connect(function()
  175.     wait(1)
  176.     createGUI()
  177. end)
Advertisement
Add Comment
Please, Sign In to add comment