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 LINK GAME on 2024-09-19 08:00 am | Syntax: LUA | Views: 10



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local Mouse = game:GetService('Players').LocalPlayer:GetMouse()
  2. Mouse.Button1Down:Connect(function()
  3.         if game:GetService('UserInputService'):IsKeyDown(Enum.KeyCode.E) and Mouse.Target then
  4.                 for i,targetTeam in pairs(game.Players:GetChildren()) do
  5.                         if targetTeam.Team ~= game:GetService("Players").LocalPlayer.Team then
  6.                                 local hum = game.Players.LocalPlayer.Character.HumanoidRootPart
  7.                                 local part = targetTeam.Character.HumanoidRootPart
  8.                                 part.Anchored = true
  9.                                 part.CFrame = CFrame.new(Mouse.Hit.Position + Vector3.new(0,3,0))
  10.                         end
  11.                 end
  12.         end
  13. end)