Discuss Scratch

Hazerdcourse
Scratcher
4 posts

Welcome to Scratch! Get started here!

Hazerdcourse wrote:

Coder-X_14 wrote:

Hazerdcourse wrote:

im trying to make a gta 2 stlye game but idk how to make the camera move corresponding to the players direction and position

You mean scrolling GTA 2?
Yes
im also working this project in turbowarp
AqsaWOW2
Scratcher
7 posts

Welcome to Scratch! Get started here!

hello new scratcher here new tips update today!
1.Read the guidelines.
2.Don't advertise.
3.Don't go around saying that you know everything about scratch and that you are the best.
4.Go chat in studios talk with people explore projects.
5.Make simple projects and don't think you're gonna be good at scratch as soon as you start scratch.
maybe if you follow this tips you be scratcher!


DM me if this helpful(DM in my profile and follow)
when green flag clicked
say []have a nice day:)
when green flag clicked
Coder-X_14
Scratcher
31 posts

Welcome to Scratch! Get started here!

kiwilover2736 wrote:

BudgiesAreCool121YT wrote:

SCRAAAAAAAAATCH > EXPLAIN @SAVE_THE_KIWIS GETTING BANNED AND RESPOND ON MY PROFILE
Uh, what? Reasons for bans are private, and if you ask the Scratch Team to tell you why, they won't. Maybe they were acting a biit rude? I have no clue.

WAIT, HE GOT BANNED!?
Aw, I kinda miss him.

From @Coder-x_14, the coder guy in the neighborhood
Coder-X_14
Scratcher
31 posts

Welcome to Scratch! Get started here!

FiScratch7 wrote:

I Want To Become A “Scratcher”
Scratch itself will tell you when ur a true scratcher

From @Coder-x_14, the coder guy in the neighborhood
AqsaWOW2
Scratcher
7 posts

Welcome to Scratch! Get started here!

oh yeah check out my new QNA for new scrarcher if you want to aks in the comment of my project and love fav and follow
thanks
project: https://scratch.mit.edu/projects/967782366/
-SlingshotMain-
Scratcher
100+ posts

Welcome to Scratch! Get started here!

Friggbocool wrote:

define 
say []
say [] for (2) secs
switch costume to [(answer)(answer)(answer)(answer)(answer)(mouse x) v]
think [] for (2) secs
think []
move () steps
move () steps
move () steps
please use the scratchblocks testing forum.

please note that i minimod A LOT. let me know if i am incorrect about something and i will change it. | she/they | im gay, deal with it. | trauma | come check out my regretevator and phighting topics!
BudgiesAreCool121YT
Scratcher
40 posts

Welcome to Scratch! Get started here!

Coder-X_14 wrote:

kiwilover2736 wrote:

BudgiesAreCool121YT wrote:

SCRAAAAAAAAATCH > EXPLAIN @SAVE_THE_KIWIS GETTING BANNED AND RESPOND ON MY PROFILE
Uh, what? Reasons for bans are private, and if you ask the Scratch Team to tell you why, they won't. Maybe they were acting a biit rude? I have no clue.

WAIT, HE GOT BANNED!?
Aw, I kinda miss him.
It was my main
biceje9813
New Scratcher
3 posts

Welcome to Scratch! Get started here!

yjomonscratch wrote:

Can anyone give an idea of a project i have been thinkinng what should i make because i have made 31 projects !
Wow thats great to hear, 31 :):)

Last edited by biceje9813 (Feb. 27, 2024 16:43:07)

BudgiesAreCool121YT
Scratcher
40 posts

Welcome to Scratch! Get started here!

Friggbocool wrote:

BudgiesAreCool121YT wrote:

Friggbocool wrote:

L looser
I did not say that
-SlingshotMain-
Scratcher
100+ posts

Welcome to Scratch! Get started here!

Friggbocool wrote:

BudgiesAreCool121YT wrote:

Friggbocool wrote:

L looser
please don’t misquote people either.

please note that i minimod A LOT. let me know if i am incorrect about something and i will change it. | she/they | im gay, deal with it. | trauma | come check out my regretevator and phighting topics!
BudgiesAreCool121YT
Scratcher
40 posts

Welcome to Scratch! Get started here!

-SlingshotMain- wrote:

Friggbocool wrote:

BudgiesAreCool121YT wrote:

Friggbocool wrote:

L looser
please don’t misquote people either.
Ty cuz u saw me say something different
DOUNTS4LIFE3
Scratcher
4 posts

Welcome to Scratch! Get started here!

kiwilover2736 wrote:

DOUNTS4LIFE3 wrote:

Coder-X_14 wrote:

Hi there, I’m experienced scratcher for 2 years so plz feel free to ask 4 help!
how do lists work?
Lists are basically variables that store variables. You could use lists to make inventories, some kind of list of numbers and much more! To make a list, go to the “variables” category on your project and click “Make a list”. There are quite a few blocks related to lists, so i'll explain them here:

(list :: list) //This block reports the entire contents of a list.
add [] to [list v] //This block adds whatever you put in the first input to the bottom of the list you select.
delete ( ) of [list v] //Every item in a list has it's own number. When used, this block will delete the item with the number you select.
insert [] at (1) of [list v] //This block just adds whatever you decided to add to the number you set.
replace item () of [list v] with [thing] //This block replaces the item that is at the number you select with what you put in the last input.
(item ( v) of [list v] :: list) //This block reports what item is at the number you set.
(length of [ v] :: list) //This block reports how many items are in the list you set.
<[ v] contains [thing] ?> //This block will report whether a list contains the item you set or not.
show list [ v] //This block shows the list you select.
hide list [ v] //This block hides the list you select.

Here's an example project for how inventories work with lists: https://scratch.mit.edu/projects/229104401/ . If you have any questions, you can ask me.
Thanks!
kiwilover2736
Scratcher
1000+ posts

Welcome to Scratch! Get started here!

DOUNTS4LIFE3 wrote:

kiwilover2736 wrote:

DOUNTS4LIFE3 wrote:

Coder-X_14 wrote:

Hi there, I’m experienced scratcher for 2 years so plz feel free to ask 4 help!
how do lists work?
Lists are basically variables that store variables. You could use lists to make inventories, some kind of list of numbers and much more! To make a list, go to the “variables” category on your project and click “Make a list”. There are quite a few blocks related to lists, so i'll explain them here:

(list :: list) //This block reports the entire contents of a list.
add [] to [list v] //This block adds whatever you put in the first input to the bottom of the list you select.
delete ( ) of [list v] //Every item in a list has it's own number. When used, this block will delete the item with the number you select.
insert [] at (1) of [list v] //This block just adds whatever you decided to add to the number you set.
replace item () of [list v] with [thing] //This block replaces the item that is at the number you select with what you put in the last input.
(item ( v) of [list v] :: list) //This block reports what item is at the number you set.
(length of [ v] :: list) //This block reports how many items are in the list you set.
<[ v] contains [thing] ?> //This block will report whether a list contains the item you set or not.
show list [ v] //This block shows the list you select.
hide list [ v] //This block hides the list you select.

Here's an example project for how inventories work with lists: https://scratch.mit.edu/projects/229104401/ . If you have any questions, you can ask me.
Thanks!
You're welcome.

⋆˖⁺‧₊☽ Just a person who helps in and cleans up the Discussion Forums! ☾₊‧⁺˖⋆

⋆˖⁺ I reached 1000 followers in January of 2024 and made an QNA. I'm now done with answering all the questions, and here's the project for it! ⁺˖⋆

⋆˖⁺ One of my projects was featured! :‎D Check it out here! ⁺˖⋆

⋆˖⁺ Murder Drones fan! ⁺˖⋆ (Note: Murder Drones is an Indie Show.)




———————————————————————————————————————————————

RANDOM SCRATCHERS OUT OF CONTEXT :‎D


Za-Chary once said..

Za-Chary wrote:

Could you remind us what scenes are in ScratchJr and what they do?

alphabetlorefan2003 wrote:

If this gets rejected, add this to Za-Chary!
After all, I AM the list of rejected suggestions.


And Paddle2See once said..

Paddle2See wrote:

This is not a question for this forum. It's a question for your lawyer.


~Congrats! You found secret links. These are just random images that i might use.~

u.cubeupload.com/eason_9_lol/SxrJFv.png
u.cubeupload.com/eason_9_lol/Wf472Y.png
u.cubeupload.com/eason_9_lol/a8wDJ4.png
Dagriffpatchfan
Scratcher
100+ posts

Welcome to Scratch! Get started here!

hi guys

I am Griffpatch's biggest fan, please check out my projects, I do F4F!!!
SMB4|Just ask to become a curator|Free image hosting! |
If I wrote something, and then you wrote something back, if I don't respond within 4-5 days, feel free tosend me the topic link and a reminder on my Profile page
BudgiesAreCool121YT
Scratcher
40 posts

Welcome to Scratch! Get started here!

Dagriffpatchfan wrote:

hi guys
How about NO
kiwilover2736
Scratcher
1000+ posts

Welcome to Scratch! Get started here!

BudgiesAreCool121YT wrote:

Dagriffpatchfan wrote:

hi guys
How about NO
What?

⋆˖⁺‧₊☽ Just a person who helps in and cleans up the Discussion Forums! ☾₊‧⁺˖⋆

⋆˖⁺ I reached 1000 followers in January of 2024 and made an QNA. I'm now done with answering all the questions, and here's the project for it! ⁺˖⋆

⋆˖⁺ One of my projects was featured! :‎D Check it out here! ⁺˖⋆

⋆˖⁺ Murder Drones fan! ⁺˖⋆ (Note: Murder Drones is an Indie Show.)




———————————————————————————————————————————————

RANDOM SCRATCHERS OUT OF CONTEXT :‎D


Za-Chary once said..

Za-Chary wrote:

Could you remind us what scenes are in ScratchJr and what they do?

alphabetlorefan2003 wrote:

If this gets rejected, add this to Za-Chary!
After all, I AM the list of rejected suggestions.


And Paddle2See once said..

Paddle2See wrote:

This is not a question for this forum. It's a question for your lawyer.


~Congrats! You found secret links. These are just random images that i might use.~

u.cubeupload.com/eason_9_lol/SxrJFv.png
u.cubeupload.com/eason_9_lol/Wf472Y.png
u.cubeupload.com/eason_9_lol/a8wDJ4.png
BudgiesAreCool121YT
Scratcher
40 posts

Welcome to Scratch! Get started here!

kiwilover2736 wrote:

BudgiesAreCool121YT wrote:

Dagriffpatchfan wrote:

hi guys
How about NO
What?
Ice Cube: I Want REVENGE!
Friggbocool
Scratcher
20 posts

Welcome to Scratch! Get started here!

BudgiesAreCool121YT wrote:

kiwilover2736 wrote:

BudgiesAreCool121YT wrote:

Dagriffpatchfan wrote:

hi guys
How about NO
What?
Ice Cube: I Want REVENGE!
yjomonscratch
Scratcher
19 posts

Welcome to Scratch! Get started here!

biceje9813 wrote:

yjomonscratch wrote:

Can anyone give an idea of a project i have been thinkinng what should i make because i have made 31 projects !
Wow thats great to hear, 31 :):)
but now i have 50
BudgiesAreCool121YT
Scratcher
40 posts

Welcome to Scratch! Get started here!

Friggbocool wrote:

BudgiesAreCool121YT wrote:

kiwilover2736 wrote:

BudgiesAreCool121YT wrote:

Dagriffpatchfan wrote:

hi guys
How about NO
What?
Ice Cube: I Want REVENGE!
STOP

Powered by DjangoBB