Why does this not save placed models and load them again?
Asked by
7 years ago Edited 7 years ago
So I've got some scripts that allow the user to place down rooms when they click on a button. They are both normal scripts in the workspace. I'm trying to make it so that the placed rooms are saved when they leave and load back in when they rejoin. This is my PlayerEntering script:
01 | function OnPlayerEntered(player) |
03 | local DS = game:GetService( 'DataStoreService' ):GetDataStore( tostring (player.userId)); |
04 | local stable = DS:GetAsync( 'Build' ) |
05 | local container = game.Workspace.ModelsContainer |
08 | local nm = container [ stable [ i ] [ 1 ] ] :Clone(); |
09 | nm.Parent = workspace; |
10 | nm.CFrame = CFrame.new( unpack (stable [ i ] [ 2 ] )) |
14 | game.Players.PlayerAdded:connect(OnPlayerEntered) |
This is my PlayerLeaving script:
02 | local container = game.Workspace.ModelsContainer |
04 | for index, child in pairs (container:GetChildren()) do |
08 | game.Players.PlayerRemoving:connect( function (player) |
09 | local DS = game:GetService( 'DataStoreService' ):GetDataStore( tostring (player.userId)); |
13 | stable [ i ] = { list [ i ] .Name, { list [ i ] :GetPrimaryPartCFrame():components() } } ; |
16 | DS:SetAsync( 'Build' , stable); |
At the moment it is not working; do I need to start a server for it to work or is something wrong with it?