Making an upgrade tree game(But i have no idea how to do it)

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    Well yes. As in the title i make a upgrade tree game with help of the forum.

  2. What is the issue? Include screenshots / videos if possible!
    im dumb. so yeah

  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    Well yes. i have looked a lot but as of writing this i have found nothing

Only thing i got is my mighty baseplate. And hopefully someone on the forum

1 Like

you can start by making a button that increases the tree size then adding conditions (such as cost to upgrade tree) and finally making the way you earn the money to upgrade the tree. Thats how I would approach a “tree upgrading” game

What i ment by a upgrade tree are these games were you buy a button that give you like 1 point per sec. and when that is bought you unlock another button which is another multiplier for example. I might not have worded my title to well.

So, basically you just want a part to start with, and a click detector.

Name the first part “PartA”

Then make another part, and name it “PartB” and set it’s transparency to 1 or 0.5.

Code:

part = script.Parent
detect = part.ClickDetector

partb = workspace.PartB



function onClick()
	
	part.Transparency = 0.5
	
	partb.Transparency = 0
	
end

detect.MouseClick:Connect(onClick)

Thats just the simple upgrade part.

1 Like

Ohhh, i misunderstood so like a simulator game. You can start by making a leader stat then scripting and creating a button that increases that leaderstat. If you dont know how to do that you can just search up “how to make a button that increases a leaderstat”. Then you make a shop system. This is just a vague idea of what you need to do. It might be simpler to follow a youtube tutorial. I also recommend just learning from beginner tutorials first, roblox has its own guides section

Well yes ig simulator/incremental. Heres a game with the same game idea as me

Also. The game is a server game. The points is given to the server and its shared among all the players
So player A has 512 points then player B has the same. And player B might buy a button which ofc buys it for player A too.

Make a value called “Money” and another called “Multiplier” and set multiplier value to 0. Yeah it’s a bit too long to actually fully explain.

yeah ik. i could prob pull smth together. im just trying to learn a bit more