-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] local CollectionService = game:GetService("CollectionService") local function applyWeapon(tool) local base = tool:FindFirstChild("Base") if (base) then base:SetAttribute("AimTime", 0.2) end end local function applyMelee(tool) tool:SetAttribute("AimTime", 0.2) end CollectionService:GetInstanceAddedSignal("Weapon"):Connect(function(tool) applyWeapon(tool) end) CollectionService:GetInstanceAddedSignal("Melee"):Connect(function(tool) applyMelee(tool) end) for _, tool in CollectionService:GetTagged("Weapon") do applyWeapon(tool) end for _, tool in CollectionService:GetTagged("Melee") do applyMelee(tool) end