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

How do I spawn in a block at a certain size at a beginners level?

Asked by 4 years ago
Edited 4 years ago

I haven't tried anything because I don't want to get myself confused.

0
woah ur question confuses me Pitched_mobile 191 — 4y
0
what exactly do u wanne do here? Pitched_mobile 191 — 4y
0
oops xwainflameskul 16 — 4y
0
I misspelled, I meant to say, "How do I spawn in a block at a certain size at a beginners level" xwainflameskul 16 — 4y
View all comments (6 more)
0
Does that make sense? xwainflameskul 16 — 4y
0
Wdym beginners level Pitched_mobile 191 — 4y
0
I just started and I don't want it to be like a long script xwainflameskul 16 — 4y
0
Aight Pitched_mobile 191 — 4y
0
Can you help me? xwainflameskul 16 — 4y
0
Your not answering so I'm hoping your working on it :( xwainflameskul 16 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

alright so a simple script that runs when the game starts this is a script in serverscriptservice btw

part = Instance.new("Part") --creates part
part.Parent = game.Workspace --sets it to the workspace
part.Position = Vector3.new(32, 2.5, 33) --position
part.Anchored = true --anchor
part.Size = Vector3.new(20,20,20) --size
0
Thank you :) xwainflameskul 16 — 4y
Ad

Answer this question