Skeleton Visual
local VisualLibrary = loadstring(game:HttpGet("https://raw.githubusercontent.com/GamingScripter/Darkrai-Y/main/Libraries/VisualLib"))()
for _, Pl in ipairs(game.Players:GetPlayers()) do
if Pl then
if Pl.Character then
local skeletonEffect = VisualLibrary:CreateVisual({
Method = "Drawing",
Properties = {
Type = "Skeleton",
Player = Pl,
Color = Color3.fromRGB(255, 255, 255),
Thickness = 2,
}
})
task.delay(5, function()
skeletonEffect:Delete()
end)
end
end
endLast updated