|
| 18 Oct 2011 09:36 AM |
~Code Junkies Members Only~
Hello everyone! Me and bballer13sn have decided on a contest.. The rules are below:
Objective: You must make the most stunning script, BUT it can only be 35 lines or less. So be efficient! Myself(thejoker1997), redpenchill, and bballer13sn will be judging your scripts to decide which one is the coolest.
Here are the rules:
1. Script must be 35 lines or less.
2. It MUST be your script. If you did not code any part of the script you will be disqualified immediately.
3. Get creative, theres TONS of scripts out there. Be original on your idea. We are looking for something new and cool that will blow us away.
So, are you up for the challenge? Please submit your script on this forum as for THIS IS THE ONLY place I will take the scripts from. If you have any questions, feel free to PM me :D Good luck!
Prize:
If you are builders club, you get 250 Robux :D
If you are not builders club, you get promoted to Epic Junkie rank and you get to pick the idea for the next contest :D |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 09:41 AM |
| Edit: This contest starts on October 18th and ends on October 21st. This gives you plenty of time to come up with a good idea. |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 09:45 AM |
| I'd also like to point out that you cannot make a script to get another script which you did not write. |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 09:48 AM |
| Good point :P Because I could make a 2 line script that inserts a 10,000 line script. And that will also get you disqualified. |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 09:56 AM |
for i = -3,3, .1 do for j = -3,3, .1 do
y=math.sin(math.sqrt(i^2+j^2))
p = Instance.new("Part") p.CFrame = CFrame.new(Vector3.new(100*i*0.9, 100*y*0.9, 100*j*0.9)) p.Size = Vector3.new(15,15,15) p.Anchored = true p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Parent = game.Workspace p.BrickColor = BrickColor.new("Bright green")
end end |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 09:57 AM |
| btw this is just a script from wiki don't add it to your contest :DDDD i just wanted to show how noobs can get in your contest |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 10:42 AM |
| This is for my group members only.. |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 11:11 AM |
| ill toss in 210 rb to the prize |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 11:36 AM |
| Great! The prize will now be 460 robux :D |
|
|
| Report Abuse |
|
|
daxter33
|
  |
| Joined: 10 May 2008 |
| Total Posts: 204 |
|
|
| 18 Oct 2011 05:42 PM |
I have a lot of money i could give. And also, does the script have any horizontal length limitations? for instance:
-- This is a script. This script will be more than 35 lines. I like writing horizontally. My enter key is broken. Oh look a cow. The cow says that horizontal writing is fun. I haven't pressed enter yet. Did you notice? I sure did. I think i will put a really long script on one line. Do i get disqualified?
-- I finally pressed enter |
|
|
| Report Abuse |
|
|
Lowcart
|
  |
| Joined: 12 Sep 2011 |
| Total Posts: 1323 |
|
| |
|
Lowcart
|
  |
| Joined: 12 Sep 2011 |
| Total Posts: 1323 |
|
| |
|
myrco919
|
  |
| Joined: 12 Jun 2009 |
| Total Posts: 13241 |
|
| |
|
smurf279
|
  |
| Joined: 15 Mar 2010 |
| Total Posts: 6871 |
|
|
| 18 Oct 2011 05:51 PM |
| @deiv lol I made a script like that to do my math Hw a few days ago |
|
|
| Report Abuse |
|
|
tommyfun
|
  |
| Joined: 04 Jan 2011 |
| Total Posts: 1404 |
|
| |
|
|
| 18 Oct 2011 05:56 PM |
| cool, just joined, so i think i may participate :3 |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 06:08 PM |
| Thanks for joining :D, And yes. You cant just like, make it all the way across the screen, you can use some things to shorten it. But don't go crazy with it. |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 06:10 PM |
| while wait(1) do Instance.new("Part",Workspace) end -- hopefully thats not too crazy :P |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 06:18 PM |
How are you supposed to come up with something AMAZING and fantasic, with only 35 lines to script, that can blow someone's mind away.
Then again, you could use just 4 lines to insert a model, of course, that you made... |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 06:20 PM |
| It takes one line to use the insert service for me... |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 06:20 PM |
| you can make a functioning gui player list in under 35 lines :3 |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 06:27 PM |
| Inserting is not allowed :P You cannot insert a service. |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 06:41 PM |
Here's my first Entry:
guiMain = Instance.new("GuiMain", game.Players["TheMaleScripter"].PlayerGui) awesomeSauce = Instance.new("TextButton", guiMain) awesomeSauce.Size = UDim2.new(0, 250, 0, 20) awesomeSauce.Position = UDim2.new(0, 500, 0, 0) awesomeSauce.Text = "This blows you away"
I am Epic win. Made it in under a minute, Could look way better, Wanted to keep it less than or equal to 5 lines. |
|
|
| Report Abuse |
|
|
|
| 18 Oct 2011 07:16 PM |
function update() local players = game.Players:GetChildren() for i = 1,#players do local offset = 0.1 * i local playerBox = Instance.new("TextButton",script.Parent) playerBox.Text = players[i].Name playerBox.Name = players[i].Name playerBox.Size = UDim2.new(0,175,0,25) -- whatever size playerBox.Position = UDim2.new(0,5,0.01 + offset) playerBox.TextColor3 = BrickColor.new("White").Color playerBox.Style = "RobloxButton" playerBox.Font = "ArialBold" playerBox.FontSize = "Size12" end end
update()
game.Players.PlayerAdded:connect(function() for i,v in pairs(script.Parent:GetChildren()) do if v:IsA("TextButton") then v:remove() end end update() end) game.Players.PlayerRemoving:connect(function(left) for i,v in pairs(script.Parent:GetChildren()) do if v:IsA("TextButton") then v:remove() end end wait(0.5) update() end)
Custom Player List, Contest Entry, LaughingSheep |
|
|
| Report Abuse |
|
|
| |
|