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! Farm Event script pastebin roblox
By Adopt Me on 2024-09-18 08:00 am | Syntax: LUA | Views: 20



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local plr = game.Players.LocalPlayer.character.HumanoidRootPart
  2.  
  3. while wait() do
  4. for i, v in pairs(game:GetService("Workspace").Interiors.MainMap:GetChildren()) do
  5. if v.Name == "GateTemplate" then
  6. wait(0.1)
  7. plr.CFrame = v.Handle.CFrame
  8. wait(0.3)
  9. v.Name = "Passed"
  10. end
  11. end
  12. end