Categories > Exploiting > Scripts >

[Release] Identity Fraud ESP

Posts: 257

Threads: 112

Joined: Jun, 2018

Reputation: 5

Posted

I've got a lot of ESP scripts that I haven't been using so I'm gonna release all of them (that work that is).

 

This particular one is one of the more useful ones for this game. Since this one doesn't have any enemies that are added, you don't need a function for whenever a part is added.


https://i.imgur.com/kG6ritl.png

https://i.imgur.com/8MIP38n.png


local settings = {
	["Transparency"] = 0.6,
	["EnemyColor"] = BrickColor.new(255, 0, 0)
}

local NPCs = {"Kate", "Stan", "James", "Ralph", "Fraud"}

function espPartColored(part, suffix)
	if (part.ClassName == "Part") then
		local box = Instance.new("BoxHandleAdornment", part)
		box.Name = part.Name..suffix --"_PESP"
		box.Adornee = part
		box.AlwaysOnTop = true
		box.ZIndex = 0
		box.Size = part.Size
		box.Transparency = settings["Transparency"]
		box.Color = settings["EnemyColor"]
	end
end
function checkPart(partName)
	for i,v in pairs(NPCs) do
		if (v == partName) then		
			return true
		end
	end
	return false
end

for i,part in pairs(workspace:GetDescendants()) do
	if (checkPart(part.Parent.Name)) then
		espPartColored(part, "_GESP")
	end
end
--Dispose script
for i,v in pairs(workspace:GetDescendants()) do
	if (part.Name:sub(-5, #part.Name) == "_GESP") then
		v:Destroy()
	end
end
  • 0

Exploits I own: Synapse, Electron

Scripts I've made: Aimbot GUI, Draco Admin

Scripts I'm working on: More game ESPs

Users viewing this thread:

( Members: 0, Guests: 2, Total: 2 )