ski1lzhub

bloxbeta

Jun 22nd, 2022
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. local Caller = require(game.ReplicatedStorage.Client.RemoteCaller)
  2. if not Caller.RemoteCall then
  3. print("WTF?? ? WHERE DID IT GO ????")
  4. end
  5.  
  6.  
  7.  
  8. function SafeCall(Remote, ...)
  9. syn.secure_call(Caller.RemoteCall, game.Players.LocalPlayer.PlayerScripts.GunRemotes, Remote, unpack({...}))
  10. end
  11. while task.wait(.2) do
  12. for i,v in pairs(game.Players:GetPlayers()) do
  13. if v.Character and v.Character:FindFirstChild("Head")then
  14. for i = 1, 3 do
  15. SafeCall(
  16. game.ReplicatedStorage.Remotes.GunShot,
  17. {
  18. v,
  19. },
  20. v.Character.Head,
  21. v.Character.Head.Position,
  22. "Default"
  23. )
  24. end
  25. end
  26. end
  27. end
Add Comment
Please, Sign In to add comment