I had this error recently. Before this, I did implanted some type of TweenService Script.
The script is here
local player = game.Players.LocalPlayer
local humrootpart = player.Character.HumanoidRootPart
local teleport1 = script.Parent.A
local place1 = game.Workspace.Elevator.Lobby
local db = false
teleport1.MouseButton1Click:Connect(function()
if not db then
db = true
humrootpart.CFrame = place1.CFrame
script.Parent.Parent.Visible = false
wait(.5)
db = false
end
end)
I think you guys may guess what it does but if you don’t, it teleport the person to “Lobby” Part through GUI. But, even though this script was working perfectly fine, I started to get this error;
Lobby is not a valid member of Folder “Workspace.Elevator”
pls help before I go mad over this-