На
-- Получение ссылки на Workspace
local workspace = game:GetService("Workspace")
-- Путь к нужному объекту
local stores = workspace:FindFirstChild("Stores")
if stores then
local treeRegion = stores:FindFirstChild("TreeRegion")
if treeRegion then
local model = treeRegion:FindFirstChild("Model")
if model then
local treeClass = model:FindFirstChild("TreeClass")
if treeClass and treeClass:IsA("ValueBase") then
-- Вывод значения
print("Value in TreeClass:", treeClass.Value)
else
warn("TreeClass не найден или не является типом ValueBase")
end
else
warn("Model не найдена в TreeRegion")
end
else
warn("TreeRegion не найдена в Stores")
end
else
warn("Stores не найдена в Workspace")
end