#How can I make a part orbiting around you even while moving?

1 messages · Page 1 of 1 (latest)

calm linden
#

insert message here

solar stump
#

Keep updating the position with character pos

#

Orbit pos + char pos

calm linden
#

what should I do to create a cframe of orbiting?

quasi grotto
quasi grotto
#

Then, let's think to the wanted CFame each instant t (got by tick() ) :

WantedCFrame = HRP.CFrame + Vector3.new(math.cos(Theta)*Radius, 0, math.sin(Theta)*Radius)```
#

I chose to use tick() because sin and cos are periodical, but you can have your own looping value instead, from 0 to 1