Advertisement
Anonymouse10101

Granny Tp Items

May 5th, 2019
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.56 KB | None | 0 0
  1. local Maps = {"School", "House", "Office", "Camp"} -- Add as many as you like here
  2. for _,s in pairs(Maps) do
  3.     if workspace.Map:FindFirstChild(s) then
  4.         for i,v in pairs(workspace.Map[s].Objects:children()) do
  5.             local m
  6.             for o,b in pairs(v:children()) do
  7.                 if b.Name == "Handle" then
  8.                     m = b
  9.                 end
  10.             end
  11.             if m then
  12.                 m.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  13.                 wait(1)
  14.             end
  15.         end
  16.     end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement