You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? So i want to make a part moves the other way while following a part
What is the issue? I have no idea how.
What solutions have you tried so far? So i have a script that makes the part follows the other part (setting the part cframe to the other parts cframe) (looped)
I tried tween service but it doesnt do the trick
and i have no other idea how am i going to do it
local function doLoop()
task.wait()
part.CFrame = CFrame.new(otherPart.CFrame)
doLoop()
end
doLoop()
(Moving the same direction as the Other Part since its following it after all / following the Other Part)
But i wanna make it move another direction like
â O
while still following the Other Part
so like
I wanna make the Main Part follow the Other Part, WHILE having the Main Part move on a different direction
like two different movements at the same time? if thats even possible
O
â (First movement, Main Partâs CFrame is set to the Other Parts Position)
â (Second Movement, Main Partâs CFrame is slowly moving to another direction)
â (Well it could be any direction x/ y/ z so i represent it with an arrow)
And i have this âMain Partâ that follows the âOther Partâ by making a loop that sets the CFrame of the âMain Partâ around the same Position of the âOther Partâ
So 1st movement is done, Main Part follows the Other Part
But i wanna make the Main Part do another movement as well
â O (Slowly or any speed at all tbh)
I tried tweenServ, and lets say it doesnt achieve the effect i wanted to and i dont really have any idea at all how am i going to implement it