<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xmlns:tt="http://teletype.in/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>☨︎ DanMaslen ☨︎ #90</title><generator>teletype.in</generator><description><![CDATA[☨︎ DanMaslen ☨︎ #90]]></description><image><url>https://img2.teletype.in/files/df/68/df686a2e-a3c4-452f-9df1-378b419ad7af.png</url><title>☨︎ DanMaslen ☨︎ #90</title><link>https://teletype.in/@danmaslen</link></image><link>https://teletype.in/@danmaslen?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=danmaslen</link><atom:link rel="self" type="application/rss+xml" href="https://teletype.in/rss/danmaslen?offset=0"></atom:link><atom:link rel="next" type="application/rss+xml" href="https://teletype.in/rss/danmaslen?offset=10"></atom:link><atom:link rel="search" type="application/opensearchdescription+xml" title="Teletype" href="https://teletype.in/opensearch.xml"></atom:link><pubDate>Sat, 02 May 2026 14:51:16 GMT</pubDate><lastBuildDate>Sat, 02 May 2026 14:51:16 GMT</lastBuildDate><item><guid isPermaLink="true">https://teletype.in/@danmaslen/MXY2a38bE4u</guid><link>https://teletype.in/@danmaslen/MXY2a38bE4u?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=danmaslen</link><comments>https://teletype.in/@danmaslen/MXY2a38bE4u?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=danmaslen#comments</comments><dc:creator>danmaslen</dc:creator><title>Roblox Studio | Lesson 1 &quot;Ragdoll physics when a character dies&quot;</title><pubDate>Tue, 19 Nov 2024 14:24:53 GMT</pubDate><description><![CDATA[<img src="https://img2.teletype.in/files/58/07/580735b9-6960-41b2-97d8-8667241622db.jpeg"></img>Hello reader! Today I will tell you how to make ragdoll physics when a character dies. The lesson consists of 3 stages]]></description><content:encoded><![CDATA[
  <section style="background-color:hsl(hsl(323, 50%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="A8Fj">Hello reader! Today I will tell you how to make &quot;<strong>Ragdoll physics when a character dies</strong>&quot;. The lesson consists of 3 stages</p>
  </section>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <blockquote id="hulk">Stage 1</blockquote>
  </section>
  <p id="ctcN">Let&#x27;s go to the tab &quot;Workspace&quot; and click on + ( On the right side of the screen there is a tab &quot;Explorer&quot; )</p>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <blockquote id="hhgT">Stage 2</blockquote>
  </section>
  <p id="mzYm">Select the &quot;Script&quot; tab. After that, a script window appears.</p>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <blockquote id="3wSf">Stage 3</blockquote>
  </section>
  <p id="1R94">After that, we remove all unnecessary things and insert the script which is listed below:</p>
  <p id="vZol"><code>local function ConnectLimbs(char) for i, limb in pairs(char:GetChildren()) do if limb:IsA(&quot;BasePart&quot;) then local atch0, atch1, atch2, atch3, atch4, atch5 if limb.Name == &quot;Head&quot; then atch0 = char.Head.NeckRigAttachment atch1 = char.UpperTorso.NeckRigAttachment elseif limb.Name == &quot;UpperTorso&quot; then atch0 = char.UpperTorso.WaistRigAttachment atch1 = char.LowerTorso.WaistRigAttachment atch2 = char.UpperTorso.LeftShoulderRigAttachment atch3 = char.LeftUpperArm.LeftShoulderRigAttachment atch4 = char.UpperTorso.RightShoulderRigAttachment atch5 = char.RightUpperArm.RightShoulderRigAttachment elseif limb.Name == &quot;LowerTorso&quot; then atch0 = char.LowerTorso.LeftHipRigAttachment atch1 = char.LeftUpperLeg.LeftHipRigAttachment atch2 = char.LowerTorso.RightHipRigAttachment atch3 = char.RightUpperLeg.RightHipRigAttachment elseif limb.Name == &quot;LeftUpperLeg&quot; then atch0 = char.LeftUpperLeg.LeftKneeRigAttachment atch1 = char.LeftLowerLeg.LeftKneeRigAttachment elseif limb.Name == &quot;RightUpperLeg&quot; then atch0 = char.RightUpperLeg.RightKneeRigAttachment atch1 = char.RightLowerLeg.RightKneeRigAttachment elseif limb.Name == &quot;LeftLowerLeg&quot; then atch0 = char.LeftLowerLeg.LeftAnkleRigAttachment atch1 = char.LeftFoot.LeftAnkleRigAttachment elseif limb.Name == &quot;RightLowerLeg&quot; then atch0 = char.RightLowerLeg.RightAnkleRigAttachment atch1 = char.RightFoot.RightAnkleRigAttachment elseif limb.Name == &quot;LeftUpperArm&quot; then atch0 = char.LeftUpperArm.LeftElbowRigAttachment atch1 = char.LeftLowerArm.LeftElbowRigAttachment elseif limb.Name == &quot;RightUpperArm&quot; then atch0 = char.RightUpperArm.RightElbowRigAttachment atch1 = char.RightLowerArm.RightElbowRigAttachment elseif limb.Name == &quot;LeftLowerArm&quot; then atch0 = char.LeftLowerArm.LeftWristRigAttachment atch1 = char.LeftHand.LeftWristRigAttachment elseif limb.Name == &quot;RightLowerArm&quot; then atch0 = char.RightLowerArm.RightWristRigAttachment atch1 = char.RightHand.RightWristRigAttachment end if atch0 and atch1 then local ballInSocket = Instance.new(&quot;BallSocketConstraint&quot;, limb) ballInSocket.Attachment0 = atch0 ballInSocket.Attachment1 = atch1 end if atch2 and atch3 then local ballInSocket = Instance.new(&quot;BallSocketConstraint&quot;, limb) ballInSocket.Attachment0 = atch2 ballInSocket.Attachment1 = atch3 end if atch4 and atch5 then local ballInSocket = Instance.new(&quot;BallSocketConstraint&quot;, limb) ballInSocket.Attachment0 = atch4 ballInSocket.Attachment1 = atch5 end elseif limb:IsA(&quot;Accessory&quot;) then local h = limb:FindFirstChild(&quot;Handle&quot;) if h then local part0 = char.Head local atch = h:FindFirstChildOfClass(&quot;Attachment&quot;) if atch.Name == &quot;HatAttachment&quot; or atch.Name == &quot;FaceFrontAttachment&quot; then part0 = char.Head end local ap = Instance.new(&quot;AlignPosition&quot;, part0) if part0 == char.Head then ap.Attachment1 = char.Head:FindFirstChild(atch.Name) ap.Attachment0 = atch ap.RigidityEnabled = true ap.Responsiveness = 200 end local ao = Instance.new(&quot;AlignOrientation&quot;, part0) if part0 == char.Head then ao.Attachment1 = char.Head:FindFirstChild(atch.Name) ao.Attachment0 = atch ao.RigidityEnabled = true ao.Responsiveness = 200 end end end end end game.Players.PlayerAdded:Connect(function(plr) plr.CharacterAdded:Connect(function(char) local humanoid = char:WaitForChild(&quot;Humanoid&quot;) humanoid.Died:Connect(function() ConnectLimbs(char) end) end) end)</code></p>
  <p id="QhK6"><code>local function ConnectLimbs(char) for i, limb in pairs(char:GetChildren()) do if limb:IsA(&quot;BasePart&quot;) then local atch0, atch1, atch2, atch3, atch4, atch5 if <a href="https://www.youtube.com/redirect?event=comments&redir_token=QUFFLUhqbld1bDk1Vjdxdjl3eV9nWFdJZ2pPM3NWZkt2Z3xBQ3Jtc0tuMWpJaDYtQXhraWM0TFpLbDU0aDZ3Ml81RjFvclotWXhuMnhNMmtYZEhhN3BKYjdCM0ttQTd6cVBqdHI1eU00aHdKR09lYVJkOXVWS3lfeXQ4VTZ6dGRxYTFDN2hRZ2lVeldoZjJ5V0k0TlhCaG5CRQ&q=http%3A%2F%2Flimb.name%2F&stzid=UgwcVC5oq9toq3u7kPd4AaABAg" target="_blank">limb.Name</a> == &quot;Head&quot; then atch0 = char.Head.NeckRigAttachment atch1 = char.UpperTorso.NeckRigAttachment elseif <a href="https://www.youtube.com/redirect?event=comments&redir_token=QUFFLUhqbWVmd21DUUg5bXhDOXo0emxTU2ZwY2JUbzZjZ3xBQ3Jtc0tsN3UyQXVESU55U1dKdHRicFpiM0lCRktjSzZ4bEk3b3ZVMk1hSEtGcUoyc3Y5TkFHM1ltQjRpVmdnakN4dUVidzhYZkNEeUtWa2k1dXNETHJRTmlVTHZsaDlBN0syYXlSZTVvUy0xQU5tbnA0ODNKUQ&q=http%3A%2F%2Flimb.name%2F&stzid=UgwcVC5oq9toq3u7kPd4AaABAg" target="_blank">limb.Name</a> == &quot;UpperTorso&quot; then atch0 = char.UpperTorso.WaistRigAttachment atch1 = char.LowerTorso.WaistRigAttachment atch2 = char.UpperTorso.LeftShoulderRigAttachment atch3 = char.LeftUpperArm.LeftShoulderRigAttachment atch4 = char.UpperTorso.RightShoulderRigAttachment atch5 = char.RightUpperArm.RightShoulderRigAttachment elseif <a href="https://www.youtube.com/redirect?event=comments&redir_token=QUFFLUhqbWtQTVNoUFFzVVZiOTVSS1R0QU5BZE5jeGYtQXxBQ3Jtc0tuQjFCSzNlZm9DMTRXZEM0eldqV2NZazRSTVVUUUtqWlJldHFsTXNNZER0ckZBbzVpYUJKX2dzOWQ2Y2xwZzRzMDZ4YVQydWRRQ2ttV0ZOaWdsNGFGMXV6eENGUHN6WC1keHM0anV0Q19DM0NNdlVjaw&q=http%3A%2F%2Flimb.name%2F&stzid=UgwcVC5oq9toq3u7kPd4AaABAg" target="_blank">limb.Name</a> == &quot;LowerTorso&quot; then atch0 = char.LowerTorso.LeftHipRigAttachment atch1 = char.LeftUpperLeg.LeftHipRigAttachment atch2 = char.LowerTorso.RightHipRigAttachment atch3 = char.RightUpperLeg.RightHipRigAttachment elseif <a href="https://www.youtube.com/redirect?event=comments&redir_token=QUFFLUhqbW8wbjVaZ3ZPUHFRazFVLU0tM1d2Q2RtR2ZyUXxBQ3Jtc0tsTXhlUXZyMjdOQU9QOVpXM1Nad0FKMUxLR3Y2bTcwWXRIM3gxUklwSlpjbEcxWk5wSHg1YlEzSFJSRVAxa2hfVDd3VzR3Y2xYN01VdVB4QjZLcDMwWmVtZWJBUndrenpRSjFHYjBUdVBicW1MZ2VrVQ&q=http%3A%2F%2Flimb.name%2F&stzid=UgwcVC5oq9toq3u7kPd4AaABAg" target="_blank">limb.Name</a> == &quot;LeftUpperLeg&quot; then atch0 = char.LeftUpperLeg.LeftKneeRigAttachment atch1 = char.LeftLowerLeg.LeftKneeRigAttachment elseif <a href="https://www.youtube.com/redirect?event=comments&redir_token=QUFFLUhqbUl3RVVPNFotcWVjSVV2MDR6Znd1Um9KSjBJUXxBQ3Jtc0ttUEh5Z2J1ck5adGVJd2YxOV9SR1k4SlZQd1oybG85bTdsT19qNVVkWjNYM01MU0M5STJZVFJwNEJZN2VDVHdMY1ZxUVJRelZPZzdKTThpN1YxRjJrNjVFNXpkOTBxcTY0Q0N5RG1BT1JVNElLMXJYSQ&q=http%3A%2F%2Flimb.name%2F&stzid=UgwcVC5oq9toq3u7kPd4AaABAg" target="_blank">limb.Name</a> == &quot;RightUpperLeg&quot; then atch0 = char.RightUpperLeg.RightKneeRigAttachment atch1 = char.RightLowerLeg.RightKneeRigAttachment elseif <a href="https://www.youtube.com/redirect?event=comments&redir_token=QUFFLUhqbFBjb3lXandVUlVxbnVtZVJGaWd4TnFDY0Fsd3xBQ3Jtc0tuNEt2ZmUtQVJMWVFrelk5UXI5S29sTllzMjZhSURFdnZtVWZRWlQ4eVZ3dVdzcy1vMHllWWlfU0c0N0JVZE1LZmpwYVpabDZZZmlUZkFVcTlJMnJxRl8xS2xHT2JNbFBENEI5VDNPWUdLMkRpd0JPTQ&q=http%3A%2F%2Flimb.name%2F&stzid=UgwcVC5oq9toq3u7kPd4AaABAg" target="_blank">limb.Name</a> == &quot;LeftLowerLeg&quot; then atch0 = char.LeftLowerLeg.LeftAnkleRigAttachment atch1 = char.LeftFoot.LeftAnkleRigAttachment elseif <a href="https://www.youtube.com/redirect?event=comments&redir_token=QUFFLUhqbjFEQUV0b25mdWJfdHYzcjRLa3FLVlY4Q2ZHZ3xBQ3Jtc0trQVR0OWE1WnZDT05sdU1XdFlkOUpyaUR4NlpYV3FZNjlCUmJubEpZMXNiX2RhWHpPQnB4Nlhmc1hBWm9iTzJDM0JWNjZobElvTWUyVVJ3N1c3ZWdoQ291emJ1SGtINWlKTHN1X2dVZW1yaXhGclF5TQ&q=http%3A%2F%2Flimb.name%2F&stzid=UgwcVC5oq9toq3u7kPd4AaABAg" target="_blank">limb.Name</a> == &quot;RightLowerLeg&quot; then atch0 = char.RightLowerLeg.RightAnkleRigAttachment atch1 = char.RightFoot.RightAnkleRigAttachment elseif <a href="https://www.youtube.com/redirect?event=comments&redir_token=QUFFLUhqbXozbzFYZEpUMXZNdWktOXI0RDlXU0xqSjhwZ3xBQ3Jtc0trMzlCLTFRSmRsdnkzc3BmUDdKaWQ2eTN6T0xLTG9DX0xTYmRxbkFuYThlZENLSlN1bUk3R1ZhNTNocWxtYVhvX1BFNlZZbVd3Ym04NnNCWEEyazhvaGlkRURFUC1KQkFRQkJVSmx6TXNUMXNTTU42RQ&q=http%3A%2F%2Flimb.name%2F&stzid=UgwcVC5oq9toq3u7kPd4AaABAg" target="_blank">limb.Name</a> == &quot;LeftUpperArm&quot; then atch0 = char.LeftUpperArm.LeftElbowRigAttachment atch1 = char.LeftLowerArm.LeftElbowRigAttachment elseif <a href="https://www.youtube.com/redirect?event=comments&redir_token=QUFFLUhqblVBX3BVVkVLOXBjVU1fN0RhZjV3WER5X1JJQXxBQ3Jtc0tsSzBfa19ua195RzhiWkd0eG40a1pvd2I2MlpQdHBORDlZbVBES1lSNkNiWFZkcUNJMjIwbzNIX2tBUkQxbU1ZMkJNajZKeDFUVkdPa0ZXR0E5SGlPZUtiRjBaRGdyVEpWZmxnc3V5ekw4T1ZUbGI0bw&q=http%3A%2F%2Flimb.name%2F&stzid=UgwcVC5oq9toq3u7kPd4AaABAg" target="_blank">limb.Name</a> == &quot;RightUpperArm&quot; then atch0 = char.RightUpperArm.RightElbowRigAttachment atch1 = char.RightLowerArm.RightElbowRigAttachment elseif <a href="https://www.youtube.com/redirect?event=comments&redir_token=QUFFLUhqbWdnVUNzSExGa2J4VEtsZ0p6X0JtU3o5OU5tUXxBQ3Jtc0ttNkRidmFBTUI5LTNCaWRaS09KdmpEMkRQQV9mUXR6RzNfOG9XNXotWVJ4bkRVXzVOTS03cU9oNkFxbVZlbEtJeVdDeUZicWk2R0FfV0pQQlZlZWdBMGdBSjNrb0tkZXQzWG5xWUlxT0F2VWRSNlZTbw&q=http%3A%2F%2Flimb.name%2F&stzid=UgwcVC5oq9toq3u7kPd4AaABAg" target="_blank">limb.Name</a> == &quot;LeftLowerArm&quot; then atch0 = char.LeftLowerArm.LeftWristRigAttachment atch1 = char.LeftHand.LeftWristRigAttachment elseif <a href="https://www.youtube.com/redirect?event=comments&redir_token=QUFFLUhqa050cWxhbUFJM0IwZ0U5SVF3c21zQWZyUldhd3xBQ3Jtc0ttMkxHNmExRVdua0g1VFlBeGJydlU1V1l4Zlg2MmhwdDlxU2VQSTAydF9wWTl4U1phMEpaNFlXcmtJaXh0bEUtZHN3MjNoSk4xWEF2THY1RElXMXNZTkRlN0pPUGdKZy1GUV9CUnY4OXpPS3B6ZE5aTQ&q=http%3A%2F%2Flimb.name%2F&stzid=UgwcVC5oq9toq3u7kPd4AaABAg" target="_blank">limb.Name</a> == &quot;RightLowerArm&quot; then atch0 = char.RightLowerArm.RightWristRigAttachment atch1 = char.RightHand.RightWristRigAttachment end if atch0 and atch1 then local ballInSocket = Instance.new(&quot;BallSocketConstraint&quot;, limb) ballInSocket.Attachment0 = atch0 ballInSocket.Attachment1 = atch1 end if atch2 and atch3 then local ballInSocket = Instance.new(&quot;BallSocketConstraint&quot;, limb) ballInSocket.Attachment0 = atch2 ballInSocket.Attachment1 = atch3 end if atch4 and atch5 then local ballInSocket = Instance.new(&quot;BallSocketConstraint&quot;, limb) ballInSocket.Attachment0 = atch4 ballInSocket.Attachment1 = atch5 end elseif limb:IsA(&quot;Accessory&quot;) then local h = limb:FindFirstChild(&quot;Handle&quot;) if h then local part0 = char.Head local atch = h:FindFirstChildOfClass(&quot;Attachment&quot;) if <a href="https://www.youtube.com/redirect?event=comments&redir_token=QUFFLUhqbU0taTBSUlZvWXBwRFc2SUJ5UUVIZ0pfbzBaUXxBQ3Jtc0tsbE1kVl9WUXFaRDNfem9YVHJlSUx0V1hHdFhPUG5MRXhGNWNQaUIxSk5VZ0ltc3o2Mlk2dmFVUm93MEd0bndHekxFYTh4eHVBVVNWcEcyN1NMcC1ZZUQ5OXI4NVhneWVoUy1PTnNWYmxORDBNOUxfSQ&q=http%3A%2F%2Fatch.name%2F&stzid=UgwcVC5oq9toq3u7kPd4AaABAg" target="_blank">atch.Name</a> == &quot;HatAttachment&quot; or <a href="https://www.youtube.com/redirect?event=comments&redir_token=QUFFLUhqa3k5UXYzQmItUWdodGxEaW1Kc25aV1RKcFFkZ3xBQ3Jtc0tuYzRNUzk2NTRmQkM0aU5BRmo2cEhLUkVTUjdvRkdfdGc2Wm1tdnFCak0yUUw5ZE96QjJJYXVrYkU0SG1RU1BpSE9ZODdva3BZd3MtQ21tNThGOUJmREF2LUJwR210M0N6ZUFBajlWYVIzVWUyUTBzcw&q=http%3A%2F%2Fatch.name%2F&stzid=UgwcVC5oq9toq3u7kPd4AaABAg" target="_blank">atch.Name</a> == &quot;FaceFrontAttachment&quot; then part0 = char.Head end local ap = Instance.new(&quot;AlignPosition&quot;, part0) if part0 == char.Head then ap.Attachment1 = char.Head:FindFirstChild(atch.Name) ap.Attachment0 = atch ap.RigidityEnabled = true ap.Responsiveness = 200 end local ao = Instance.new(&quot;AlignOrientation&quot;, part0) if part0 == char.Head then ao.Attachment1 = char.Head:FindFirstChild(atch.Name) ao.Attachment0 = atch ao.RigidityEnabled = true ao.Responsiveness = 200 end end end end end game.Players.PlayerAdded:Connect(function(plr) plr.CharacterAdded:Connect(function(char) local humanoid = char:WaitForChild(&quot;Humanoid&quot;) humanoid.Died:Connect(function() ConnectLimbs(char) end) end) end)</code></p>
  <p id="mabd">Done! You can check. Well, I wish you a successful creation ;)  Telegram @BroHeavy With love from Russia!</p>

]]></content:encoded></item><item><guid isPermaLink="true">https://teletype.in/@danmaslen/Y351LD0vPGI</guid><link>https://teletype.in/@danmaslen/Y351LD0vPGI?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=danmaslen</link><comments>https://teletype.in/@danmaslen/Y351LD0vPGI?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=danmaslen#comments</comments><dc:creator>danmaslen</dc:creator><title>🐻 Super Bear Adventure | Stickers 🐻</title><pubDate>Mon, 18 Nov 2024 10:48:18 GMT</pubDate><media:content medium="image" url="https://img3.teletype.in/files/28/06/28064421-18bd-4380-be39-76f5a8b0cb86.png"></media:content><description><![CDATA[<img src="https://img1.teletype.in/files/4c/88/4c88bb8e-3c1a-43d6-ae0b-282210ce304d.png"></img>Hello reader! Today we talked about stickers in the game super bear adventure! I will tell you about their locations and how to get them.]]></description><content:encoded><![CDATA[
  <section style="background-color:hsl(hsl(55,  86%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="MVoj">Hello reader! Today we talked about stickers in the game super bear adventure! I will tell you about their locations and how to get them.</p>
  </section>
  <section style="background-color:hsl(hsl(323, 50%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <blockquote id="oddk">Turtletown</blockquote>
  </section>
  <section style="background-color:hsl(hsl(199, 50%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="Q0k9">There are 3 stickers in this location.</p>
  </section>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="Q9sz">• The first sticker is located at spawn above the stone. </p>
  </section>
  <figure id="Pps3" class="m_original">
    <img src="https://img1.teletype.in/files/4c/88/4c88bb8e-3c1a-43d6-ae0b-282210ce304d.png" width="1920" />
  </figure>
  <p id="KhK0"></p>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="qZg3">• The second sticker is located under the yellow ladder in the pond.</p>
  </section>
  <figure id="3kl0" class="m_original">
    <img src="https://img4.teletype.in/files/76/d3/76d3bde6-845d-45aa-ac00-9bf0f51c0578.png" width="1920" />
  </figure>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="sIEx">• The third sticker is under the fence on the third tier of the village above the traps.</p>
  </section>
  <figure id="n5x8" class="m_original">
    <img src="https://img2.teletype.in/files/d8/92/d8922ebb-30d1-4fb1-ba8d-4ff62cf7ae29.png" width="1920" />
  </figure>
  <section style="background-color:hsl(hsl(323, 50%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <blockquote id="ZplH">Beemothep desert</blockquote>
  </section>
  <section style="background-color:hsl(hsl(199, 50%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="JVZw">There are 3 stickers in this location.</p>
  </section>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="EVNF">• The first sticker is in the left house from the crocodile village. Climb onto the roof of the left house, then go to the top left corner of the house and slap your belly on the ground. After that the sticker will appear.</p>
  </section>
  <figure id="Sq9h" class="m_original">
    <img src="https://img4.teletype.in/files/b3/73/b373764d-8f24-4b71-aec8-025aef0798f0.png" width="1920" />
  </figure>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="PBDN">• The second sticker is on the wall at the top of the right house, you just have to climb the house and you will see the sticker.</p>
  </section>
  <figure id="O65S" class="m_original">
    <img src="https://img2.teletype.in/files/95/5f/955f2763-b0e5-43b8-904a-17a841caad37.png" width="1920" />
  </figure>
  <figure id="niM1" class="m_original">
    <img src="https://img2.teletype.in/files/17/be/17be883c-50c8-4d25-84c2-3f2bf1b53ad0.png" width="1920" />
  </figure>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="AqaF">• The third sticker is in a building with a &quot;do not enter&quot; sign. Enter this building and head to the right side. There you will find a sticker below above the pit.</p>
  </section>
  <figure id="d0O4" class="m_original">
    <img src="https://img1.teletype.in/files/45/30/453067d5-0d8a-4460-afb3-46968e348c48.png" width="1920" />
  </figure>
  <figure id="oKXt" class="m_original">
    <img src="https://img3.teletype.in/files/26/9c/269c4fb2-4ab2-4a99-bc53-e9cd41b105c4.png" width="1920" />
  </figure>
  <section style="background-color:hsl(hsl(323, 50%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <blockquote id="5yTb">Snow Valley </blockquote>
  </section>
  <section style="background-color:hsl(hsl(199, 50%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="3Jzd">There are 3 stickers in this location.</p>
  </section>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="AV7D">• The first sticker is on the left side of the wall at the top in front of the Yeti entrance.</p>
  </section>
  <figure id="mgA7" class="m_original">
    <img src="https://img4.teletype.in/files/3b/13/3b13dc67-25ec-4326-8c72-bce30bb26882.png" width="1920" />
  </figure>
  <figure id="V9PI" class="m_original">
    <img src="https://img1.teletype.in/files/4f/7a/4f7a80eb-8891-4df1-9fdf-5510b82ffb9e.png" width="1920" />
  </figure>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="S2pn">• The second sticker is on the left side of the house where the elevator is. At this point &quot;shown in the picture below&quot; you need to slap your belly on the ground After this a sticker will appear.</p>
  </section>
  <figure id="kOg7" class="m_original">
    <img src="https://img2.teletype.in/files/db/49/db492155-813b-4f4c-8d3d-aed1f4dca8ef.png" width="1920" />
  </figure>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="qFLg">• The third sticker is located under the roof of the deer&#x27;s house. </p>
  </section>
  <figure id="jEL6" class="m_original">
    <img src="https://img1.teletype.in/files/c2/4c/c24c6654-9548-4e1e-921f-36364ca633a9.png" width="1920" />
  </figure>
  <figure id="6wVc" class="m_original">
    <img src="https://img1.teletype.in/files/c1/6f/c16fc7e0-bb66-478e-9e87-7d5802a71350.png" width="1920" />
  </figure>
  <section style="background-color:hsl(hsl(323, 50%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <blockquote id="t71D">Hive</blockquote>
  </section>
  <section style="background-color:hsl(hsl(199, 50%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="7acO">There are 3 stickers in this location.</p>
  </section>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="qbG7">• The first sticker is located in front of the entrance to the hive on the right side where the platforms appear</p>
  </section>
  <figure id="Z1eL" class="m_original">
    <img src="https://img2.teletype.in/files/d7/25/d7252b81-f876-4a97-958d-91e8aa0fae68.png" width="1920" />
  </figure>
  <figure id="zSjB" class="m_original">
    <img src="https://img3.teletype.in/files/ad/c7/adc752ab-109b-4bbb-94e7-b992b9b2204f.png" width="1920" />
  </figure>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="Utgk">• The second sticker is located inside the hive where honey is processed</p>
  </section>
  <figure id="Ouv1" class="m_original">
    <img src="https://img4.teletype.in/files/7f/78/7f78ca45-3bb4-4875-a20c-7404eb8ab6bc.png" width="1920" />
  </figure>
  <figure id="OcVa" class="m_original">
    <img src="https://img3.teletype.in/files/e1/54/e1544b74-ac42-4c20-aaf7-b9493d1ff62d.png" width="1920" />
  </figure>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="KJVh">• The third sticker is located in the location with the caterpillar. You just have to go forward to the platforms where the coins are On the platform you will find a sticker</p>
  </section>
  <figure id="J5Bp" class="m_original">
    <img src="https://img1.teletype.in/files/4a/f2/4af246c7-3c6f-4f07-a00f-ddd86a255b7d.png" width="1920" />
  </figure>
  <figure id="i8MR" class="m_original">
    <img src="https://img2.teletype.in/files/d3/30/d3309d2c-d175-45de-af78-bb171c893378.png" width="1920" />
  </figure>
  <section style="background-color:hsl(hsl(323, 50%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <blockquote id="RTrh">Giant house </blockquote>
  </section>
  <section style="background-color:hsl(hsl(199, 50%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="410L">There are 3 stickers in this location.</p>
  </section>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="TDVL">• The first sticker is on the door in the storage room.</p>
  </section>
  <figure id="LtbY" class="m_original">
    <img src="https://img4.teletype.in/files/b4/30/b430bde7-98e0-46d3-b7a4-d78e344c26a0.png" width="1920" />
  </figure>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="ZyB9">• The second sticker is located above the refrigerator.</p>
  </section>
  <figure id="P13N" class="m_original">
    <img src="https://img4.teletype.in/files/7c/d8/7cd8e124-292f-4fa8-b775-bed542aa1620.png" width="1920" />
  </figure>
  <section style="background-color:hsl(hsl(236, 74%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="orAd">• The third sticker is on the second floor above the door in the bathroom. The door can be reached using airplanes on the shelves above the bed.</p>
  </section>
  <figure id="AaGL" class="m_original">
    <img src="https://img3.teletype.in/files/aa/5b/aa5b3256-af45-490f-8ddb-9832ac017993.png" width="1920" />
  </figure>
  <p id="jgkR"></p>
  <section style="background-color:hsl(hsl(55,  86%, var(--autocolor-background-lightness, 95%)), 85%, 85%);">
    <p id="VqQu">Today you learned how to get all 15 stickers in the Super Bear Adventure game. Thank you for reading the post. Stay tuned, and I wish you a successful game!   Telegram @BroHeavy    Greetings from Russia!</p>
  </section>

]]></content:encoded></item></channel></rss>