Owner Door not working

Hi im making a tycoon game but for some reason my tycoon door doesnt do anything when i touch it.
Im following a tutorial by GamerM8 and it works for them but not me :confused:

Here is my code
local tycoon = script.Parent.Parent
local items = {}

– Folders–
local purchaced = tycoon:FindFirstChild(“Purchaced”)
local buttons = tycoon:FindFirstChild(“Buttons”)
local mainparts = tycoon:FindFirstChild(“MainParts”)
local scripts = tycoon:FindFirstChild(“Scripts”)
local values = tycoon:FindFirstChild(“Values”)

script.Parent.Touched:Connect(function(Hit)
if Hit.Parent:WaitForChild(“Humanoid”) and values.OwnerValue.Value == nil then
local Player = game.Players:GetPlayerFromCharacter(Hit.Parent)

	values.OwnerValue.Value = Player
	mainparts.Sign.SurfaceGui.TextLabel.Text = Player.Name.."'s Factory"


end

end)

I dont see any problems with it but it just doesnt change the owner value or sign text
I have been trying for awhile but cant find the problem. Please help.

1 Like

Is the code in local or server script?

The code in a server script. btw its worth mentioning that the script is like a main script.

Can you show us the OwnerValue in the explorer?

sure

Try FindFirstChild instead of waiting for the child.

1 Like

is the OwnerValue an StringValue or an ObjectValue?

The owner value is an object value

Try what I said and tell me if it works.

1 Like

I tried it but i t still doesnt work :frowning: Btw there are no errors in output

1 Like

Try waiting for the values when your referencing them.

What do you mean by wait for the values?

Wait for the values to load [filler]

For example, local values = tycoon:WaitForChild(“Values”)

Tried it but it still doesnt work

1 Like

Try values:WaitForChild(“OwnerValue”).Value = Player or FindFirstChild.

I tried both but still doesnt work. Is it possilbe that OwnerValue isnt nil? here is its properties:

If you test the game and change the value manually while playing the game will the sign change?

i tried it and no it does not change the sign text for some reason

How about using a string value instead of an object value.