<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Roblox Scripts by Alexander Ryan</title>
      <link>https://padlet.com/alexanderryan2005/7mpntxc7sxl5pkml</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2023-06-22 19:11:12 UTC</pubDate>
      <lastBuildDate>2025-11-02 05:02:30 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Jump Boost</title>
         <author>alexanderryan2005</author>
         <link>https://padlet.com/alexanderryan2005/7mpntxc7sxl5pkml/wish/2630357018</link>
         <description><![CDATA[<div>local jumpBoost = script.Parent&nbsp;<br>&nbsp;<br>local function steppedOn(part)<br>	print("Stepped")<br>	print(part.Parent)<br>	local parent = part.Parent&nbsp;<br>	if game.Players:GetPlayerFromCharacter(parent) then&nbsp;<br>		parent.Humanoid.UseJumpPower = true<br>		parent.Humanoid.JumpPower = 150&nbsp;<br>		wait(2)&nbsp;<br>		parent.Humanoid.JumpPower = 50&nbsp;<br>		parent.Humanoid.UseJumpPower = false<br>	end&nbsp;<br>end<br><br>jumpBoost.Touched:Connect(steppedOn)</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-06-22 19:11:43 UTC</pubDate>
         <guid>https://padlet.com/alexanderryan2005/7mpntxc7sxl5pkml/wish/2630357018</guid>
      </item>
      <item>
         <title>Speed Boost Script</title>
         <author>alexanderryan2005</author>
         <link>https://padlet.com/alexanderryan2005/7mpntxc7sxl5pkml/wish/2630357469</link>
         <description><![CDATA[<div>local speedBoost = script.Parent&nbsp;<br><br>local function steppedOn(part) &nbsp;<br>	local parent = part.Parent&nbsp; &nbsp;<br>	if game.Players:GetPlayerFromCharacter(parent)then&nbsp;<br>		parent.Humanoid.WalkSpeed = 30&nbsp;<br>		wait(4)&nbsp;<br>		parent.Humanoid.WalkSpeed = 16&nbsp;<br>	end&nbsp;<br>end&nbsp;<br>speedBoost.Touched:Connect(steppedOn)<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-06-22 19:12:54 UTC</pubDate>
         <guid>https://padlet.com/alexanderryan2005/7mpntxc7sxl5pkml/wish/2630357469</guid>
      </item>
      <item>
         <title>Kill Brick</title>
         <author>alexanderryan2005</author>
         <link>https://padlet.com/alexanderryan2005/7mpntxc7sxl5pkml/wish/2630357723</link>
         <description><![CDATA[<div>script.Parent.Touched:Connect(function(hit)&nbsp;<br>	if hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid") then &nbsp;<br>		hit.Parent.Humanoid.Health = 0 &nbsp;<br>	end&nbsp;<br>end) &nbsp;<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-06-22 19:13:36 UTC</pubDate>
         <guid>https://padlet.com/alexanderryan2005/7mpntxc7sxl5pkml/wish/2630357723</guid>
      </item>
      <item>
         <title>Checkpoint Script</title>
         <author>alexanderryan2005</author>
         <link>https://padlet.com/alexanderryan2005/7mpntxc7sxl5pkml/wish/2630359001</link>
         <description><![CDATA[<div>local Checkpoint = script.Parent &nbsp;<br>Checkpoint.Touched:Connect(function(hit) &nbsp;<br>	if hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid") then &nbsp;<br>		local player = game.Players:GetPlayerFromCharacter(hit.Parent) &nbsp;<br>		local checkpointData = game.ServerStorage:FindFirstChild("CheckpointData") &nbsp;<br>		if not checkpointData then &nbsp;<br>			checkpointData = Instance.new("Model", game.ServerStorage) &nbsp;<br>			checkpointData.Name = "CheckpointData" &nbsp;<br>		end &nbsp;<br>		&nbsp;<br>		local checkpoint = checkpointData:FindFirstChild(tostring(player.userId)) &nbsp;<br>		if not checkpoint then &nbsp;<br>			checkpoint = Instance.new("ObjectValue", checkpointData) &nbsp;<br>			checkpoint.Name = tostring(player.userId) &nbsp;<br>			&nbsp;<br>			player.CharacterAdded:Connect(function(character) &nbsp;<br>				wait() &nbsp;<br>				local newUser = tostring(player.userId) &nbsp;<br>				local newData = game.ServerStorage.CheckpointData[newUser].Value.CFrame &nbsp;<br>				local newCheckpoint = newData + Vector3.new(0, 4, 0) &nbsp;<br>				character:WaitForChild("HumanoidRootPart").CFrame = newCheckpoint &nbsp;<br>			end) &nbsp;<br>		end &nbsp;<br>		&nbsp;<br>		checkpoint.Value = Checkpoint &nbsp;<br>	end&nbsp;<br>end) &nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-06-22 19:16:46 UTC</pubDate>
         <guid>https://padlet.com/alexanderryan2005/7mpntxc7sxl5pkml/wish/2630359001</guid>
      </item>
      <item>
         <title>Moving Brick</title>
         <author>alexanderryan2005</author>
         <link>https://padlet.com/alexanderryan2005/7mpntxc7sxl5pkml/wish/2630359890</link>
         <description><![CDATA[<div>local axis = "x" &nbsp;<br>local distance = 50 &nbsp;<br>local speed = 1 &nbsp;<br>&nbsp;<br>local factor = 0 &nbsp;<br>local initialPosition = script.Parent.CFrame.Position &nbsp;<br>local moveDirection = Vector3.new( &nbsp;<br>	axis == "x" and distance or 0,&nbsp; &nbsp;<br>	axis == "y" and distance or 0,&nbsp; &nbsp;<br>	axis == "z" and distance or 0 &nbsp;<br>) &nbsp;<br>local destinationPosition = initialPosition + moveDirection &nbsp;<br>local RunService = game:GetService("RunService") &nbsp;<br>function movePlatform (time, step) &nbsp;<br>	factor = 0.5 * math.sin(time * speed) + 0.5 &nbsp;<br>	local finalPosition = initialPosition:Lerp(destinationPosition, factor) &nbsp;<br>	script.Parent.CFrame = CFrame.new(finalPosition) &nbsp;<br>end &nbsp;<br>RunService.Stepped:Connect(movePlatform)&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-06-22 19:18:51 UTC</pubDate>
         <guid>https://padlet.com/alexanderryan2005/7mpntxc7sxl5pkml/wish/2630359890</guid>
      </item>
   </channel>
</rss>
