Roblox Script -- Stongest Punch Simulator | Auto Orb | February 2022

 


it auto collects gems without detection, that is all


getgenv().enabled = true


local players = game:GetService("Players")

local player = players.LocalPlayer

local character = player.Character or player.CharacterAdded:Wait()


local orbs = workspace.Map.Stages.Boosts

local world = player.leaderstats.WORLD


local max = 30


function collect()

    local count = 0

    for i, v in pairs(orbs[tostring(world.Value)]:GetChildren()) do

        if count < max then

            local hrp = character:FindFirstChild("HumanoidRootPart")

            local touchpart = nil

           

            for a, b in pairs(v:GetDescendants()) do

                if b.ClassName == "TouchTransmitter" then

                    touchpart = b.Parent

                end

            end


            if not character or not hrp or not touchpart then continue end


            firetouchinterest(hrp, touchpart, 0)

            task.wait()

            firetouchinterest(hrp, touchpart, 1)

            count += 1

            task.wait()

        end

    end

end


task.spawn(function()

    while wait(10.01) do

        if getgenv().enabled then

            collect()

        end

    end

end)

Previous Post Next Post