TwoSide3Point0

Big Paintball Unlock All Wepons And Wallbang And Silent Aim Enjoy Todays Script c:

Apr 3rd, 2021 (edited)
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.24 KB | None | 0 0
  1. (DELETE ON PASTE ----- FOLLOW TWOSIDE3POINT0 ON TIKTOK OR I WILL MAKE YOU EAT AT ARBY'S:
  2. https://www.tiktok.com/@twoside3point0?lang=en&is_copy_url=1&is_from_webapp=v3 ----- )
  3. (DELETE ON PASTE ----- SUBSCRIBE TWOSIDE3POINT0 ON YOUTUBE OR I WILL MAKE YOU EAT AT ARBY'S:
  4. https://www.youtube.com/channel/UCv9yELwMF7syImRnt1j_DuQ ----- )
  5.  
  6.  
  7. ---------------------------------------------------
  8. --- Fiusen Hub V2 ---
  9. ---------------------------------------------------
  10.  
  11. -- Var
  12. local Players = game:GetService("Players"); --> Wally is sexy!
  13. local Player = Players.LocalPlayer;
  14.  
  15. -- Game Things
  16. local scriptEnv = require(game:GetService("ReplicatedStorage").Framework.Library);
  17. local network = scriptEnv.Network;
  18. local gunCmds = scriptEnv.GunCmds;
  19. local SilentAimTog = true;
  20. local UnlockAllTog = true;
  21.  
  22. -- Close Player Func
  23. local function getClosestPlayer()
  24. local shortestDistance, closestPlayer = math.huge;
  25.  
  26. for i, v in next, Players:GetPlayers() do
  27. if (v.Name ~= Player.Name and v.Team ~= Player.Team and Player.Character and Player.Character:FindFirstChild("HumanoidRootPart") and v.Character and v.Character:FindFirstChild("HumanoidRootPart")) then
  28. local mag = (v.Character.HumanoidRootPart.Position - Player.Character.HumanoidRootPart.Position).magnitude;
  29.  
  30. if (mag < shortestDistance) then
  31. closestPlayer = v;
  32. shortestDistance = mag;
  33. end;
  34. end;
  35. end;
  36.  
  37. return closestPlayer;
  38. end;
  39.  
  40. -- Kill Function
  41. local function kill(code, plr)
  42. if (code and plr.Character and plr.Character:FindFirstChild("HumanoidRootPart")) then
  43. local data =
  44. {
  45. [1] =
  46. {
  47. [1] = plr.Character.Humanoid;
  48. [2] = code;
  49. [3] = 235;
  50. [4] = plr.Character.HumanoidRootPart.Position;
  51. [5] = false;
  52. };
  53. [2] =
  54. {
  55. [1] = false;
  56. [2] = false;
  57. [3] = false;
  58. [4] = false;
  59. [5] = false;
  60. };
  61. };
  62.  
  63. game:GetService("Workspace"):FindFirstChild("__THINGS"):FindFirstChild("__REMOTES"):FindFirstChild("do damage"):FireServer(data);
  64. end;
  65. end;
  66.  
  67. -- Unlock All Hook
  68. do
  69. -- Hook
  70. local oldUnlockAll = gunCmds.DoesOwnGun;
  71.  
  72. gunCmds.DoesOwnGun = newcclosure(function(...)
  73. if (UnlockAllTog) then
  74. return true;
  75. end;
  76.  
  77. return oldUnlockAll(...);
  78. end);
  79. end;
  80.  
  81. -- Network Hook
  82. do
  83. -- Hook
  84. local oldFire = network.Fire;
  85.  
  86. network.Fire = newcclosure(function(self, ...)
  87. local args = {...};
  88.  
  89. if (tostring(self) == "New Projectile" and SilentAimTog) then
  90. local closePlayer = getClosestPlayer();
  91.  
  92. if (closePlayer) then
  93. kill(args[2], closePlayer); --> Epic func
  94. end;
  95. elseif (tostring(self) == "Request Respawn" and UnlockAllTog) then
  96. args[1] = "1"; --> Easy peasy bypass :)
  97. end;
  98.  
  99. return oldFire(self, unpack(args));
  100. end);
  101. end;
  102.  
  103. print'running!'; --> Prints for when its done loading gg
Add Comment
Please, Sign In to add comment