Autofarm Wormface 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 items = game:GetService("Workspace").Items local hum = game.Players.LocalPlayer.Character.HumanoidRootPart local tweenserv = game:GetService('TweenService') local deletethis = game.Players.LocalPlayer.Character.HumanoidRootPart.StarterWorm.Head:FindFirstChild("FaceCenterAttachment") local rebirthtext = game:GetService("Players").LocalPlayer.PlayerGui.RebirthGui.Button.ProgressBar.Background.Text local rebirthevent = game:GetService("ReplicatedStorage").RebirthRequest getgenv().active = true local doit = true local function getGem() for _, v in ipairs(items:GetChildren()) do if not v then return end if not v:FindFirstChild('Part') then return end if(v.Part.Position.X < 325) then return v.Part end end end local function gotoGem() local gem = getGem() if not gem then return end local goal = {} goal.CFrame = gem.CFrame local tweenInfo = TweenInfo.new(0.01) local tween = tweenserv:Create(game.Players.LocalPlayer.Character.HumanoidRootPart, tweenInfo, goal) tween:Play() wait(0.1) if(gem.Parent) then gem.Parent:Destroy() end end local function canRebirth() local split1 = string.split(rebirthtext.Text, " ") local split2 = string.split(split1[2], "/") local returnval = tonumber(split2[1]) >= tonumber(split2[2]) return returnval end if(deletethis) then deletethis:Destroy() end if(canRebirth()) then rebirthevent:InvokeServer() end local rebirthconnect = rebirthtext:GetPropertyChangedSignal("Text"):Connect(function() if(canRebirth()) then print('rebirthing') doit = false rebirthevent:InvokeServer() wait(3) if(game.Players.LocalPlayer.Character.HumanoidRootPart.StarterWorm.Head:FindFirstChild("FaceCenterAttachment")) then game.Players.LocalPlayer.Character.HumanoidRootPart.StarterWorm.Head:FindFirstChild("FaceCenterAttachment"):Destroy() end doit = true end end) local stopconnect = game.Players.LocalPlayer.Chatted:Connect(function(msg) if(msg == "/e stop") then getgenv().active = false rebirthconnect:Disconnect() end end) while getgenv().active do if doit then gotoGem() end wait() end