Hi, I’d like to put a part in between 2 parts
Basically I’d like to put a light part in between the glowing sphere and the smaller sphere.
Hi, I’d like to put a part in between 2 parts
You can use :lerp
to get the CFrame half way from one sphere to the other, then create your part at that position
local MiddlePos = Part1.CFrame:lerp(Part2.CFrame, .5)
Oh, thanks. I’m only doing this cause roblox’s lights don’t go far enough.
No problem. If it’s still not reaching, you can change the .5 to get a closer or further point. A value of 1 would be the position of Part2 and a value of 0 would be the position of Part 1
Thanks for the help mate it’s working like a charm.