Qpwisnd

Untitled

Mar 25th, 2024 (edited)
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. local c = workspace.CurrentCamera
  2. local lplr = game.Players.LocalPlayer
  3.  
  4. function a(p)
  5. if p and p.Character then
  6. pcall(function()
  7. local t = p.Character.PrimaryPart.CFrame * Vector3.new(0, -0.25, 0)
  8. c.CFrame = CFrame.new(c.Focus.p, t) * CFrame.new(0, 0, 0.5)
  9. end)
  10. end
  11. end
  12. for i=1,20 do
  13. for _,v in pairs(game.Players:GetPlayers()) do
  14. pcall(function()
  15. for i=1,15 do
  16. lplr.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame - v.Character.HumanoidRootPart.CFrame.LookVector*4
  17. a(v)
  18. wait()
  19. end
  20. end)
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment