Would You play this game?

Hey,

I recently finished fixing my mini-game and I’d like to keep working on it for a while. I will be adding new features to make the game more engaging.

If I were to start advertising it on social media and Roblox itself, could it even gain regular players and players that play the game in their free time???

Thanks for your time :star:


11 Likes

I think it would be interesting. I would recommend making the UI look just a bit nicer though and allow people to use the spacebar.

One more thing, when it goes very thin, placement isn’t very accurate after.

4 Likes

Hey! Thanks for the feedback!

I’ve added the Spacebar as an option for placing blocks. I hope it’s better and works as intended.

As for thin blocks at the end, I have not found a way to fix them yet. I will maybe deal with it in the future.

2 Likes

The issue with thinner blocks may be that your still adding a bit of force after its placed, since there is an issue of latency in games like this.

2 Likes

Hmm, I don’t actually use velocity when moving the blocks. It’s all done by tweening. Latency could be the issue tho.

2 Likes

Tweening may take a bit to pause like using body movers and such do.

1 Like

Thanks :star: ! I will try taking a look at the code.

But what do you think about the game as a whole?

1 Like

It’s really good, especially for a game that doesn’t really have anything else to it.

2 Likes

Thanks! I am intending to add a few cosmetic changes, but other than that yeah, it’s a finished very-very simplistic game.

How would you suggest I make the UI more intuitive? Do you mean adding effects, borders or something else?

I don’t completely understand what you mean by that.

No offense but this just looks like a direct copy of the already existing mobile game ‘Stack’ .

4 Likes

It is based on the same idea yes. If it looks similar, then that is because it is the most user friendly way of displaying a game like this.

And it’s also a recreation :slight_smile:

It seems like I found a secret impossible mode in your game.

1 Like

I personally enjoy it! It’s really fun and relaxing and very different from other Roblox games. Nice job!

1 Like

Oh wow! Thanks for sharing gameplay. I am intending to fix that, but it is a “feature” until I find a fix :upside_down_face:

1 Like

Thanks for playing the game! I find it relaxing too sometimes.

:slight_smile:

1 Like

Use this:

local starterGui = game:GetService("StarterGui")

starterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)
starterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
starterGui:SetCoreGuiEnabled(Enum.CoreGuiType.EmotesMenu, false)
starterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health, false)

U dont need these, disable these and your game will look better.

If you also want to also disable chat with the 4 Options over me, do this:

starterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)

3 Likes

I have not even thought about doing this! Thanks for pointing it out :star: . I will add it soon.

Hope you enjoyed the game too :wink:

I have removed the unnecessary menus, thanks

Looks great! Currently in 14th place on the global leaderboard :muscle:

1 Like

No problem.


1 Like