Discuss Scratch

Jaxxiebear13
Scratcher
46 posts

How do I make a good clicker game?

how do I make good scripts for the game I'm working on?

Last edited by Jaxxiebear13 (April 26, 2023 18:55:25)

Jaxxiebear13
Scratcher
46 posts

How do I make a good clicker game?

I do know that im supposed to do this code but dont know the rest to make a shine spin around.

when this sprite clicked
change [ clicks] by (1)
Jaxxiebear13
Scratcher
46 posts

How do I make a good clicker game?

I edited this post because i thought it was against a rule to just mess around with the scratchblocks so someone is gonna tell me if thats true or not.

Last edited by Jaxxiebear13 (June 15, 2023 14:49:23)

ParticleOctopus
Scratcher
11 posts

How do I make a good clicker game?

Wdym by Shine?


Edit: Don't judge me pls!

Last edited by ParticleOctopus (April 26, 2023 20:32:32)

medians
Scratcher
1000+ posts

How do I make a good clicker game?

Jaxxiebear13 wrote:

So if I dont know how to make a shine spin around,
Can someone tell me how to?
Do you mean a shine sprite, or some sort of shine effect? And if it’s the latter, what exactly is the effect?
09878901234321
Scratcher
500+ posts

How do I make a good clicker game?

Make a shine sprite behind the original sprite you click, and make it spin around. Ask me if you need more help.
scratchy_robot
Scratcher
62 posts

How do I make a good clicker game?

spinny spin:

forever
point in direction ((([cos v] of ((timer) * (speed that it turns))) * (how wide it can go)) + (90))
end
Jaxxiebear13
Scratcher
46 posts

How do I make a good clicker game?

ParticleOctopus wrote:

Wdym by Shine?


Edit: Don't judge me pls!
A shine is the spinny thing behind those objects in clicker games.
Jaxxiebear13
Scratcher
46 posts

How do I make a good clicker game?

scratchy_robot wrote:

spinny spin:

forever
point in direction ((([cos v] of ((timer) * (speed that it turns))) * (how wide it can go)) + (90))
end
Thanks for the help
Jaxxiebear13
Scratcher
46 posts

How do I make a good clicker game?

When i made a project the website freaked out and some parts of the website were missing.
I reloaded and it fixed.
CommunistCat14
Scratcher
2 posts

How do I make a good clicker game?

when this sprite clicked
change [ coin] by (1)
Strxwberry_Acai
Scratcher
11 posts

How do I make a good clicker game?

Use smooth movement engine for a little movement animation when it's clicked

https://scratch.mit.edu/projects/821686540/
Jaxxiebear13
Scratcher
46 posts

How do I make a good clicker game?

Strxwberry_Acai wrote:

Use smooth movement engine for a little movement animation when it's clicked

https://scratch.mit.edu/projects/821686540/
I used it in my newest animations/music tests, but I guess I'm gonna use them on a clicker game. I'll try that.

But this discussion is also dead a bit.

Last edited by Jaxxiebear13 (June 15, 2023 14:52:19)

bigmanv2
Scratcher
20 posts

How do I make a good clicker game?

if I had to say to make a good clicker game you would need good animation and a good ui

Last edited by bigmanv2 (June 15, 2023 15:11:43)

SatelIite
Scratcher
12 posts

How do I make a good clicker game?

I would say if you want a professional-ish clicker game, then try focusing on VFX and lots of upgrade options. last time I made one was like 4 years ago and it was really bad :\
gdprfe5eb249ee8b70c33c28a69f
Scratcher
500+ posts

How do I make a good clicker game?

Jaxxiebear13 wrote:

But this discussion is also dead a bit.
ok so this requires you to have a CD or Scratch breaks and stuff but I wanna help lol.
when green flag clicked
forever
if <<touching [mouse] ?> and <mouse down?>> then
change [Clicks or something] by (value or multiplier, whatever.)
create clone of [myself]
wait (cooldown thing) secs
end
end
And now for the clone:
when I start as a clone
set size to (125) % //-- Assuming you have your normal sprite sized as 100%.
set [brightness] effect to (100)
repeat (50)
change [ghost] effect by (2)
end
delete this clone
ALSO, as a suggestion: DON'T go above 60K and try not having too much OP stuff.
Most clicker games are just ‘Auto ___’
'multiplier x69 billion'

Last edited by gdprfe5eb249ee8b70c33c28a69f (June 16, 2023 14:25:12)

MasonAngotti77
Scratcher
5 posts

How do I make a good clicker game?

Clicker games are usually very easy to code! Here is some simple code for your sprite:
when this sprite clicked
change [ v] by (1)

It is also good to make a nice-looking ui. So your game looks nice!

Last edited by MasonAngotti77 (June 16, 2023 01:21:05)

09878901234321
Scratcher
500+ posts

How do I make a good clicker game?

MasonAngotti77 wrote:

(#17)
Clicker games are usually very easy to code! Here is some simple code for your sprite:
when this sprite clicked
change [ v] by (1)

It is also good to make a nice-looking ui. So your game looks nice!
I'm not sure that this person is still looking for help on their game, since they have stated themselves that the topic is a bit dead. In the future, it is best to read through the topic briefly before posting, to make sure that your post belongs.

Also, the script you provided has also already been provided over a month ago. (#11)

Jaxxiebear13 wrote:

(#13)
But this discussion is also dead a bit.
You can close the discussion at the bottom of the page if you'd like.
mrman_Lane
Scratcher
12 posts

How do I make a good clicker game?

ImARealDogNow wrote:

Jaxxiebear13 wrote:

But this discussion is also dead a bit.
ok so this requires you to have a CD or Scratch breaks and stuff but I wanna help lol.
when green flag clicked
forever
if <<touching [mouse] ?> and <mouse down?>> then
change [Clicks or something] by (value or multiplier, whatever.)
create clone of [myself]
wait (cooldown thing) secs
end
end
And now for the clone:
when I start as a clone
set size to (125) % //-- Assuming you have your normal sprite sized as 100%.
set [brightness] effect to (100)
repeat (50)
change [ghost] effect by (2)
delete this clone
ALSO, as a suggestion: DON'T go above 60K and try not having too much OP stuff.
Most clicker games are just ‘Auto ___’
'multiplier x69 billion'


In your last code, it would be more like this

when I start as a clone
set size to (125) %
set [brightness] effect to (100)
repeat (50)
change [ghost] effect by (2)
end
delete this clone
gdprfe5eb249ee8b70c33c28a69f
Scratcher
500+ posts

How do I make a good clicker game?

mrman_Lane wrote:

In your last code, it would be more like this
yeah the delete this clone in the repeat was an accident.

Powered by DjangoBB