How do I save what a player does in my Tycoon?
So basically what happens is that when the player clicks on a part. The part then gets destroyed.
I then use a for i loop to lerp the object to another transparent object and I am unsure how to save this. So that the player doesn't have to start the tycoon all over again.
Here is the code:
01 | game.workspace.Box.BA:WaitForChild( "B1Buy" ).ClickDetector.MouseClick:Connect( function (player) |
03 | if (player.leaderstats.Cahs.Value - 50 ) > = 0 then |
04 | local B 1 = game.Workspace.B 1 |
05 | local B 1 Trans = game.Workspace.Box.BA.B 1 Transfer |
06 | player.leaderstats.Cash.Value = player.leaderstats.Cash.Value - 50 |
07 | game.Workspace.Box.BA.B 1 Buy:Destroy() |
11 | B 1. CFrame = B 1. CFrame:Lerp(B 1 Trans.CFrame, 1 ) |
12 | B 1. Transparency = B 1. Transparency - 0.01 |