User:Kirbyace: Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Kirbyace
No edit summary
>JulienDethurens
Nominated for deletion.
 
Line 1: Line 1:
== Scripting help ==
{{delete}}
If anyone would like some script help i would be glad to help,
first off here are some minor scripts
=== Regeneration ===
<pre>
model = game.Workspace.MyModelName --Replace the 'MyModelName' with the name of your model.
messageText = "Regenerating MyModelName..." --And replace it here!
message = Instance.new("Message")
message.Text = messageText
backup = model:clone()
 
while true do
wait(300) --How long till regeneration in seconds.
message.Parent = game.Workspace
        wait(0.1) --allows the message to appear before removing the model
model:remove()
wait(1.9) -- wait a small bit before cloning
 
model = backup:clone()
        wait(2) -- wait a final 2 seconds. Note that in total, the wait time is still 4 seconds
model.Parent = game.Workspace
model:makeJoints()
message.Parent = nil --clears message
end
</pre>
Change the "MyModelName" to your model or leave it like game.Workspace so it regenerates everything!
 
=== Explosion ===
Create a HUGE explosion with this baby.
<pre>function createExplosion(position)
 
  explosion = Instance.new("Explosion")--Creates The Explosion.
  explosion.Position = position --Where The Explosion Is.
  explosion.Parent = game.Workspace --It Has To Be Visible Correct?
 
end
</pre>
 
Just add this script to a brick and its gonna explode if you touch it.
More scripts coming soon
 
== Building help ==
time for some building help!
 
=== Cars ===
To built a car that's keyboard controlled,open toolbox and go in "Chassis" catagory,take any car you'd like to drive with.If you want to have more detail on the car,build some stuff like more wheels(use copy tool or look for a wheel in toolbox)or make the wheel smaller by clicking edit mode and look near the middle and click the blue looking thing then click the wheel and THEN grab the blue dot over the wheel and drag down the wheel should decrease in size.Now put weld on any side for the booster then stick it on the back.To drive your made car with keyboard right controls,use U to drive forward,K and H to turn left and right,J to go backwards
 
=== Planes ===
search for plane parts in all models then add anything to that plane,all ya got to do :P,OR you can take a previouslly added plane and decor it with anything else,your choice

Latest revision as of 23:56, 5 May 2012

This page has been nominated for deletion