我无法让我的脚本传送我然后关闭文本框工作

I can't get my script that teleport's me then closes the textbox to work

我正在尝试做的是以下内容:玩家加载我的游戏,受到 2 个询问、探索或玩战役的文本按钮的欢迎,例如,当他们单击 'Campaign' 时,它会将他们传送到广告系列开始然后关闭游戏菜单,我是 Roblox 的新手 Lua 无法让这个脚本工作,请帮忙!


script.Parent.MouseButton1Click:connect(function()
 game.Players.LocalPlayer.character.LowerTorso.CFrame = CFrame.new(workspace.CampainSpawn.Position)
end)

function onClick()
    Parent.Parent.Visible = false
end

您的代码的问题是您没有调用 onClick() 函数,因此它永远不会执行使您的游戏菜单不可见的代码。请告诉我以下代码是否适合您:

script.Parent.MouseButton1Click:connect(function()
  game.Players.LocalPlayer.character.LowerTorso.CFrame = CFrame.new(workspace.CampainSpawn.Position)

  script.Parent.Parent.Visible = false
end)

如果上面的代码不起作用,请在您的原始代码中添加用户界面结构的图片post,这将对我有很大帮助。