Is my game NOW ready to get advertised?

Hey everyone :waving_hand:

I recently made another topic where i was asking if my game was worth advertising, and, as i understood, it wasn’t ready for that. It was constantly updated, bugs were constantly fixed, new content was added. I hope that now it is really ready for advertising.

GAME LINK: [NEW FLINGS] Flinging Tower - Roblox

For new players, I’ll explain the main point of the game: In the game, you can grab and fling people with your own Fling tool, earning coins for this. For coins, you can buy much better Flings that throw more further (btw, many of them have their own abilities). You can earn coins in different ways: Doing quests, flinging people, winning the tower or winning the flinging arena.

All feedbacks are welcomed :heart:

2 Likes

I will post a video with the problem of why it is not worth advertising yet.

You can watch the video or understand what the problem is, if not, I will write
The problem is that everything blinks. Gooey camp and inscriptions also can not be fixed yet, you better not make advertising (my opinion). And so the game is cool you can play, reminds tower of health.

1 Like

Thanks for thoughts and feedback! :heart:

It’s strange, I’ve never seen such a glitch, I’ve never had it both in pc and phone.

Cuz it 100% cannot be the problem with the game.

By the way, it might be the Roblox Translation cause that problem, try to turn it off

I have a phone poco x7pro and if you know it is powerful. Maybe there is a problem with the translation.

Yeah, in that case, yes, there is a problem with translation. Try to turn it off andd see what happens

video is not uploading, but i have the same bugs

I think the problem caused not by translation: even in English, the text behaves it not well on mobile.

I played on PC and didn’t have this problem.

Maybe, the ping, bad wifi or fps can cause this. I tried to do all i can for the game, and now, as i think, it mustn’t blink anymore.

bump, for more thoughts, does my game worth it or no, i really wanna know

Good news: I didn’t have the UI flickering issue (I am on a high spec PC)

Bad news: everything is so neon and right in your face, that it’s difficult to play. All parts and elements are competing with each other for your attention that I got overwhelmed. It’s very hard on the eyes.

1 Like

DW much, it’s roblox bug when device has not much memory and has a lot of text. Can’t be fixed.

I logged in from a computer and there was no such problem.

an old game i was making years ago had this issue and i eventually found out it was due to having too many surfaceguis/billboardguis/text labels in my game. apparently they take up more memory than you’d think, and while higher-end devices are perfectly fine, lower-end devices do this weird text flickering thing. the way i fixed this in my game was by adding a script that automatically disabled all text outside of a certain range. went a little something like this:

--untested, please tweak the code until it works in your game
while wait(1) do
     for i,v in game.Workspace:GetDescendants() do --loop through all objects in workspace
          if v:IsA("BillboardGui") or v:IsA("SurfaceGui") then --if object is a GUI container of some sort
               if v.Parent:IsA("BasePart") and (player.Character.HumanoidRootPart.Position - v.Parent.Position).magnitude > 40 then --if the GUI is parented to a part and the part is out of range
                    v.Enabled = false --disable it
               else
                    v.Enabled = true --enable it
               end
          end
     end
end

hope this helps, you might have to lower/raise the distance until it feels right for your game.

1 Like

Thanks for feedback, I’m glad everything is working :grinning_face_with_smiling_eyes:

What about neons, I’m currently planning to completely redesign the tower spawn and remove a lot of the neons so that everything doesn’t look so confusing and overwhelming.

Hope you liked the game :heart:

1 Like

thank you SO MUCH for your tips on how to fix this, really appreciate it! :heart:

Fixed A LOT of bugs and glitches, and i think the problem with blinking texts was fixed (i hope :folded_hands:). Also redesigned the spawn, looks much better!

bump, need MORE THOUGHTS about the game. I really wanna know, is it worth it or not?

There’s MaxDistance on both of this GUI containers existing. Instead of running loop - it will be better to just utilize that.
Furthermore - why loop across entire game? Why not cache links to GUI containers? and then track if more added/removed.

2 Likes