<?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>Егор Самойлин</title><generator>teletype.in</generator><description><![CDATA[Егор Самойлин]]></description><image><url>https://img2.teletype.in/files/d0/3c/d03cd105-ec2d-4062-82e2-0f9a900c2958.png</url><title>Егор Самойлин</title><link>https://teletype.in/@egorsamoylin</link></image><link>https://teletype.in/@egorsamoylin?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=egorsamoylin</link><atom:link rel="self" type="application/rss+xml" href="https://teletype.in/rss/egorsamoylin?offset=0"></atom:link><atom:link rel="next" type="application/rss+xml" href="https://teletype.in/rss/egorsamoylin?offset=10"></atom:link><atom:link rel="search" type="application/opensearchdescription+xml" title="Teletype" href="https://teletype.in/opensearch.xml"></atom:link><pubDate>Tue, 26 May 2026 14:25:07 GMT</pubDate><lastBuildDate>Tue, 26 May 2026 14:25:07 GMT</lastBuildDate><item><guid isPermaLink="true">https://teletype.in/@egorsamoylin/6ApWZ3n5uxg</guid><link>https://teletype.in/@egorsamoylin/6ApWZ3n5uxg?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=egorsamoylin</link><comments>https://teletype.in/@egorsamoylin/6ApWZ3n5uxg?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=egorsamoylin#comments</comments><dc:creator>egorsamoylin</dc:creator><title>Двойной прыжок - Роблокс</title><pubDate>Tue, 26 May 2026 09:04:29 GMT</pubDate><media:content medium="image" url="https://img3.teletype.in/files/2c/58/2c582f8f-0c8b-40b3-9fcf-b87fb7896c14.png"></media:content><description><![CDATA[<img src="https://img3.teletype.in/files/eb/44/eb443389-08d8-4f4b-b6cd-d5b4ce8d5f72.png"></img>Больше полезных скриптов для Roblox Studio в моём телеграм канале.]]></description><content:encoded><![CDATA[
  <figure id="ULxP" class="m_original">
    <img src="https://img3.teletype.in/files/eb/44/eb443389-08d8-4f4b-b6cd-d5b4ce8d5f72.png" width="1280" />
  </figure>
  <h2 id="5b7q">Код из видео:</h2>
  <pre id="hDmu">local MaxJumps = 2 
local JumpCooldown = 0.2

local UIS = game:GetService(&quot;UserInputService&quot;)
local Player = game.Players.LocalPlayer
local Char = Player.Character or Player.CharacterAdded:Wait()
local Humanoid = Char:WaitForChild(&quot;Humanoid&quot;)

local NumJumps = 0
local canjump = false

Humanoid.StateChanged:Connect(function(_, newstate)
	if newstate == Enum.HumanoidStateType.Landed then
		NumJumps = 0
		canjump = false
	elseif newstate == Enum.HumanoidStateType.Freefall then
		wait(JumpCooldown)
		canjump = true
	elseif newstate == Enum.HumanoidStateType.Jumping then
		canjump = false
		NumJumps = NumJumps + 1
	end
end)

UIS.JumpRequest:Connect(function()
	if canjump and NumJumps &lt; MaxJumps then
		Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
	end
end)

Player.CharacterAdded:Connect(function(newChar)
	Char = newChar
	Humanoid = Char:WaitForChild(&quot;Humanoid&quot;)
	NumJumps = 0
	canjump = false
end)</pre>
  <p id="BiPb">Больше полезных скриптов для Roblox Studio в моём <a href="https://t.me/egorfromcodybara" target="_blank">телеграм канале</a>. </p>

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