1
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?

More than 1 year has passed since last update.

アクセルキャンプ復習動画 3/6 復習動画 コードでブロックを置いてみよう

Posted at
--①名前をつける
local blockA = 
	Instance.new("Part", game.Workspace)


--②座標を決める
blockA.Position = Vector3.new(10, 10, 0)


--③大きさを決める
blockA.Size = Vector3.new(5, 5, 5)


--④アンカーを付ける
blockA.Anchored = true
1
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
1
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?