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
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.