So I have a big table and I copy it to make modifications to it. I want to print all things that are not the same as the other values
e.g
local Table = {
V1 = Vector3.new(1, 1, 1),
V2 = Vector3.new(10, 10, 10),
V3 = Vector3.new(100, 100, 100)
}
local Table2 = {
V1 = Vector3.new(1, 1, 1),
V2 = Vector3.new(20, 20, 20),
V3 = Vector3.new(100, 100, 100)
}
--Coding here to find the differce in values. Output:
--[[
V2 = Vector3.new(10, 10, 10) ~= V2 = Vector3.new(20, 20, 20)
--]]
If anyone help I would be grateful
PLEASE HELP ME IT WOULD BE GOOD FOR ME AND YU
BY THE WAY I DONT WANT THE OUTPUT
V1 = 1, 1, 1 ~= V2 = 20, 20, 20
V1 = 1, 1, 1 ~= V3 = 100, 100, 100
V2 = 10, 10, 10 ~= V1 = 1, 1, 1
V2 = 10, 10, 10 ~= V2 = 20, 20, 20
V2 = 10, 10, 10 ~= V3 = 100, 100, 100
V3 = 100, 100, 100 ~= V1 = 1, 1, 1
V3 = 100, 100, 100 ~= V2 = 20, 20, 20