This a bug or a scripting error?

Hi, I am having issues with local scripts. Can someone explain what I am doing wrong or is this a bug? What I did was put a local script in a seat:

script.Parent:GetPropertyChangedSignal(function()
	print("no")
end)

This didn’t work and it printed no errors so I tried putting a local script in workspace containing nothing really:

print("Hello World") --this did not print

It didn’t print.

1 Like

LocalScripts don’t run in workspace

Oh, ok but what about in the seat

localscripts dont run in workspace, make a localscript in startercharacterscripts, also you formatted the event wrong

local PathToSeat = --// path here
PathToSeat:GetPropertyChangedSignal("Occupant"):Connect(function()
	print("no")
end)
1 Like

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