Trying to write a module with --!strict
and I get this warning. What does it mean?
type Tag = string
function module:AddCD(Child:Instance?,CDID:string?, defaultremove:boolean?, timer:number?):Tag?
AddTag(Child, CDID)
if defaultremove then
task.delay(timer,function()
RemoveTag(Child, CDID)
end)
end
end
Changing the type of tag to type Tag = RBXScriptConnection
still gives off same warning since that’s what the function does.