Forummer
(Forummer)
3
So instead of doing something like this.
local part = script.Parent
local bp = Instance.new("BodyPosition", part)
Do it like this.
local part = script.Parent
local bp = Instance.new("BodyPosition")
bp.Parent = part
The former is unopitimised and can often extend the operation time considerably.