Ro-Bots 2 Auto-Fill

Uploaded On
Script Credit :- DoUknowTHIShuh
Features

--INSTRUCTION (MUST READ)--

1. Execute the script
2. Click on Random 3 viruses generator (The Green Part) or any other generator you would like
3. Inject your virus
4. Unequip needlegun
5. Wait for "Ready" text in left bottom corner
6. Repeat from step 3

 

If you die, you must repeat all steps

Script
--BROUGHT TO YOU BY RobloxScripter.com!--

_G.Enabled = true local player = game.Players.LocalPlayer local mouse = player:GetMouse() local worth = player.Backpack:WaitForChild("Needlegun").Worth local ready = false mouse.Button1Up:Connect(function() if ready == false then local clickDetector = mouse.Target.ClickDetector worth.Changed:Connect(function(val) if _G.Enabled == true then fireclickdetector(clickDetector) local ScrG = Instance.new("ScreenGui") ScrG.Parent = game.CoreGui local TextL = Instance.new("TextLabel") TextL.BackgroundTransparency = 1 TextL.Position = UDim2.new(-0.0001, 0, 0.878, 0) TextL.Size = UDim2.new(0.089, 0, 0.122, 0) TextL.Text = "Ready!" TextL.TextScaled = true TextL.Parent = ScrG wait(1) ScrG:Destroy() end end) ready = true end end)