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



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. _G.CollectGingerbreads = true
  2. local Map = workspace.Interiors.MainMap
  3. while wait() do
  4.   if _G.CollectGingerbreads then
  5.       for i,v in pairs(Map:GetChildren()) do
  6.           if v.Name:match('GingerbreadRig') then
  7.               game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = v:FindFirstChildOfClass('MeshPart').CFrame
  8.           end
  9.       end
  10.   end
  11. end