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

Is there anyway in this script to change the start money?

Asked by
DevingDev 346 Moderation Voter
8 years ago
Edited 8 years ago

ya i know its a pretty long scirpt but i hope its somewhere inthere i can find where or you guys can find where start money is?

001    local StatList = {}
002    local StatNames = {}    -- An array of stat names in order of the stats' creation.
003    local StatCategories = {}   -- name->category map
004    local StatCount = {}    -- Counts number of stats per category
005    local StatChanged = CreateSignal()
006    function AddStat(name, category, value)
007        if not StatCount[category] then
008            StatCount[category] = 1
009        else
010            StatCount[category] = StatCount[category] + 1
011        end
012        local stat = Instance.new('StringValue')
013        stat.Name = name
014        if value then stat.Value = value end
015        StatList[name] = stat
View all 166 lines...
0
Line 94 FiredDusk 1466 — 8y
0
Line 94 isnt even any numbers????? DevingDev 346 — 8y

1 answer

Log in to vote
2
Answered by 8 years ago

With this code, you'd start with 0. You're going to have to add code instead of changing it. On line 86, put:

1Cookies.Value = 1000

This will set the start cookies to 1000, change 1000 to any number you like!

0
UndeniableLimited, You are right about that but thats not the hole script it shows 1000 like 1 sec and then it just turns to 0 i cant post the hole script so anyway i can show you the hole script? DevingDev 346 — 8y
0
Put it on kobra.io and send me the link to it! General_Scripter 425 — 8y
Ad

Answer this question