of     1   

Mapyo
#182994784Thursday, February 04, 2016 7:56 PM GMT

Hi! I am currently working on a new game sort of like Habbo Hotel but 3D. A place to hangout and chat. I need a script to SAVE my leaderboard stats called "Funds", the cash you earn every 2 minutes or have purchased with ROBUX. Here is my script that I am currently using. print("Income Leaderboard Initialized") function onPlayerEntered(newPlayer) local stats = Instance.new("IntValue") stats.Name = "leaderstats" local stats1 = Instance.new("IntValue") stats1.Name = "Funds" stats1.Value = 100 local stats2 = Instance.new("IntValue") stats2.Name = "income" stats1.Parent = stats stats2.Parent = newPlayer stats.Parent = newPlayer while true do wait(120) mins.Value = mins.Value + 10 end end game.Players.ChildAdded:connect(onPlayerEntered) I have searched free models for examples of leaderboards I coulld start with but none work. (And yes I do change the stats name and cash names) If you could find or make one and set it up with my leaderboard that would be much appreciated. Please point out any flaws in my script too. Thanks -Mapyo
Mapyo
#182997036Thursday, February 04, 2016 8:39 PM GMT

.bmp -Mapyo
W8X
#182997348Thursday, February 04, 2016 8:45 PM GMT

You should probably post this on SH. -Waitex
Mapyo
#182997415Thursday, February 04, 2016 8:46 PM GMT

@W8X SH? -Mapyo
LoREMidnight
#182998368Thursday, February 04, 2016 9:06 PM GMT

SH = Scripting Helpers I'm not a big fan of making scripts for others, but this seems like something that the wiki would actually directly cover from the "All Tutorials" section if I remember correctly.
Mapyo
#183008227Thursday, February 04, 2016 11:48 PM GMT

.bmp I am still looking everywhere for something that works, if you have something please respond! -Mapyo
llaserx
#183013259Friday, February 05, 2016 1:07 AM GMT

Datastores
XlAscensionlX
#183014461Friday, February 05, 2016 1:28 AM GMT

http://wiki.roblox.com/index.php?title=Data_store ~XlAscensionlX [Graphic Design://Scripter://Developer://]

    of     1