Advertisement
Xfer1111

Zombie Strike - Teleport Zombie

Oct 18th, 2020
2,295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.49 KB | None | 0 0
  1. -- Xfer was here (T.V.K)
  2. -- Teleports zombies infront of you (Sticks with you even if moving); Can be Shot at
  3. -- I recommend to stay in the same spot when shooting, depending on the map you will have to move into the next room
  4.  
  5. _G.run = true
  6. while _G.run do
  7. for i,v in pairs(game:GetService("Workspace").Zombies:GetChildren()) do
  8. if v:findFirstChild("Head") then
  9. v.Head.Anchored = true
  10. v.Head.CFrame = game.Players.LocalPlayer.Character.Head.CFrame*CFrame.new(2,3,-10)
  11. end
  12. end
  13. wait()
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement