Stiiky
|
  |
| Joined: 15 Jan 2010 |
| Total Posts: 451 |
|
|
| 21 Apr 2015 01:30 PM |
I am so bored now Give me a challenge for scripting please Not too hard or easy
I think thats a haiku. Im bad at poety.
I have done nothing but teleport my cat for 5 days. |
|
|
| Report Abuse |
|
|
Retruvius
|
  |
| Joined: 26 Aug 2010 |
| Total Posts: 1493 |
|
|
| 21 Apr 2015 01:33 PM |
Help please?
Brick= script.Parent
while true do for i = 1, 3 do Brick.CFrame = Brick.CFrame + Vector3.new(4,0,0) wait(0.5) end if i == 3 then Brick.CFrame = Vector3.new(0,0,0) end end
I want it to increment until it gets to 4 at which point it skips the for, goes to the if, where its position is reset to the original one, and i is set back to 1 |
|
|
| Report Abuse |
|
|
| |
|
Retruvius
|
  |
| Joined: 26 Aug 2010 |
| Total Posts: 1493 |
|
|
| 21 Apr 2015 01:34 PM |
| until it gets to 3, my bad |
|
|
| Report Abuse |
|
|
|
| 21 Apr 2015 01:37 PM |
Write your own A* pathfinding library.
There's a tutorial in the wiki named A* if you get lost. |
|
|
| Report Abuse |
|
|
|
| 21 Apr 2015 01:38 PM |
@Retruvius, do this:
Brick= script.Parent local i;
while true do for i = 1, 3 do Brick.CFrame = Brick.CFrame + Vector3.new(4,0,0) wait(0.5) end if i == 3 then Brick.CFrame = Vector3.new(0,0,0) end end |
|
|
| Report Abuse |
|
|
|
| 21 Apr 2015 01:53 PM |
| Make a 3d rendering system for guis! |
|
|
| Report Abuse |
|
|
|
| 21 Apr 2015 01:59 PM |
Create the following function:
function HTML(code) --code is HTML code --Your stuff return gui --Return a gui that matches the HTML code. end
And, make a pseudo click detector system (All local, using the input from the client) |
|
|
| Report Abuse |
|
|
|
| 21 Apr 2015 03:09 PM |
Honestly a lot of these challenge posts seem useless now. I'm guessing you could honestly just type "Scripting Challenge" into the search bar instead and find some cool results.
Anyways:
https://twitter.com/BosswalrusRBLX/status/586346721275424768
"I like to program" - Bosswalrus |
|
|
| Report Abuse |
|
|