get paid to paste

Project XXL [4.2] Script | CHEST COLLECTING

local player = game.Players.LocalPlayer
local chestsFolder = workspace:FindFirstChild("Chests")

if chestsFolder then
   local chests = chestsFolder:GetChildren()

   for _, chest in ipairs(chests) do
       if chest:IsA("BasePart") then
           player.Character.HumanoidRootPart.CFrame = chest.CFrame
           task.wait()
       end
   end
end

Pasted: May 19, 2023, 11:55:43 pm
Views: 51