Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » Official [scratchblocks] Testing Topic 9
#16741June 9, 2025 01:11:11
- gigi_lindalinda
-
Scratcher
100+ posts
Official [scratchblocks] Testing Topic 9
when green flag clicked
say [IM BACON_HAIR1020301 >:3]
repeat until <(current [time v]) = [sleepy time! zzz]>
play sound (roblox grow a garden noises v) until done
end
#16742June 9, 2025 05:17:26
- ChoppaEmergencyFood
-
Scratcher
99 posts
Official [scratchblocks] Testing Topic 9
define function (input)
#16743June 9, 2025 05:19:02
- ChoppaEmergencyFood
-
Scratcher
99 posts
Official [scratchblocks] Testing Topic 9
<(foo) = (foo)>
Why is the variable in scratchblocks always “foo”?
#16744June 9, 2025 05:21:40
- ChoppaEmergencyFood
-
Scratcher
99 posts
Official [scratchblocks] Testing Topic 9
define function (input)
if <[(input)] = [(input)]> then
...
end
#16745June 9, 2025 05:21:47
- BriIliantScratcher
-
Scratcher
62 posts
Official [scratchblocks] Testing Topic 9
<html>i somehow managed to do a glitch where it reveals my contentkeeper web filter screen code
<head>
<title>Blocked by ContentKeeper</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<style>
body {
font-family: sans-serif;
font-weight: 300;
font-size: .75em;
color: white;
text-align: center;
margin: 0 auto;
}
#content {
display: flex;
flex-flow: column;
align-items: center;
justify-content: space-between;
height: 100%;
}
header {
}
footer {
width: 100%;
background-color: transparent;
}
h1 {
font-weight: 300;
font-size: 50px;
text-align: center;
}
input, input {
font-family: sans-serif;
font-weight: 300;
height: 3em;
width: 25em;
border: none;
box-shadow: none;
padding: 1em;
margin: .25em;
}
input:hover, input:hover {
outline: 2px solid #ffb27f;
}
input:focus, input:focus {
outline: 2px solid #F95E02;
}
input {
font-family: sans-serif;
font-weight: 300;
height: 2.75em;
width: 10em;
margin: 1em;
color: white;
background-color: #F95E02;
border: none;
}
input:hover {
outline: 2px solid white;
cursor: pointer;
}
input:focus {
outline: 2px solid white;
}
table {
border-collapse: separate;
border-spacing: 00px;
}
th {
font-size: 20px;
font-weight: 600;
text-align: right;
padding-right: .5em;
}
td {
font-size: 20px;
font-weight: 300;
text-align: left;
}
</style>
</head>
<body bgcolor='#b32323'>
<div id='content'>
<div></div>
<div></div>
<header>
<h1>Blocked by ContentKeeper</h1>
</header>
<footer>
<center>
<p>
<table>
<tr>
<th>URL</th>
<td> scratch.mit.edu </td>
</tr>
<tr>
<th>MODULE</th>
<td>ContentKeeper Cloud Express</td>
</tr>
<tr>
<th>CATEGORY</th>
<td> Classification error </td>
</tr>
<tr>
<th>POLICY</th>
<td> Default </td>
</tr>
<tr>
<th>USERNAME</th>
<td> no email reveal </td>
</tr>
</table>
</p>
</center>
</footer>
<div></div>
</div>
</body>
</html>
#16746June 9, 2025 05:23:05
- ChoppaEmergencyFood
-
Scratcher
99 posts
Official [scratchblocks] Testing Topic 9
Hold on, let me try that again.
define function (input)
if <(input) = (input)> then
...
end
#16747June 9, 2025 05:26:40
- camiloynigo
-
Scratcher
100+ posts
Official [scratchblocks] Testing Topic 9
???<html>i somehow managed to do a glitch where it reveals my contentkeeper web filter screen code
<head>
<title>Blocked by ContentKeeper</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<style>
body {
font-family: sans-serif;
font-weight: 300;
font-size: .75em;
color: white;
text-align: center;
margin: 0 auto;
}
#content {
display: flex;
flex-flow: column;
align-items: center;
justify-content: space-between;
height: 100%;
}
header {
}
footer {
width: 100%;
background-color: transparent;
}
h1 {
font-weight: 300;
font-size: 50px;
text-align: center;
}
input, input {
font-family: sans-serif;
font-weight: 300;
height: 3em;
width: 25em;
border: none;
box-shadow: none;
padding: 1em;
margin: .25em;
}
input:hover, input:hover {
outline: 2px solid #ffb27f;
}
input:focus, input:focus {
outline: 2px solid #F95E02;
}
input {
font-family: sans-serif;
font-weight: 300;
height: 2.75em;
width: 10em;
margin: 1em;
color: white;
background-color: #F95E02;
border: none;
}
input:hover {
outline: 2px solid white;
cursor: pointer;
}
input:focus {
outline: 2px solid white;
}
table {
border-collapse: separate;
border-spacing: 00px;
}
th {
font-size: 20px;
font-weight: 600;
text-align: right;
padding-right: .5em;
}
td {
font-size: 20px;
font-weight: 300;
text-align: left;
}
</style>
</head>
<body bgcolor='#b32323'>
<div id='content'>
<div></div>
<div></div>
<header>
<h1>Blocked by ContentKeeper</h1>
</header>
<footer>
<center>
<p>
<table>
<tr>
<th>URL</th>
<td> scratch.mit.edu </td>
</tr>
<tr>
<th>MODULE</th>
<td>ContentKeeper Cloud Express</td>
</tr>
<tr>
<th>CATEGORY</th>
<td> Classification error </td>
</tr>
<tr>
<th>POLICY</th>
<td> Default </td>
</tr>
<tr>
<th>USERNAME</th>
<td> no email reveal </td>
</tr>
</table>
</p>
</center>
</footer>
<div></div>
</div>
</body>
</html>
#16748June 9, 2025 10:06:25
- leog20162
-
Scratcher
100+ posts
Official [scratchblocks] Testing Topic 9
{guys guess what}{
I made scratch blocks :) :: hat
[scratch is so cool!] :: reporter :: pen
} :: controlIf someone can make this, I will follow them 
You have to show the raw bbc code
#16749June 9, 2025 10:08:48
#16750June 9, 2025 19:18:40
- lnecel
-
Scratcher
500+ posts
Official [scratchblocks] Testing Topic 9
Nah,Set font to [Roboto Mono]::looks
console font!!! ::#232ada hat
set font for qwertyuiop[018271@)]::motion
hack{1{2{3{4::looks}::looks}::looks}::looks}hello::looks
call[hecker101110roboto]::sound
say [hello] until (::ring)(::ring)(::ring)(::ring)(::ring)(::ring)(::ring)::events cap
#16751June 9, 2025 19:27:37
- lnecel
-
Scratcher
500+ posts
Official [scratchblocks] Testing Topic 9
<html> <head> <title>Blocked by ContentKeeper</title> <meta name='viewport' content='width=device-width, initial-scale=1'> <style> body { font-family: sans-serif; font-weight: 300; font-size: .75em; color: white; text-align: center; margin: 0 auto; } #content { display: flex; flex-flow: column; align-items: center; justify-content: space-between; height: 100%; } header { } footer { width: 100%; background-color: transparent; } h1 { font-weight: 300; font-size: 50px; text-align: center; } input[type=text], input[type=password] { font-family: sans-serif; font-weight: 300; height: 3em; width: 25em; border: none; box-shadow: none; padding: 1em; margin: .25em; } input[type=text]:hover, input[type=password]:hover { outline: 2px solid #ffb27f; } input[type=text]:focus, input[type=password]:focus { outline: 2px solid #F95E02; } input[type=submit] { font-family: sans-serif; font-weight: 300; height: 2.75em; width: 10em; margin: 1em; color: white; background-color: #F95E02; border: none; } input[type=submit]:hover { outline: 2px solid white; cursor: pointer; } input[type=submit]:focus { outline: 2px solid white; } table { border-collapse: separate; border-spacing: 00px; } th { font-size: 20px; font-weight: 600; text-align: right; padding-right: .5em; } td { font-size: 20px; font-weight: 300; text-align: left; } </style> </head> <body bgcolor='#b32323'> <div id='content'> <div></div> <div></div> <header> <h1>Blocked by ContentKeeper</h1> </header> <footer> <center> <p> <table> <tr> <th>URL</th> <td> scratch.mit.edu </td> </tr> <tr> <th>MODULE</th> <td>ContentKeeper Cloud Express</td> </tr> <tr> <th>CATEGORY</th> <td> Classification error </td> </tr> <tr> <th>POLICY</th> <td> Default </td> </tr> <tr> <th>USERNAME</th> <td> no email reveal </td> </tr> </table> </p> </center> </footer> <div></div> </div> </body> </html>
camiloynigo for the html code
#16752June 9, 2025 19:30:15
- shadow8737
-
Scratcher
500+ posts
Official [scratchblocks] Testing Topic 9
My siggy guard
@greenFlag O @greenFlag:: motion reporter
#16753June 9, 2025 19:31:55
- MaxSaturn3000_
-
Scratcher
44 posts
Official [scratchblocks] Testing Topic 9
{{{Madness}}}Last edited by MaxSaturn3000_ (June 11, 2025 20:39:48)
#16754June 9, 2025 19:33:29
- shadow8737
-
Scratcher
500+ posts
Official [scratchblocks] Testing Topic 9
{{{{{{{{{{{{{{{{{Madness{{{{{{lol{{
#16755June 9, 2025 20:17:34
- notviros
-
Scratcher
100+ posts
Official [scratchblocks] Testing Topic 9
hello, I have been in school for far to long, school ends on the 24th, bro i'm tweakin
#16756June 9, 2025 20:25:49
#16757June 9, 2025 20:29:37
- BriIliantScratcher
-
Scratcher
62 posts
Official [scratchblocks] Testing Topic 9
I tried to quote your post but, it showed a html code for a web filter screen???<html>i somehow managed to do a glitch where it reveals my contentkeeper web filter screen code
<head>
<title>Blocked by ContentKeeper</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<style>
body {
font-family: sans-serif;
font-weight: 300;
font-size: .75em;
color: white;
text-align: center;
margin: 0 auto;
}
#content {
display: flex;
flex-flow: column;
align-items: center;
justify-content: space-between;
height: 100%;
}
header {
}
footer {
width: 100%;
background-color: transparent;
}
h1 {
font-weight: 300;
font-size: 50px;
text-align: center;
}
input, input {
font-family: sans-serif;
font-weight: 300;
height: 3em;
width: 25em;
border: none;
box-shadow: none;
padding: 1em;
margin: .25em;
}
input:hover, input:hover {
outline: 2px solid #ffb27f;
}
input:focus, input:focus {
outline: 2px solid #F95E02;
}
input {
font-family: sans-serif;
font-weight: 300;
height: 2.75em;
width: 10em;
margin: 1em;
color: white;
background-color: #F95E02;
border: none;
}
input:hover {
outline: 2px solid white;
cursor: pointer;
}
input:focus {
outline: 2px solid white;
}
table {
border-collapse: separate;
border-spacing: 00px;
}
th {
font-size: 20px;
font-weight: 600;
text-align: right;
padding-right: .5em;
}
td {
font-size: 20px;
font-weight: 300;
text-align: left;
}
</style>
</head>
<body bgcolor='#b32323'>
<div id='content'>
<div></div>
<div></div>
<header>
<h1>Blocked by ContentKeeper</h1>
</header>
<footer>
<center>
<p>
<table>
<tr>
<th>URL</th>
<td> scratch.mit.edu </td>
</tr>
<tr>
<th>MODULE</th>
<td>ContentKeeper Cloud Express</td>
</tr>
<tr>
<th>CATEGORY</th>
<td> Classification error </td>
</tr>
<tr>
<th>POLICY</th>
<td> Default </td>
</tr>
<tr>
<th>USERNAME</th>
<td> no email reveal </td>
</tr>
</table>
</p>
</center>
</footer>
<div></div>
</div>
</body>
</html>
no it was a glitch I tried to quote her but the original post turned into a html codeI highlighted the code<html> <head> <title>Blocked by ContentKeeper</title> <meta name='viewport' content='width=device-width, initial-scale=1'> <style> body { font-family: sans-serif; font-weight: 300; font-size: .75em; color: white; text-align: center; margin: 0 auto; } #content { display: flex; flex-flow: column; align-items: center; justify-content: space-between; height: 100%; } header { } footer { width: 100%; background-color: transparent; } h1 { font-weight: 300; font-size: 50px; text-align: center; } input[type=text], input[type=password] { font-family: sans-serif; font-weight: 300; height: 3em; width: 25em; border: none; box-shadow: none; padding: 1em; margin: .25em; } input[type=text]:hover, input[type=password]:hover { outline: 2px solid #ffb27f; } input[type=text]:focus, input[type=password]:focus { outline: 2px solid #F95E02; } input[type=submit] { font-family: sans-serif; font-weight: 300; height: 2.75em; width: 10em; margin: 1em; color: white; background-color: #F95E02; border: none; } input[type=submit]:hover { outline: 2px solid white; cursor: pointer; } input[type=submit]:focus { outline: 2px solid white; } table { border-collapse: separate; border-spacing: 00px; } th { font-size: 20px; font-weight: 600; text-align: right; padding-right: .5em; } td { font-size: 20px; font-weight: 300; text-align: left; } </style> </head> <body bgcolor='#b32323'> <div id='content'> <div></div> <div></div> <header> <h1>Blocked by ContentKeeper</h1> </header> <footer> <center> <p> <table> <tr> <th>URL</th> <td> scratch.mit.edu </td> </tr> <tr> <th>MODULE</th> <td>ContentKeeper Cloud Express</td> </tr> <tr> <th>CATEGORY</th> <td> Classification error </td> </tr> <tr> <th>POLICY</th> <td> Default </td> </tr> <tr> <th>USERNAME</th> <td> no email reveal </td> </tr> </table> </p> </center> </footer> <div></div> </div> </body> </html>
camiloynigo for the html code
Last edited by BriIliantScratcher (June 9, 2025 20:30:36)
#16758June 9, 2025 20:31:39
#16759June 9, 2025 20:36:57
- mistbelive
-
Scratcher
100+ posts
Official [scratchblocks] Testing Topic 9
-snip-holy coding blocks of the heavens
#16760June 9, 2025 20:39:47
- mistbelive
-
Scratcher
100+ posts
Official [scratchblocks] Testing Topic 9
does anyone know what it looks like?