0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

robloxでassistant その198

Posted at

概要

robloxでassistant、やってみた。
copilotに、聞いてみた。

robloxで、game.PlaceIdは、どこにある。

回答

game.PlaceId は、Robloxのスクリプト内で使用されるプロパティで、現在のゲーム(プレイス)の一意のIDを取得するために使われます。これは Luaスクリプト の中でアクセスできます。

? game.PlaceId の使い方

Roblox Studio やサーバー/クライアントスクリプト内で、以下のように記述します:

print("このゲームのPlaceIdは: " .. game.PlaceId)

このコードを実行すると、現在のプレイスのIDが出力されます。


? PlaceIdとは?

  • Robloxの各ゲーム(プレイス)には一意のIDが割り当てられています。

  • これはRobloxのウェブサイトURLにも表示されます:

    https://www.roblox.com/games/1234567890/Game-Name
    

    この 1234567890PlaceId です。


? よくある用途

  • 特定のプレイスでのみコードを実行したいとき:
if game.PlaceId == 1234567890 then
    print("このコードは特定のプレイスでのみ動作します")
end
  • 複数のプレイスを持つゲーム(ユニバース)で、プレイスごとに処理を分けたいときに便利です。

もし、どこでこのコードを書くべきか迷っているなら、ServerScriptServiceLocalScript に入れるのが一般的です。どんな用途で使いたいか教えてくれたら、もっと具体的なアドバイスもできるよ!

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?