Im trying to make the pets align like the red half circle drawn in the reference image. and also make them face the player’s direction as soon as they reached the moveToPosition.
Here is the code:
local function getPosition(angle, radius)
local x = math.cos(angle) * radius
local z = math.sin(angle) * radius
return x, z
end
local function positionPets(character, folder)
local circle = math.pi
local time = tick()
local forwardVector = character.PrimaryPart.CFrame.LookVector
for i, pet in pairs(folder:GetChildren()) do
local radius = 4 + #folder:GetChildren()
local angle = i * (circle / #folder:GetChildren())
local x, z = getPosition(angle, radius)
local _, characterSize = character:GetBoundingBox()
local _, petSize = pet:GetBoundingBox()
local offsetY = -characterSize.Y / 2 + petSize.Y / 2
local sin = (math.sin(15 * time + 1.6) / 0.5) + 1
local cos = math.cos(7 * time + 1) / 4
for _, v in ipairs(pet:GetDescendants()) do
if v:IsA("BasePart") then
v.CollisionGroup = "Mobs"
if v.Name == "HumanoidRootPart" then
v.Anchored = false
end
end
end
local moveToPosition
if character.Humanoid.MoveDirection.Magnitude > 0 then
moveToPosition = character.PrimaryPart.CFrame:PointToWorldSpace(Vector3.new(x, offsetY / 2 + math.sin(time * 3) + 1, z))
else
moveToPosition = character.PrimaryPart.CFrame:PointToWorldSpace(Vector3.new(x, offsetY / 2 + math.sin(time * 3) + 1, z))
end
pet.Humanoid:MoveTo(moveToPosition)
end
end```