MADE BY CJStylesOrg
FEATURES:
- AUTO ARREST
- ESCAPE FROM PRISON
- INSTANT PROMPT
- REMOVE DAMAGE
SCRIPTS: [4]
AUTO-ARREST:
loadstring(game:HttpGet('https://raw.githubusercontent.com/CJStyles123/CSPrisonLife/main/AutoArrest.lua'))()
ESCAPE FROM PRISON
Found a way to trick the Anti-Teleport System again! (Requires Fists)
If you somehow got tp’d back, Execute the script again…
loadstring(game:HttpGet('https://raw.githubusercontent.com/CJStyles123/CSPrisonLife/main/EscapePrison.lua'))()
INSTANT PROMPT (EASILY ARREST PEOPLE IN A SINGLE CLICK AND MORE)
– Toggle it on/off with true or false on the first line of the script
getgenv().InstantPrompt = true
game:GetService("ProximityPromptService").PromptButtonHoldBegan:Connect(function(prompt)
if getgenv().InstantPrompt then
fireproximityprompt(prompt)
end
end)
REMOVE DAMAGE PARTS (WHEN DOOR CLOSES, PRISON FENCE, LASERS AND MORE)
Sometimes you die when you go into the criminal base with this script, Not sure what it is or if it’s Raycast!
-- // Remove Damage Parts (Criminal Base, Prison, Doors closing on you etc...)
for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
if v.Name:find("Kill") or v.Name:find("damage") or v.Name:find("laser") and v:IsA("Part") then
v:Destroy()
end
end