local vide = require(script.Parent.Parent.Parent.Parent.vide) local create = vide.create type can = T | () -> T type props = { zindex: can?, transparency: can? } return function(props: props) return create "UIStroke" { Thickness = 2, Color = Color3.new(0, 0, 0), Transparency = 0.8 } end