Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

What does this output error mean? [closed]

Asked by 9 years ago

The error is this Workspace.Robo Iluvmaths1123.Torso.Script:3: attempt to call field 'Parent' (a userdata value)

0
Post the script, please. RedCombee 585 — 9y

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?

1 answer

Log in to vote
1
Answered by
BlueTaslem 18071 Moderation Voter Administrator Community Moderator Super Administrator
9 years ago

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.

Ad