<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Lua by Michael I</title>
      <link>https://padlet.com/sanseball/f79jnrm2x0wnrete</link>
      <description>Make scripts, Lua is the code ROBLOX uses, except roblox uses a slightly modified version of it. this is not javascript, scratch or python.</description>
      <language>en-us</language>
      <pubDate>2020-09-16 13:02:51 UTC</pubDate>
      <lastBuildDate>2024-11-21 19:25:16 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet-uploads.storage.googleapis.com/700189008/462a9087a734571499bf6a3c2c15ee68/sans.png</url>
      </image>
      <item>
         <title></title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/979911451</link>
         <description><![CDATA[local clickDetector = script.Parent.ClickDetector
local Text = script.Parent.TextLabel
local Val = script.Parent.Value
 
function onMouseClick()
Val.Value = Val.Value + 1
Text.Text = Val.Value
end
 
clickDetector.MouseClick:connect(onMouseClick)]]></description>
         <enclosure url="" />
         <pubDate>2020-12-02 14:36:59 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/979911451</guid>
      </item>
      <item>
         <title>Loop examples</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/980279428</link>
         <description><![CDATA[<div>while true do- if condition does not exist it will repeat, but will not work because no cooldown.<br>while wait(number) do<br>the while true do trigger but if you enter a number in the number place it works and repeats every amount of seconds you put in the number place</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-12-02 15:50:02 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/980279428</guid>
      </item>
      <item>
         <title>Random part generator (random size, random reflectance, random transparency, random color, produces a random part every 10 seconds) you have to put this in a part, and the part prefferably will be anchored and cancollide = false.</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/980288667</link>
         <description><![CDATA[<div>while wait(10) do<br>local part = Instance.new("Part")<br>part.Position = script.Parent.Position<br>part.Parent = workspace<br>part.BrickColor = BrickColor.Random()<br>part.Size = Vector3.new(math.random(0.1, 1), math.random(0.1, 1), math.random(0.1, 1)<br>part.Transparency = math.random(0, 1)<br>part.Reflectance = math.random(0,1)<br>end</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-12-02 15:51:52 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/980288667</guid>
      </item>
      <item>
         <title>Some preset functions</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/981119609</link>
         <description><![CDATA[<div>function ontouch(part) - activates the code when touched, part is the thing that touched, you can modify it like this<br>function ontouch(part)<br>part.BrickColor = BrickColor.new("Shamrock")</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-12-02 18:36:15 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/981119609</guid>
      </item>
      <item>
         <title>FindFirstChild and WaitForChild</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/981156694</link>
         <description><![CDATA[<div>FindFirstChild and WaitForChild is a thing that finds the child with a name inside a folder/model/part/literally anything. For example:<br>function ontouch(part)<br>local humanoid = part:WaitForChild("Humanoid") --gets the humanoid from player<br>humanoid.Health = humanoid.Health - 1 --deals 1 damage to the humanoid<br>end</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-12-02 18:38:27 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/981156694</guid>
      </item>
      <item>
         <title>if, else and elseif</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/981181786</link>
         <description><![CDATA[<div>If is a conditional thing. Basically, If a condition is met, it activates code.<br>Else is basically the opposite. Put else after if, like this example:<br>if 1+1 == 2 then<br>print("1+1=2")<br>else<br>print("1+1 does not equal 2")<br>Elseif is the best from both worlds. Basically, if the IF condition is not met, it'll go to elseif. Elseif functions as IF too. Here's an example:<br>if 1+1 == 2 then<br>print("1+1=2")<br>elseif 1+1 == 3 then<br>print("1+1=3")<br>elseif 1+1 == 4 then<br>print("1+1=4")<br>else<br>print("1+1 does not equal 2, 3, or 4.")<br>end</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-12-02 18:42:06 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/981181786</guid>
      </item>
      <item>
         <title>X, Y, Z</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/998118480</link>
         <description><![CDATA[<div>X = Red, Y = Green, Z = Blue<br>X = Length, Y = Height, Z = Width<br>Vector3 is X,Y,Z.<br>Use like this:<br>script.Parent.Size = Vector3.new(10,10,10)<br>10 studs in each axis</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-12-08 14:11:53 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/998118480</guid>
      </item>
      <item>
         <title>Destroy and Clone</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1002581171</link>
         <description><![CDATA[<div>Destroy voids an object, which means deletes it. Clone clones an object. Like this:<br>while wait(1) do<br>local part = Instance.new("Part")<br>local clone = part:Clone()<br>part:Destroy()<br>clone.BrickColor = BrickColor.Random<br>end</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-12-09 15:33:49 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1002581171</guid>
      </item>
      <item>
         <title>Could you possibly show how to make a part that you touch that teleports you somewhere else?</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1138885691</link>
         <description><![CDATA[<div>Ex: you touch a door part, it brings you inside the building.<br><br>-Selah V.</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-01-28 22:51:46 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1138885691</guid>
      </item>
      <item>
         <title>lokilokilokilokilokilokilokilokilokilokilokilokilokilokilo&#39;</title>
         <author>umm_idrk_actually</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1148996572</link>
         <description><![CDATA[<div>what am I saying? Loki? Kilo? or Ok?</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-02-01 14:49:33 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1148996572</guid>
      </item>
      <item>
         <title>can you pls post a flying script</title>
         <author>SUPER_QUESO_OVERLORD</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1215680984</link>
         <description><![CDATA[<div>for personal resons lol</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-02-18 15:33:09 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1215680984</guid>
      </item>
      <item>
         <title>my sword skin script</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1215696188</link>
         <description><![CDATA[<div>zoom in</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/700189008/65260f281b3497699ccc70e17143c70e/asdadeadedad.png" />
         <pubDate>2021-02-18 15:36:29 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1215696188</guid>
      </item>
      <item>
         <title>dig script </title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1215734978</link>
         <description><![CDATA[<div>can you post a dig on click script for my meerkat game? -Finn</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-02-18 15:45:10 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1215734978</guid>
      </item>
      <item>
         <title>finn do you want to make a dig script for your game in a zoom meeting</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1215799393</link>
         <description><![CDATA[<div>if so tell me your timezone and the time of meeting, i am CST</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-02-18 15:59:25 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1215799393</guid>
      </item>
      <item>
         <title>finn i can make you a dig script</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1215863678</link>
         <description><![CDATA[<div>gotta join my zoom meeting though</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-02-18 16:13:26 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1215863678</guid>
      </item>
      <item>
         <title></title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1215872659</link>
         <description><![CDATA[https://flvs.zoom.us/j/87097612571 (Passcode: 931766)]]></description>
         <enclosure url="" />
         <pubDate>2021-02-18 16:15:18 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1215872659</guid>
      </item>
      <item>
         <title>send Meeting ID</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1216815382</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-02-18 19:45:50 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1216815382</guid>
      </item>
      <item>
         <title>you wanna do a zoom meeting today?</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1218980566</link>
         <description><![CDATA[<div>comment if you want to</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-02-19 14:32:51 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1218980566</guid>
      </item>
      <item>
         <title>let&#39;s do zoom 11:00 today                 -Finn PS, send link.</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1219277713</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-02-19 15:50:24 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1219277713</guid>
      </item>
      <item>
         <title>acept my friend request on roblox</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1219286903</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-02-19 15:52:44 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1219286903</guid>
      </item>
      <item>
         <title>join zoom on 11:30 am eastern time NOW https://flvs.zoom.us/j/7655701280 - Finn</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1219450985</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-02-19 16:33:08 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1219450985</guid>
      </item>
      <item>
         <title>meet at 12:00 eastern time on zoom here is the link https://flvs.zoom.us/j/7655701280 passward (249845) -Finn</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1219498538</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-02-19 16:43:51 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1219498538</guid>
      </item>
      <item>
         <title>Join zoom now please, I will send link in comments</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1219528378</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-02-19 16:50:37 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1219528378</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1219574787</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://flvs.zoom.us/j/7655701280" />
         <pubDate>2021-02-19 17:01:54 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1219574787</guid>
      </item>
      <item>
         <title>Can we ZOOM today? </title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1222073822</link>
         <description><![CDATA[<div>-Finn</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-02-20 21:22:05 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1222073822</guid>
      </item>
      <item>
         <title>Can I join your zoom?</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1222083374</link>
         <description><![CDATA[<div>  -Finn<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-02-20 21:30:58 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1222083374</guid>
      </item>
      <item>
         <title>ill do a zoom today</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1226410717</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-02-22 13:50:11 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1226410717</guid>
      </item>
      <item>
         <title>join zoom -Finn</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1227643786</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-02-22 17:20:57 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1227643786</guid>
      </item>
      <item>
         <title>can you send me your dig tool script but take away the part that you need food to use it. -Finn</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1228042242</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-02-22 18:29:55 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1228042242</guid>
      </item>
      <item>
         <title>finn im in your zoom</title>
         <author>SUPER_QUESO_OVERLORD</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1228076945</link>
         <description><![CDATA[<div>can you pls let me in?</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-02-22 18:36:07 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1228076945</guid>
      </item>
      <item>
         <title>I do not see you in</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1228138759</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-02-22 18:47:22 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1228138759</guid>
      </item>
      <item>
         <title>zoom today</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1231881050</link>
         <description><![CDATA[<div>comment as soon as possible if you agree</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-02-23 15:16:51 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1231881050</guid>
      </item>
      <item>
         <title>ok you post the link once you are ready</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1232581339</link>
         <description><![CDATA[<div>i check this padlet every 30 min or so</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-02-23 17:14:41 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1232581339</guid>
      </item>
      <item>
         <title>https://flvs.zoom.us/j/7655701280  -Finn</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1233082126</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-02-23 18:40:39 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1233082126</guid>
      </item>
      <item>
         <title>Please join, I need a dig script!</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1233456587</link>
         <description><![CDATA[<div>-Finn</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-02-23 19:50:44 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1233456587</guid>
      </item>
      <item>
         <title>Can we zoom today?</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1236562416</link>
         <description><![CDATA[<div>Comment if you agree.<br>    -Finn</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-02-24 14:45:31 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1236562416</guid>
      </item>
      <item>
         <title>ok today i will do a zoom meeting</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1236677839</link>
         <description><![CDATA[<div>no excuses, except i might have to write something. i think it will be at 12:00 your time, 11:00 for me</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-02-24 15:05:44 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1236677839</guid>
      </item>
      <item>
         <title></title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1236709170</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://flvsstudent-my.sharepoint.com/:o:/g/personal/minfinger_flvsftk5_flvs_net/Em0M0cvp8TxFh0ERJiLDoSABciH_m6nNs_8RXA6iM03Zqw?e=3G08gD" />
         <pubDate>2021-02-24 15:11:16 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1236709170</guid>
      </item>
      <item>
         <title>poly bridge 2 has a 33% discount on steam right now, making it 10$ instead of 15$</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1236829965</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-02-24 15:32:11 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1236829965</guid>
      </item>
      <item>
         <title>I need the meeting link</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1237333775</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-02-24 16:59:11 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1237333775</guid>
      </item>
      <item>
         <title>Can we zoom today -Finn</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1253140503</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-03-01 14:03:57 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1253140503</guid>
      </item>
      <item>
         <title>Comment if you want to zoom today -Finn</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1253423145</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-03-01 14:49:54 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1253423145</guid>
      </item>
      <item>
         <title>Comment ASAP if you can join the zoom. -Finn</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1253975455</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-03-01 16:20:01 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1253975455</guid>
      </item>
      <item>
         <title>anybody is welcome, as long as you have minecraft java edition and an internet connection you can play with me</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1258821519</link>
         <description><![CDATA[<div>the server ip is frendz4353.minehut.gg</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-03-02 15:16:03 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1258821519</guid>
      </item>
      <item>
         <title>Do you want to zoom today?</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1263834027</link>
         <description><![CDATA[<div>Comment if you want to zoom. <br>-Finn</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-03-03 14:15:29 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1263834027</guid>
      </item>
      <item>
         <title>ok i can zoom now, can you?</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1264472027</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-03-03 15:59:51 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1264472027</guid>
      </item>
      <item>
         <title>https://flvs.zoom.us/j/89936915660 (Passcode: 986893)</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1264476430</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://flvs.zoom.us/j/89936915660" />
         <pubDate>2021-03-03 16:00:36 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1264476430</guid>
      </item>
      <item>
         <title>ok imma end the zoom, comment if you are back and i start another zoom</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1264721419</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-03-03 16:40:58 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1264721419</guid>
      </item>
      <item>
         <title>Start the zoom </title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1264794411</link>
         <description><![CDATA[<div>-Finn</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-03-03 16:53:13 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1264794411</guid>
      </item>
      <item>
         <title>https://developer.roblox.com/en-us/learn-roblox/all-tutorialshttps://developer.roblox.com/en-us/resourceshttps://developer.roblox.com/en-us/articles/Model-a-Tree-using-Partshttps://developer.roblox.com/en-us/articles/Creating-Traps-and-Pickupshttps://developer.roblox.com/en-us/articles/Making-Your-Obby-Colorfulhttps://developer.roblox.com/en-us/articles/building-a-hinged-platform</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1265393877</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-03-03 18:35:46 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1265393877</guid>
      </item>
      <item>
         <title>if you want to zoom today, you should read the articles in the comments of this post instead, and follow the steps.</title>
         <author>sanseball</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1269572373</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-03-04 15:31:44 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1269572373</guid>
      </item>
      <item>
         <title>I need a tool script that makes  a sound quake that does some damage -Finn PS: Copy-Paste it in comments.</title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1299152989</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-03-11 17:11:12 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1299152989</guid>
      </item>
      <item>
         <title>join this padlet</title>
         <author>Nooneyouneedtoknow</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1421468817</link>
         <description><![CDATA[<div>https://padlet.com/Nooneyouneedtoknow/Bookmarks<br>?????</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-04-15 15:04:11 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1421468817</guid>
      </item>
      <item>
         <title>join this</title>
         <author>Nooneyouneedtoknow</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1421471232</link>
         <description><![CDATA[<div>https://padlet.com/Nooneyouneedtoknow/Bookmarks&nbsp;<br>???</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-04-15 15:04:37 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1421471232</guid>
      </item>
      <item>
         <title>join this</title>
         <author>Nooneyouneedtoknow</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1421472144</link>
         <description><![CDATA[<div>https://padlet.com/Nooneyouneedtoknow/Bookmarks<br>???</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-04-15 15:04:48 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1421472144</guid>
      </item>
      <item>
         <title>join this</title>
         <author>Nooneyouneedtoknow</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1421474042</link>
         <description><![CDATA[<div>https://padlet.com/Nooneyouneedtoknow/Bookmarks<br>???</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-04-15 15:05:09 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1421474042</guid>
      </item>
      <item>
         <title>join this</title>
         <author>Nooneyouneedtoknow</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1421475044</link>
         <description><![CDATA[<div>https://padlet.com/Nooneyouneedtoknow/Bookmarks<br>???</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-04-15 15:05:20 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1421475044</guid>
      </item>
      <item>
         <title>join this </title>
         <author>Nooneyouneedtoknow</author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1421475762</link>
         <description><![CDATA[<div>https://padlet.com/Nooneyouneedtoknow/Bookmarks<br>???</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-04-15 15:05:28 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1421475762</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1614384778</link>
         <description><![CDATA[<div>https://padlet.com/ChibiGuardiansTogetherForever/WeLoveAnime</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-06-18 14:10:24 UTC</pubDate>
         <guid>https://padlet.com/sanseball/f79jnrm2x0wnrete/wish/1614384778</guid>
      </item>
   </channel>
</rss>
