The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Pro Piece script pastebin roblox
By LINK GAME on 2024-09-20 08:00 am | Syntax: LUA | Views: 19



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  local LP = game:GetService("Players").LocalPlayer;
  2.  
  3. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  4.  
  5.     if v:IsA("Folder") and string.match(v.Name, "Chest") then
  6.  
  7.         for i2,v2 in pairs(v:GetChildren()) do
  8.  
  9.             LP.Character.HumanoidRootPart.CFrame = v2.CFrame;
  10.  
  11.             wait(0.2);
  12.  
  13.         end
  14.  
  15.     end
  16. end