<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.starfall.wtf/index.php?action=history&amp;feed=atom&amp;title=How_to_make_a_Trampoline</id>
	<title>How to make a Trampoline - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.starfall.wtf/index.php?action=history&amp;feed=atom&amp;title=How_to_make_a_Trampoline"/>
	<link rel="alternate" type="text/html" href="https://wiki.starfall.wtf/index.php?title=How_to_make_a_Trampoline&amp;action=history"/>
	<updated>2026-07-28T17:09:19Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://wiki.starfall.wtf/index.php?title=How_to_make_a_Trampoline&amp;diff=371&amp;oldid=prev</id>
		<title>PRG: Created page with &quot;{{CatUp|Tutorials}} __TOC__  ==Introduction== This tutorial is intended to show how to build a trampoline.  ==Setup== Let&#039;s begin by adding one brick. Now, you&#039;ll want to look in your properties, and if you don&#039;t have the properties window, then select View-&gt;Properties.  ==Script== * Select the brick.  * Insert &gt; Object &gt; Script. * Copy and Paste the following into the script object:  &lt;pre&gt; local v = 200 function onTouched(part) -- when the brick gets touched 	if part.Pa...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.starfall.wtf/index.php?title=How_to_make_a_Trampoline&amp;diff=371&amp;oldid=prev"/>
		<updated>2024-12-10T12:22:59Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;{{CatUp|Tutorials}} __TOC__  ==Introduction== This tutorial is intended to show how to build a trampoline.  ==Setup== Let&amp;#039;s begin by adding one brick. Now, you&amp;#039;ll want to look in your properties, and if you don&amp;#039;t have the properties window, then select View-&amp;gt;Properties.  ==Script== * Select the brick.  * Insert &amp;gt; Object &amp;gt; Script. * Copy and Paste the following into the script object:  &amp;lt;pre&amp;gt; local v = 200 function onTouched(part) -- when the brick gets touched 	if part.Pa...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{CatUp|Tutorials}}&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
This tutorial is intended to show how to build a trampoline.&lt;br /&gt;
&lt;br /&gt;
==Setup==&lt;br /&gt;
Let&amp;#039;s begin by adding one brick. Now, you&amp;#039;ll want to look in your properties, and if you don&amp;#039;t have the properties window, then select View-&amp;gt;Properties.&lt;br /&gt;
&lt;br /&gt;
==Script==&lt;br /&gt;
* Select the brick. &lt;br /&gt;
* Insert &amp;gt; Object &amp;gt; Script.&lt;br /&gt;
* Copy and Paste the following into the script object:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
local v = 200&lt;br /&gt;
function onTouched(part) -- when the brick gets touched&lt;br /&gt;
	if part.Parent ~= nil then -- if it&amp;#039;s human&lt;br /&gt;
		local h = part.Parent:findFirstChild(&amp;quot;Humanoid&amp;quot;) &lt;br /&gt;
			if h~=nil then &lt;br /&gt;
				&lt;br /&gt;
h.Parent.Torso.Velocity=Vector3.new(0,v,0) -- shoot your humanoid in the air at v speed&lt;br /&gt;
wait(0.5) -- wait this long						&lt;br /&gt;
			end&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
script.Parent.Touched:connect(onTouched)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This script was taken right from the trampoline model. If you want to change how fast you go, chang the variable &amp;#039;&amp;#039;&amp;#039;V&amp;#039;&amp;#039;&amp;#039;.&lt;br /&gt;
The problem with this is that if you make your entire trampoline with this script, the trampoline will bounce equally high in the middle as on the outer edge.  This isn&amp;#039;t representative of real life.  So, what you can do is make the trampoline bricks in the middle bounce a little higher (the &amp;#039;sweet spot&amp;#039;) than on the outer edges to make it a little more realistic.&lt;br /&gt;
&lt;br /&gt;
==Alternative methods==&lt;br /&gt;
&lt;br /&gt;
* Insert &amp;gt; Object &amp;gt; Part&lt;br /&gt;
* Move the newly created brick where you want it to be.&lt;br /&gt;
* Anchor this brick.  (This is important).&lt;br /&gt;
* Select this brick.&lt;br /&gt;
* In the [[Properties]] window, click the &amp;quot;+&amp;quot; next to Velocity.&lt;br /&gt;
* Change the &amp;quot;y&amp;quot; Value between 0-300.  NOTE:If it goes over 500 your body might disappear.&lt;br /&gt;
* Test your map.  When you walk on top of the brick, you will shoot into the air.&lt;br /&gt;
&lt;br /&gt;
[[Category:Scripting Tutorials]]&lt;/div&gt;</summary>
		<author><name>PRG</name></author>
	</entry>
</feed>