<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Next Level Roblox Scripts by The Best Sensei</title>
      <link>https://padlet.com/thebestsensei1/lxdfzjmr1mzuppya</link>
      <description>Made with whimsy</description>
      <language>en-us</language>
      <pubDate>2022-06-27 20:32:12 UTC</pubDate>
      <lastBuildDate>2022-06-27 20:41:25 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Jump Boost Script</title>
         <author>thebestsensei1</author>
         <link>https://padlet.com/thebestsensei1/lxdfzjmr1mzuppya/wish/2231765274</link>
         <description><![CDATA[<div>local jumpBoost = script.Parent</div><div>&nbsp;</div><div>local function steppedOn(part)</div><div>&nbsp; local parent = part.Parent</div><div>&nbsp; if game.Players:GetPlayerFromCharacter(parent) then</div><div>&nbsp; &nbsp; parent.Humanoid.JumpPower = 150</div><div>&nbsp; &nbsp; wait(2)</div><div>&nbsp; &nbsp; parent.Humanoid.JumpPower = 50</div><div>&nbsp; end</div><div>end</div><div>&nbsp;</div><div>jumpBoost.Touched:connect(steppedOn)</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-06-27 20:33:38 UTC</pubDate>
         <guid>https://padlet.com/thebestsensei1/lxdfzjmr1mzuppya/wish/2231765274</guid>
      </item>
      <item>
         <title>Speed Boost Script</title>
         <author>thebestsensei1</author>
         <link>https://padlet.com/thebestsensei1/lxdfzjmr1mzuppya/wish/2231765788</link>
         <description><![CDATA[<div>local speedBoost = script.Parent</div><div>&nbsp;</div><div>local function steppedOn(part)&nbsp;</div><div>&nbsp; local parent = part.Parent&nbsp;</div><div>&nbsp; if game.Players:GetPlayerFromCharacter(parent)then</div><div>&nbsp; &nbsp; parent.Humanoid.WalkSpeed = 30</div><div>&nbsp; &nbsp; wait(4)</div><div>&nbsp; &nbsp; parent.Humanoid.WalkSpeed = 16</div><div>&nbsp; end</div><div>end</div><div>&nbsp;</div><div>speedBoost.Touched:connect(steppedOn)</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-06-27 20:34:04 UTC</pubDate>
         <guid>https://padlet.com/thebestsensei1/lxdfzjmr1mzuppya/wish/2231765788</guid>
      </item>
      <item>
         <title>Checkpoint Script</title>
         <author>thebestsensei1</author>
         <link>https://padlet.com/thebestsensei1/lxdfzjmr1mzuppya/wish/2231766097</link>
         <description><![CDATA[<div>local spawn = script.Parent</div><div>spawn.Touched:connect(function(hit)</div><div>&nbsp; if hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid") then</div><div>&nbsp; &nbsp; local player = game.Players:GetPlayerFromCharacter(hit.Parent)</div><div>&nbsp; &nbsp; local checkpointData = game.ServerStorage:FindFirstChild("CheckpointData")</div><div>&nbsp; &nbsp; if not checkpointData then</div><div>&nbsp; &nbsp; &nbsp; checkpointData = Instance.new("Model", game.ServerStorage)</div><div>&nbsp; &nbsp; &nbsp; checkpointData.Name = "CheckpointData"</div><div>&nbsp; &nbsp; end</div><div>&nbsp;</div><div>&nbsp; &nbsp; local checkpoint = checkpointData:FindFirstChild(tostring(player.userId))</div><div>&nbsp; &nbsp; if not checkpoint then</div><div>&nbsp; &nbsp; &nbsp; checkpoint = Instance.new("ObjectValue", checkpointData)</div><div>&nbsp; &nbsp; &nbsp; checkpoint.Name = tostring(player.userId)</div><div>&nbsp;</div><div>&nbsp; &nbsp; &nbsp; player.CharacterAdded:connect(function(character)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; wait()</div><div>&nbsp; &nbsp; &nbsp; &nbsp; local newUser = tostring(player.userId)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; local newData = game.ServerStorage.CheckpointData[newUser].Value.CFrame</div><div>&nbsp; &nbsp; &nbsp; &nbsp; local newCheckpoint = newData + Vector3.new(0, 4, 0)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; character:WaitForChild("HumanoidRootPart").CFrame = newCheckpoint</div><div>&nbsp; &nbsp; &nbsp; end)</div><div>&nbsp; &nbsp; end</div><div>&nbsp;</div><div>&nbsp; &nbsp; checkpoint.Value = spawn</div><div>&nbsp; end</div><div>end)</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-06-27 20:34:37 UTC</pubDate>
         <guid>https://padlet.com/thebestsensei1/lxdfzjmr1mzuppya/wish/2231766097</guid>
      </item>
      <item>
         <title>Moving Platform Script</title>
         <author>thebestsensei1</author>
         <link>https://padlet.com/thebestsensei1/lxdfzjmr1mzuppya/wish/2231766532</link>
         <description><![CDATA[<div>local axis = "x"</div><div>local distance = 50</div><div>local speed = 1</div><div>&nbsp;</div><div>local factor = 0</div><div>local initialPosition = script.Parent.CFrame.Position</div><div>local moveDirection = Vector3.new(</div><div>&nbsp; axis == "x" and distance or 0,&nbsp;</div><div>&nbsp; axis == "y" and distance or 0,&nbsp;</div><div>&nbsp; axis == "z" and distance or 0</div><div>)</div><div>local destinationPosition = initialPosition + moveDirection</div><div>local RunService = game:GetService("RunService")</div><div>function movePlatform (time, step)</div><div>&nbsp; factor = 0.5 * math.sin(time * speed) + 0.5</div><div>&nbsp; local finalPosition = initialPosition:Lerp(destinationPosition, factor)</div><div>&nbsp; script.Parent.CFrame = CFrame.new(finalPosition)</div><div>end</div><div>RunService.Stepped:Connect(movePlatform)</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-06-27 20:35:11 UTC</pubDate>
         <guid>https://padlet.com/thebestsensei1/lxdfzjmr1mzuppya/wish/2231766532</guid>
      </item>
      <item>
         <title>Instructions for Moving Platform</title>
         <author>thebestsensei1</author>
         <link>https://padlet.com/thebestsensei1/lxdfzjmr1mzuppya/wish/2231767020</link>
         <description><![CDATA[<div>Customization:<br>Set axis on line 1 to “x”, “y”, or “z” to change the direction<br>Change the value of distance on line 2 to set how far it moves<br>Change the value of speed to alter how fast or slow it moves</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-06-27 20:35:51 UTC</pubDate>
         <guid>https://padlet.com/thebestsensei1/lxdfzjmr1mzuppya/wish/2231767020</guid>
      </item>
   </channel>
</rss>
