Back to Scripts
One Shot Gun Mod

One Shot Gun Mod

ScriptBlox
Verified Free

Game: Prison Life

437 Views
0 Likes
17 Dislikes
Tomato

Tomato

offline

Features

Makes all guns one shot, but they only have one shot before reloading.

Tags

gun mod inf fast working

Script Code

local namecall
namecall = hookmetamethod(game, "__namecall", function(self,...)
    local method = getnamecallmethod()
    if method == "GetAttributes" then
        local result = namecall(self, ...)
        result.AutoFire = true
        result.FireRate = 0
        result.Range = 999999999
        result.Spread = 999999999
        print(self,"modded")
        return result
    end
    return namecall(self, ...)
end)

Ratings & Reviews

No reviews yet. Be the first to review this script!

Comments (0)

Please login to comment

Login with Discord

Loading comments...