The error is this Workspace.Robo Iluvmaths1123.Torso.Script:3: attempt to call field 'Parent' (a userdata value)
It means you are calling a userdata.
Calling in the sense of a function call, like wait()
or print()
(parenthesis right after the name).
Userdata is any ROBLOX type -- BrickColors, instances, CFrames.
Since you're doing it on Parent
, it's probably something like:
someModel.Parent(someValue)
which is incorrect and meaningless.
Locked by adark, iluvmaths1123, and Shawnyg
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?