<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Matthew Ramirez</title>
    <description>The latest articles on DEV Community by Matthew Ramirez (@matiluk).</description>
    <link>https://dev.to/matiluk</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3583398%2F1f355619-4931-4e0a-a35d-ff75c09296e9.png</url>
      <title>DEV Community: Matthew Ramirez</title>
      <link>https://dev.to/matiluk</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/matiluk"/>
    <language>en</language>
    <item>
      <title>Scripts: Super speed [ES]</title>
      <dc:creator>Matthew Ramirez</dc:creator>
      <pubDate>Sun, 26 Oct 2025 21:47:55 +0000</pubDate>
      <link>https://dev.to/matiluk/scripts-super-velocidad-32c3</link>
      <guid>https://dev.to/matiluk/scripts-super-velocidad-32c3</guid>
      <description>&lt;p&gt;¡Hola! Esta es mi primera publicación y hoy aprendí a crear un script de Super velocidad. El personaje podrá aumentar su velocidad al mantener presionada la tecla Shift.&lt;/p&gt;

&lt;h2&gt;
  
  
  ¿Dónde debemos colocar nuestro Script?
&lt;/h2&gt;

&lt;p&gt;Debe ubicarse cerca del personaje, dentro de StarterPlayer -&amp;gt; StarterCharacterScripts. De esta forma, nuestro script tendrá contexto sobre los hijos de Character, como el Humanoid.&lt;/p&gt;

&lt;p&gt;Usaremos UserInputService para manejar las entradas del usuario y actualizar la WalkSpeed ​​del Humanoid.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;local humanoid = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
local defaultWaklSpeed = humanoid.WalkSpeed

local UserInputService = game:GetService("UserInputService")

UserInputService.InputBegan:Connect(
    function(input, processed)
        if not processed and input.KeyCode == Enum.KeyCode.LeftShift then
            print("Se esta presionando shift")

            humanoid.WalkSpeed = defaultWaklSpeed * 2
        end
    end
)

UserInputService.InputEnded:Connect(
    function(input)
        if input.KeyCode == Enum.KeyCode.LeftShift then
            print("Se dejo de presionar shift")

            humanoid.WalkSpeed = defaultWaklSpeed
        end
    end
)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzuvkhsphmbrepw353jli.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzuvkhsphmbrepw353jli.gif" alt=" " width="426" height="240"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Gracias por leer, diviértanse!&lt;/p&gt;

</description>
      <category>roblox</category>
      <category>lua</category>
      <category>gamedev</category>
      <category>programming</category>
    </item>
    <item>
      <title>Scripts: Super speed</title>
      <dc:creator>Matthew Ramirez</dc:creator>
      <pubDate>Sun, 26 Oct 2025 05:49:27 +0000</pubDate>
      <link>https://dev.to/matiluk/scripts-super-speed-2cnp</link>
      <guid>https://dev.to/matiluk/scripts-super-speed-2cnp</guid>
      <description>&lt;p&gt;Hi! This is my first post, and today I learned how to create a Super Speed script. The character will be able to increase their speed when the player holds down the Shift key.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where should we place our script?
&lt;/h2&gt;

&lt;p&gt;It should be placed close to the Character — inside StarterPlayer -&amp;gt; StarterCharacterScripts. This way, our script will have context about the Character’s children, such as the Humanoid.&lt;/p&gt;

&lt;p&gt;We’ll use UserInputService to handle user inputs and update the Humanoid’s WalkSpeed.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;local humanoid = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
local defaultWaklSpeed = humanoid.WalkSpeed

local UserInputService = game:GetService("UserInputService")

UserInputService.InputBegan:Connect(
    function(input, processed)
        if not processed and input.KeyCode == Enum.KeyCode.LeftShift then
            print("Se esta presionando shift")

            humanoid.WalkSpeed = defaultWaklSpeed * 2
        end
    end
)

UserInputService.InputEnded:Connect(
    function(input)
        if input.KeyCode == Enum.KeyCode.LeftShift then
            print("Se dejo de presionar shift")

            humanoid.WalkSpeed = defaultWaklSpeed
        end
    end
)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzuvkhsphmbrepw353jli.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzuvkhsphmbrepw353jli.gif" alt=" " width="426" height="240"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading, have fun!&lt;/p&gt;

</description>
      <category>roblox</category>
      <category>lua</category>
      <category>gamedev</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
