-- Rapid fire local tool = player.Character and player.Character:FindFirstChildOfClass("Tool") if tool then local fireRemote = tool:FindFirstChild("FireRemote") -- common name if fireRemote and fireRemote:IsA("RemoteEvent") then game:GetService("UserInputService").InputBegan:Connect(function(input, gameProcessed) if input.UserInputType == Enum.UserInputType.MouseButton1 then while game:GetService("UserInputService"):IsMouseButtonPressed(Enum.UserInputType.MouseButton1) do fireRemote:FireServer() wait(0.01) -- adjust for fire rate end end end) end end
Example Remote Spy snippet:
-- Airsoft FE Script Template (LocalScript) local player = game.Players.LocalPlayer local mouse = player:GetMouse() -- Services local replicatedStorage = game:GetService("ReplicatedStorage") local remoteEvent -- find the game's remote for damage airsoft fe script