Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Credits to Cyber Pumpkin
- function CreateESPPart(BodyPart,color)
- local ESPPartparent = BodyPart
- local Box = Instance.new("BoxHandleAdornment")
- Box.Size = BodyPart.Size + Vector3.new(0.1, 0.1, 0.1)
- Box.Name = "ESPPart"
- Box.Adornee = ESPPartparent
- Box.Color3 = color
- Box.AlwaysOnTop = true
- Box.ZIndex = 5
- Box.Transparency = 0.8
- Box.Parent = BodyPart
- end
- for i,v in pairs(game.Workspace.Collect:GetChildren()) do
- CreateESPPart(v, Color3.fromRGB(255,255,255))
- end
- for i2,v2 in pairs(game.Workspace.Animatronics:GetChildren()) do
- CreateESPPart(v2, Color3.fromRGB(0,255,255))
- end
- for i3,v3 in pairs(game.Workspace.Objectives:GetChildren()) do
- CreateESPPart(v3, Color3.fromRGB(255,0,0))
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement