#attempt to index string with 'Text'
19 messages · Page 1 of 1 (latest)
The property "Name" is a string
script.Parent.Name = "Test"```
Removing the ".Text " should fix the error
script.Parent["Name"] = "Test"```
cuz name is a textlable in my GUI
oh anyway i think it is a roblox studio bug
if you name the thing to Name then doesn't matter you use .Name or use ["Name"] it always say you are trying to change name not a text label
Yeah bc properties have the priority when indexing something
** You are now Level 9! **
if you want to keep the label name "Name" i suggest you to use :FindFirstChild("Name") or :WaitForChild("Name")