i am trying to serialize a function and this is what it is.
function workspace:FindFirstChildWithTag(tag)
for i,v in ipairs(thing:GetChildren()) do
if v:HasTag(tag) then
return v
end
end
end
but when i try to use it i get this error.
23:29:29.041 FindFirstChildWithTag is not a valid member of Workspace "Workspace" - Studio
this is how it’s supposed to be used.
local sword = workspace:FindFirstChildWithTag("melee")
what have i done wrong here?