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

Character Placing Help? (For Tycoons)

Asked by 8 years ago

Im trying to make a placing system in my tycoon. The one, just like how retail tycoon and minerhaven does, but I dont know where to start. Where should I start??

0
By The Way Scripting Helpers, Im not asking for them to make its there choice. motorcrossguy313 0 — 8y

2 answers

Log in to vote
-1
Answered by 8 years ago

Well, first when you start a tycoon, you must use a money script. Here is one I made for you:

function Entered(player)
        wait()
        if player:findFirstChild("leaderstats") ~= nil then
                player.leaderstats:remove()
        end

        stats = Instance.new("IntValue")
        stats.Parent = player
        stats.Name = "leaderstats"

        money = Instance.new("IntValue")
        money.Parent = stats
        money.Name = "Money" --Put the name of your type here in "PlaceItInHere"*
        money.Value = 100 --How much you start out with change it to how much you want*
end

game.Players.PlayerAdded:connect(Entered)

c = game.Players:GetChildren()
for i=1, #c do
        Entered(c[i])
end


--For motorcrossguy313--] 


0
Also, you must make intvalues LegendaryBossYT 0 — 8y
Ad
Log in to vote
-2
Answered by 8 years ago

This is not a request site.

0
Im not requesting, Im just asking where do I start. motorcrossguy313 0 — 8y

Answer this question