You can create a release to package software, along with release notes and links to binary files, for other people to use. Learn more about releases in our docs.
Roblox StudioでGUIを押すと別のGUIが開く方法を解説しています。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
local gui = script.Parent -- ボタンとテレポート先Part名の対応表 local teleportMap = { TextButton_A = "Part_A", TextButton_B = "Part_B" } for buttonName, partName in pairs(teleportMap) do local button = gui: ...