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

How can I evenly distribute positions?

Asked by
Ieowyyn 69
3 years ago

I'm getting very confused and I can't figure out a way to script a vector quality customizer. Basically the problem is something similar to this post but on a much larger scale; to the point where it might be a little tedious to clone multiple chairs and move them.

0
You should describe your usecase in more detail. radiant_Light203 1166 — 3y
0
Very similar to the post; a musical chairs game for about 70-80 people. More if I can. Ieowyyn 69 — 3y

1 answer

Log in to vote
0
Answered by 3 years ago

Rounding Of The Positions May Help Example On How To Round Of in Roblox:

local function Round(ObjectToRound)
    return math.floor(ObjectToRound + 0.5)
end
Ad

Answer this question