如何让多个图像(和按钮)在按下按钮时消失

问题描述 投票:0回答:1

我正在尝试制作一个 roblox 游戏,并且我想要执行一个操作(即当您按下按钮时图像和按钮就会消失。我是一个菜鸟脚本编写者,那么我如何使用脚本来实现它?我的资源管理器选项卡是定位如下:

> StarterGui
>> GUI (a ScreenGui)
>>> PlayButton (a ImageButton)
>>> CreditButton (a TextButton)
>>> Background (a ImageLabel, but dont remove it)
>>> Title (another ImageLabel)
>>> TextLabel

我尝试遵循指南,但没有任何效果,也没有任何结果。

image button roblox luau
1个回答
0
投票

您可以在 GUI 按钮之一内使用本地脚本。让它看起来像这样:

local button = script.Parent
button.MouseButton1Click:Connect(function()
  local player = game.Players.LocalPlayer
  player.PlayerGui.(Whatever GUI you want to hide).Transparency = 1 --Repeat this for as many GUI instances you want to hide, or use a for loop.
  player.PlayerGui.(GUI name).Active = false
end)

希望这能有一点帮助。

© www.soinside.com 2019 - 2024. All rights reserved.