When I print the value it prints 0, why is it not changing the intvalue?
local ClickDetector = script.Parent
ClickDetector.MouseClick:Connect(function(player)
local INT = player:WaitForChild("Position"):WaitForChild("ExactPosition")
INT.Value = player.Character:WaitForChild("HumanoidRootPart").CFrame.Position
print(INT.Value)
end)