I’m trying to learn about Pivots and PVInstance, and i just trying to figure out what the last 9 digits are returned in :GetPivot()
player = game:GetService("Players").LocalPlayer
local adding = Vector3.new(10,10,10)
print(player)
local character = player.Character or player.CharacterAdded:Wait()
print(player.Character:WaitForChild("Humanoid").RootPart.Position + adding)
print(character:GetPivot()+adding)
most of the code is just me doing some testing stuff, i’m new, but what I’m primarily interested in is what the two lines returned in the print statements
I would think it has something to do with Cframe, or some sort of rotation but I’m not certain and I’m sure that whatever does come out of it will be beneficial for me to learn about