Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Touched is not a valid member of Model??????

Asked by 3 years ago

so im just making a door and this pops up in the output " Touched is not a valid member of Model" can someone help me

local doorModel = script.Parent

local TweenService = game:GetService("TweenService")
local doorTweenInfo = TweenInfo.new(1, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, 0, false, 0)

local leftDoorTween = TweenService:Create(doorModel.leftDoor, doorTweenInfo, {CFrame = doorModel.leftDoorOpen.CFrame})
local rightDoorTween = TweenService:Create(doorModel.rightDoor, doorTweenInfo, {CFrame = doorModel.rightDoorOpen.CFrame})

doorModel.Keyhole.Touched:Connect(function(hit)
    if hit.Parent:IsA("Tool") and hit.Parent.Name == "Key" then
               leftDoorTween:Play()
               rightDoorTween:Play()

    end
end)

can someone help

(p.s. im doing gnomecodes tuotorial for fun so yeah)

0
It's as simple as the error says, touched simply isn't a valid member of the model class. SteamG00B 1633 — 3y

1 answer

Log in to vote
1
Answered by 3 years ago

you have to access a specific part, you cant access a model in general. I haven't tested this but I have ran into this problem before, making a specific part should do the trick. for what I think you should do, is you should make an invisible part that surrounds the touch area.

Ad

Answer this question