Back to Scripts
One Shot Gun Mod
ScriptBlox
Verified
Free
Game: Prison Life
437
Views
0
Likes
17
Dislikes

Tomato
offline
Features
Makes all guns one shot, but they only have one shot before reloading.
Tags
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)
Comments (0)
Please login to comment
Login with Discord
Loading comments...