The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Arsenal script pastebin roblox
By Arsenal on 2024-09-19 08:00 am | Syntax: LUA | Views: 13



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(k)
  2. if k == "e" then
  3. local Gun = game.ReplicatedStorage.Weapons:FindFirstChild(game.Players.LocalPlayer.NRPBS.EquippedTool.Value);
  4. local Crit = math.random() > .6 and true or false;
  5. for i,v in pairs(game.Players:GetPlayers()) do
  6. if v and v.Character and v.Character:FindFirstChild("Head") then
  7. local Distance = (game.Players.LocalPlayer.Character.Head.Position - v.Character.Head.Position).magnitude
  8. for i  = 1,10 do
  9. game.ReplicatedStorage.Events.HitPart:FireServer(v.Character.Head,
  10. v.Character.Head.Position + Vector3.new(math.random(), math.random(), math.random()),
  11. Gun.Name,
  12. Crit and 2 or 1,
  13. Distance,
  14. Backstab,
  15. Crit,
  16. false,
  17. 1,
  18. false,
  19. Gun.FireRate.Value,
  20. Gun.ReloadTime.Value,
  21. Gun.Ammo.Value,
  22. Gun.StoredAmmo.Value,
  23. Gun.Bullets.Value,
  24. Gun.EquipTime.Value,
  25. Gun.RecoilControl.Value,
  26. Gun.Auto.Value,
  27. Gun['Speed%'].Value,
  28. game.ReplicatedStorage.wkspc.DistributedTime.Value);
  29. end
  30. end
  31. end
  32. end
  33. end)