Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Instance.new help, please?

Asked by
FiredDusk 1466 Moderation Voter
8 years ago

Not making a part

Instance.new("Part")
part.Size = Vector3.new(1,1,1)
part.Position = Vector3.new(-92, -1, -68)

1 answer

Log in to vote
3
Answered by
Redbullusa 1580 Moderation Voter
8 years ago

Parent it. Also, you should define what "part" is.

local part = Instance.new("Part", workspace)
part.Size = Vector3.new(1,1,1)
part.Position = Vector3.new(-92, -1, -68)

-- or

local part = Instance.new("Part")
part.Size = Vector3.new(1,1,1)
part.Position = Vector3.new(-92, -1, -68)
part.Parent = workspace
0
Good Answer. pluginfactory 463 — 8y
Ad

Answer this question