CFrames won't save to datastore properly?
Asked by
6 years ago Edited 6 years ago
I have been making this sandbox type building game which includes saving and loading a base. However i have been having a problem where the C0 and C1 CFrames don't save properly in the datastore
EDIT: it is saving the C0 and C1 values
Before:
https://imgur.com/a/BqtzGJj
After:
https://imgur.com/a/vxWzEkJ
my code is below:
Saving:
02 | for i,v in pairs (t) do |
03 | if workspace.Place:FindFirstChild(v.Name) then |
05 | game:GetService( "RunService" ).Heartbeat:Wait() |
07 | Table.C 0 = { v.PrimaryPart.PlotWeld.C 0 :components() } |
08 | Table.C 1 = { v.PrimaryPart.PlotWeld.C 1 :components() } |
09 | print ( unpack (Table.C 1 )) |
11 | table.insert(mTable, Table) |
13 | warn( "Instance " .. tostring (v).. " Couldn't Be Found" ) |
16 | mTable = game.HttpService:JSONEncode(mTable) |
17 | save:SetAsync(plr.UserId, mTable) |
Loading:
02 | local mSave = save:GetAsync(plr.UserId) or nil |
04 | local sTable = game.HttpService:JSONDecode(mSave) |
05 | print ( "Save Fetched: Estimated Size = " ..math.floor(string.len(mSave)).. "\nLoading" ) |
06 | for i,v in pairs (sTable) do |
07 | game:GetService( "RunService" ).Heartbeat:Wait() |
08 | if workspace.Place:FindFirstChild(v.Name) then |
09 | print ( "Found " ..v.Name.. " Loading Object" ) |
10 | local obj = workspace.Place [ v.Name ] :Clone() |
11 | obj.Parent = plr.PlotOwned.Value.Drawing |
12 | local weld = Instance.new( "Motor6D" , obj.PrimaryPart) |
13 | weld.Name = "PlotWeld" |
14 | weld.C 0 = CFrame.new( unpack (v.C 0 )) |
15 | weld.C 1 = CFrame.new( unpack (v.C 1 )) |
16 | weld.Part 0 = obj.PrimaryPart |
17 | weld.Part 1 = plr.PlotOwned.Value.TP |
18 | print ( "Made Welds And Placed Object Successfully!" ) |
22 | print ( "No Data Saved!" ) |