Get part full name

how to get part or model or union or anything else’s full name while scripting the the thing?
Its hard to reach a specific part if you are trying to do something in a huge building

With GetFullName method:

local Part = Instance.new("Part",game:GetService("Workspace"))
print(Part:GetFullName())

Also if you want something like shortcuts you can add string value and set value to instance you want.
Example:

local Part = script.StringValue.Value
print(Part:GetFullName())
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.