Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

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:

01local mTable = {} -- snipet of code
02    for i,v in pairs(t) do
03        if workspace.Place:FindFirstChild(v.Name) then
04            local Table = {}
05            game:GetService("RunService").Heartbeat:Wait()
06            Table.Name = v.Name
07            Table.C0 = {v.PrimaryPart.PlotWeld.C0:components()}
08            Table.C1 = {v.PrimaryPart.PlotWeld.C1:components()}
09            print(unpack(Table.C1))
10            v:Destroy()
11            table.insert(mTable, Table)
12        else
13            warn("Instance "..tostring(v).." Couldn't Be Found")
14        end
15    end
16    mTable = game.HttpService:JSONEncode(mTable)
17    save:SetAsync(plr.UserId, mTable)
18    print("Save Success")

Loading:

01print("Fetching Save")
02    local mSave = save:GetAsync(plr.UserId) or nil
03    if mSave then
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.C0 = CFrame.new(unpack(v.C0))
15                weld.C1 = CFrame.new(unpack(v.C1))
View all 22 lines...
0
Solves by owner. the8bitdude11 358 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

Solved by the owner.

Ad

Answer this question