Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- ESP Function
- local ESP = loadstring(game:HttpGet("https://kiriot22.com/releases/ESP.lua"))()
- ESP:Toggle(true)
- -- Settings
- ESP.Players = false
- ESP.TeamMates = false
- ESP.FaceCamera = true
- ESP.TeamColor = false
- ESP.BoxSize = Vector3.new(2.5,2.5,0)
- ESP.BoxShift = CFrame.new(0,0,0)
- -- Colors Settings
- local notFound = BrickColor.new(235, 52, 216).Color
- local itemsColor = {
- ["Mysterious Arrow"] = Color3.fromRGB(235, 168, 52),
- ["Rokakaka"] = Color3.fromRGB(235, 52, 52),
- ["Pure Rokakaka"] = Color3.fromRGB(235, 52, 216),
- ["Lucky Arrow"] = Color3.fromRGB(235, 52, 216),
- ["Ribcage of The Saint's Corpse"] = Color3.fromRGB(153, 150, 145),
- ["Stell Ball"] = Color3.fromRGB(55, 235, 52),
- ["Zeppeli's Headband"] = Color3.fromRGB(55, 235, 52),
- ["Ancient Scroll"] = Color3.fromRGB(55, 235, 52),
- ["Quinton's Glove"] = Color3.fromRGB(55, 235, 52),
- ["Stone Mask"] = Color3.fromRGB(38, 38, 38),
- ["Gold Coin"] = Color3.fromRGB(242, 234, 10),
- ["Diamond"] = Color3.fromRGB(37, 153, 219),
- ["Dio's Diary"] = Color3.fromRGB(235, 52, 216),
- }
- -- Get Items
- local items = workspace.Item_Spawns.Items
- for i, v in pairs(items:GetChildren()) do
- if v:FindFirstChild("MeshPart") then
- local name = v.ProximityPrompt.ObjectText
- local color = itemsColor[name]
- if itemsColor[name] ~= nil then
- color = itemsColor[name]
- end
- -- Add ESP
- ESP:Add(v, {
- Name = name,
- Color = color,
- IsEnabled = true
- })
- end
- end
- items.ChildAdded:Connect(function(child)
- wait(1)
- if child:FindFirstChild("MeshPart") then
- local name = child.ProximityPrompt.ObjectText
- local color = itemsColor[name]
- if itemsColor[name] ~= nil then
- color = itemsColor[name]
- end
- -- Add ESP
- ESP:Add(child, {
- Name = name,
- Color = color,
- IsEnabled = true
- })
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement