All content on our site is free and will always be free.

Please consider supporting us with disabling your AdBlock software and to gain access to thousands of free content!

Not sure how to disable AdBLock? Follow this tutorial: How to disable AdBlock

Get the Collect most stickmen

The Collect most stickmen code is below. Copy & inject it into the game. Enjoy!

-- you do not have to do this first:
-- when in 'FUN =)':
-- execute again, walk around, then wait for it collect the stickman
-- for Partygoer stickman
if game.PlaceId == 8884316278 then
    print("yes")
    while wait() do
        firetouchinterest(
            game:GetService("Workspace").Stickmen["Partygoer Stickman"],
            game.Players.LocalPlayer.Character.Head,
            0
        )
        game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
            CFrame.new(game:GetService("Workspace").Stickmen["Partygoer Stickman"].CFrame)
    end
end

-- execute when in game 'FTS'
-- for glitch stickman
if game.PlaceId == 316842344 then
    firetouchinterest(game:GetService("Workspace").BadgeAwarder.Platform, game.Players.LocalPlayer.Character.Head, 0)
end

local sticks = game:GetService("Workspace").Stickmen
local plr = game:GetService("Players").LocalPlayer

local divineButtons = game:GetService("Workspace").DivineButtons
local nerdNumbers = game:GetService("Workspace").NerdKeypad.Numbers
local pickaxes = game:GetService("Workspace").MinePickaxes

fireclickdetector(game:GetService("Workspace").BackroomsKey.ClickDetector)
firetouchinterest(game:GetService("Workspace").StormPart, plr.Character.Head, 0) -- Storm Stickman
local ohString1 = "Stong Stickman"
game:GetService("ReplicatedStorage").ActivateStickman:FireServer(ohString1)

for i, v in pairs(nerdNumbers:GetChildren()) do
    local clickdetector = v:FindFirstChild("ClickDetector")
    if clickdetector then
        fireclickdetector(clickdetector)
    end
end

local ohString1 = "Biomes Stickman"

game:GetService("ReplicatedStorage").ActivateStickman:FireServer(ohString1)

for i, v in pairs(divineButtons:GetChildren()) do
    local clickdetector = v:FindFirstChild("ClickDetector")
    if clickdetector then
        fireclickdetector(clickdetector)
    end
end
firetouchinterest(game:GetService("Workspace").Stickmen["Divine Stickman"], plr.Character.Head, 0)

fireclickdetector(game:GetService("Workspace").AlienKeypad.Numbers["4"].ClickDetector)
fireclickdetector(game:GetService("Workspace").AlienKeypad.Numbers["3"].ClickDetector)
fireclickdetector(game:GetService("Workspace").AlienKeypad.Numbers["7"].ClickDetector)
fireclickdetector(game:GetService("Workspace").AlienKeypad.Numbers["2"].ClickDetector)
fireclickdetector(game:GetService("Workspace").AlienKeypad.Numbers["7"].ClickDetector)
fireclickdetector(game:GetService("Workspace").AlienKeypad.Enter.ClickDetector)
wait()
firetouchinterest(game:GetService("Workspace").Stickmen["Alien Stickman"], plr.Character.Head, 0)

for i, v in pairs(pickaxes:GetChildren()) do -- For Miner Stickman
    local clickdetector = v:FindFirstChild("ClickDetector")
    if clickdetector then
        fireclickdetector(clickdetector)
    end
end

for i, v in pairs(sticks:GetChildren()) do
    if v:IsA("Part") then
        local a = v:FindFirstChild("Activated")
        if a then
            local ohString1 = a.Parent.Name
            game:GetService("ReplicatedStorage").ActivateStickman:FireServer(ohString1)
        end
        firetouchinterest(v, plr.Character.Head, 0)
    end
end

local function backrooms()
    fireclickdetector(game:GetService("Workspace").Part.ClickDetector)
    wait(0.15)
    firetouchinterest(game:GetService("Workspace").BackroomsWall, plr.Character.Head, 0)
    fireclickdetector(game:GetService("Workspace").BackroomsKey.ClickDetector)
    game:GetService("TeleportService"):Teleport(8884316278)
end
if game.PlaceId == 8884316278 then
    game.Workspace.ChildAdded:Connect(
        function()
            firetouchinterest(
                game:GetService("Workspace").Stickmen["Partygoer Stickman"],
                game.Players.LocalPlayer.Character.Head,
                0
            )
        end
    )
end