Hello! I am wondering how I can tween this to go downwards when the bottom goes down, but whenever I try and do something, it just gets put back because of this, and if I were to do “petOneConnection: Disconnect()” It just makes it leave the camera, but how can I make it so it stays there, and will tween down like the text saying the pets name.
Script to make the pet go there at the start
petOneConnection = runService.RenderStepped:Connect(function()
local lookPart = pet.PrimaryPart
local cf = CFrame.new(0,0,-pet.PrimaryPart.Size.Z * 2)
pet:SetPrimaryPartCFrame(camera.CFrame * cf)
lookPart.CFrame = CFrame.lookAt(lookPart.Position, camera.CFrame.Position)
end)
pet.Parent = camera
Hi there. Changing the CFrame details of the camera will not do much. Instead, you need to look into the camera offset. Let me know if you’d like further explanation.