Novaz Planet Oof Script
Roblox Scripts is what Roblox players and coders use to build interactive games. To be more specific, players use Lua scripts—a popular scripting and programming language.
We do not any harmful on your devices we always check it before we post online.
Instruction
1.Open Roblox And Start Playing 2.Click The Blue Circle To Copy The Script Code 3.Paste The Script Code Into Your Executor 4.Then Execute The Script Code 5.Enjoy
Use your dummy account first we are not responsible if your account getting Ban.
Script Code
local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local window = library.CreateLib("Novaz#5792", "BloodTheme") local main = window:NewTab("Auto Farm") local section = main:NewSection("Auto Farm") local main1 = window:NewTab("Misc") local section1 = main1:NewSection("Local Player") local plr = game.Players.LocalPlayer _G.Enabled = true section:NewToggle("Auto Collect", "", function(a) b = a while b and task.wait() and _G.Enabled do pcall(function() for i,v in pairs(game.Workspace.Geegaws:GetDescendants()) do if v:FindFirstChild("WeldConstraint") then local pos = game.Workspace.Camera:WorldToViewportPoint(v:FindFirstChildOfClass("Part").Position) mousemoveabs(pos.X, pos.Y) end end end) end end) section:NewKeybind("Toggle", "", Enum.KeyCode.F, function() if _G.Enabled == true then _G.Enabled = false else _G.Enabled = true end end) section:NewButton("Remove Planet", "", function() for i,v in pairs(game.Workspace.WorldMap:GetChildren()) do v:Destroy() end for i1,v1 in pairs(game.Workspace.SubdividedPolyhedron:GetChildren()) do v1:Destroy() end game.Workspace.Terrain:Clear() end)