This is a texting simulator, the text that you put in goes to the next person that does this. Before you click the green flag just make sure that you are paying attention to the cat. FYI. this is part of another project that I'm working on.
hello! people! I finally reshared the project after scratch team took it down I have a list that has all the words that you can say, hope you like it! this took a LOT of time and effort but it works which is great! I had a big obstacle since cloud variables can't store characters and symbols. The way I got through this was by encoding the letters into numbers. My system is A=1 B=2 C=3 and so on and so fourth. Another problem was the computer didn't understand that some letters like "K"(11) that were 2 digits, it though instead of a k it would be 2 a's. My solution to this is A=11 B=12 C=13, the extra number in front of the other number represents how many digits are in the number so K=211 the 2 is for 2 digits. Thanks for reading all the way down here!