Sign In to Your Account

Manual registration is temporarily disabled. Please use Discord, Google or GitHub to create an account.

CONTINUE WITH
Rapid Fire Open Source - Da Hood Script | Free Roblox Script
Da Hood Da Hood

Rapid Fire Open Source

Da Hood 3 views 3 days ago
Rapid Fire Open Source - Roblox Script

Description

Credits: 090

Da Hood
Explore more scripts
View all Da Hood scripts

32 Lines 1,080 Bytes
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local localPlayer = Players.LocalPlayer

if getnamecallmethod then
    local function setupRapidFire(tool)
        if tool and tool:FindFirstChild("GunScript") then
            for _, v in ipairs(getconnections(tool.Activated)) do
                local funcinfo = debug.getinfo(v.Function)
                for i = 1, funcinfo.nups do
                    local c, n = debug.getupvalue(v.Function, i)
                    if type(c) == "number" then
                        debug.setupvalue(v.Function, i, 1e-20)
                    end
                end
            end
        end
    end

    local function onCharacterAdded(character)
        RunService.Heartbeat:Connect(function()
            local tool = character:FindFirstChildOfClass("Tool")
            setupRapidFire(tool)
        end)
    end

    if localPlayer.Character then
        onCharacterAdded(localPlayer.Character)
    end

    localPlayer.CharacterAdded:Connect(onCharacterAdded)
end

Comments

Comments section coming soon...

Similar Scripts

Share Script

Share this script with others by copying the link or using your device's share options.

https://rbxscripts.net/scripts/rapid-fire-open-source/
or

Report Script

Help us maintain a safe community. Your report will be reviewed by our moderation team and appropriate action will be taken if needed.

Select a reason...
Malicious Code
Inappropriate Content
Copyright Infringement
Spam
Misleading Information
Other