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

How would I make a Tycoon Saving Progress and Money? [closed]

Asked by
SynnDC 8
4 years ago

So I'm making a tycoon game with a bit of scripting experience. I do get that you can use Data Store but I really don't get it. It could be awesome if someone helped me out a bit. I'm using Zednov's Tycoon Kit for this tycoon game. If you need the scripts, just ask me please.

Closed as Not Constructive by 2_MMZ, pwx, and Amiaa16

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by
MattVSNNL 620 Moderation Voter
4 years ago
Edited 4 years ago

If you use this code, You gotta try it in a real game

Add a script to server script service and call it dataHandler or whatever you want

Here's the code you use:

01-- Adding variables like the data store service, myData store is your data store, Players left is to detect if there's amount of players to detect when the server can shutdown
02local dataStoreService = game:GetService("DataStoreService")
03local myDataStore = dataStoreService:GetDataStore("RobloxDataStore")
04local playersLeft = 0
05 
06game.Players.PlayerAdded:Connect(function(player)
07 
08    -- every time a player joins it add 1 more to the players left
09 
10    playersLeft = playersLeft + 1
11 
12    -- Adding money to the play
13    local leaderstats = Instance.new("Folder")
14    leaderstats.Name = "leaderstats"
15    leaderstats.Parent = player
View all 92 lines...

please read what I put the green things in, I tell you how it works

0
All right, I will try it out and see if it works. Thank you so much. SynnDC 8 — 4y
0
So, I tried it out and all it does is make a new leaderstat from the one I already have. SynnDC 8 — 4y
0
please read what I put the green things in, I tell you how it works MattVSNNL 620 — 4y
0
Yes I did that but is there any way I can make it save money and save the tycoon? Not just adding a different value to the leaderboard. SynnDC 8 — 4y
0
If you want to save the tycoon, that would require saving a model to the datastore,,, i found this link, but it looks complicated: https://devforum.roblox.com/t/how-i-can-make-a-model-data-store/225105 . I am no expert but if you are making a regular tycoon where the player has to buy stuff and add it, maybe you can save what the player has bought so when they rejoin it has the info Omq_ItzJasmin 666 — 4y
Ad