Arsenal OP
Arsenal OP
game.StarterGui:SetCore("SendNotification", {
Title = "Arsenal OP Script V1";
Text = "Made by xMiles_Games"; -- what the text says (ofc)
Duration = 60;
})
wait(1)
game.StarterGui:SetCore("SendNotification", {
Title = "Executed!";
Text = "Subscribe To xMiles_Games!"; -- what the text says (ofc)
Duration = 60;
})
local replicationstorage = game.ReplicatedStorage
for i, v in pairs(replicationstorage.Weapons:GetDescendants()) do
if v.Name == "Auto" then
v.Value = true
end
if v.Name == "RecoilControl" then
v.Value = 0
end
if v.Name == "MaxSpread" then
v.Value = 0
end
if v.Name == "ReloadTime" then
v.Value = 0.1
end
if v.Name == "FireRate" then
v.Value = 0.05
end
if v.Name == "Crit" then
v.Value = 20
end
end
--Subscribe To xMiles_Games
--Made by Andrheyplayz_officalyt
local gui = Instance.new("BillboardGui");
gui.Name = "";
gui.AlwaysOnTop = true;
gui.LightInfluence = 0;
gui.Size = UDim2.new(1.75, 0, 1.75, 0);
local frame = Instance.new("Frame", gui);
frame.BackgroundColor3 = Color3.fromRGB(170, 0, 0);
frame.Size = UDim2.new(1, 0, 1, 0);
frame.BorderSizePixel = 4;
frame.BorderColor3 = Color3.fromRGB(0, 0, 0);
local gi = gui:Clone();
local body = frame:Clone();
body.Parent = gi;
body.BackgroundColor3 = Color3.fromRGB(0, 170, 170);
for _, v in pairs(game:GetService("Players"):GetPlayers()) do
if v.Name ~= game:GetService("Players").LocalPlayer.Name and v.Character and
v.Character:FindFirstChild("Head") then
gui:Clone().Parent = v.Character.Head;
end
end