|
| 21 Dec 2011 01:17 PM |
I can't post mine because I'm on my alt, but it was a click button to open door. And yours? |
|
|
| Report Abuse |
|
|
McBlocker
|
  |
| Joined: 16 Nov 2008 |
| Total Posts: 1721 |
|
|
| 21 Dec 2011 01:24 PM |
| Most people's will probably have been a kill brick, as that's the first one in the wiki. |
|
|
| Report Abuse |
|
|
Quenty
|
  |
| Joined: 03 Sep 2009 |
| Total Posts: 9316 |
|
|
| 21 Dec 2011 01:26 PM |
Whoops. Didn't do that.
It was (surprise surprise) probably a GUI script. :P |
|
|
| Report Abuse |
|
|
|
| 21 Dec 2011 01:33 PM |
The exact source code:
print() -- put your math in there and it will do math for you |
|
|
| Report Abuse |
|
|
|
| 21 Dec 2011 01:37 PM |
| I made a script builder orb with commands. |
|
|
| Report Abuse |
|
|
|
| 21 Dec 2011 01:39 PM |
something along the lines of
brick = script.Parent
function OnTouch(Hit) brick.Transparency = 1 wait(1) brick.Transparency = 0 end
brick.Touched:connect(OnTouch)
[Continent Defeated] |
|
|
| Report Abuse |
|
|
1waffle1
|
  |
| Joined: 16 Oct 2007 |
| Total Posts: 16381 |
|
|
| 21 Dec 2011 01:42 PM |
Something along the lines of
while wait(.3) do script.Parent.BrickColor = BrickColor.random() end
but nowhere near this small. |
|
|
| Report Abuse |
|
|
|
| 21 Dec 2011 01:47 PM |
| Mine was like 50 lines. The but I had a friend helping me learn |
|
|
| Report Abuse |
|
|
Mmsyther
|
  |
| Joined: 16 Apr 2011 |
| Total Posts: 35 |
|
|
| 21 Dec 2011 01:59 PM |
while true do p = Instance.new("Part") p.Parent = game.Workspace p.BrickColor = BrickColor.Red() p.Position = Vector3.new(10,10,10) wait(2) end
^my first script that i made by myself. i had no clue how to use loops or anything but i guessed it right and it gave me a good start to scripting |
|
|
| Report Abuse |
|
|
mew903
|
  |
| Joined: 03 Aug 2008 |
| Total Posts: 22071 |
|
|
| 21 Dec 2011 02:10 PM |
"I made a script builder orb with commands."
"script builder orb with commands."
"orb with commands."
"script builder"
"orb"
"commands"
I am not amused. |
|
|
| Report Abuse |
|
|
|
| 21 Dec 2011 02:11 PM |
while true do wait() game.Workspace.myrco919.Head.BrickColor = BrickColor.random() end
~Myrco; Music lover, nederlands/dutch and a scripter |
|
|
| Report Abuse |
|
|
ScriptiX
|
  |
| Joined: 13 Mar 2011 |
| Total Posts: 158 |
|
| |
|
HatHelper
|
  |
 |
| Joined: 02 Mar 2009 |
| Total Posts: 46305 |
|
|
| 21 Dec 2011 04:10 PM |
game.Workspace.Base.Transparency = .5 or game.Workspace.Alkan.Head:remove() |
|
|
| Report Abuse |
|
|
|
| 21 Dec 2011 04:15 PM |
function onTouched, hit hit.Remove end
script.Parent.onTouched:onTouched
But then xLegox came and explained if how shall i make functions... |
|
|
| Report Abuse |
|
|
|
| 21 Dec 2011 04:45 PM |
| Mine was a silly little reset. |
|
|
| Report Abuse |
|
|
|
| 21 Dec 2011 05:35 PM |
script.Parent.Transparency = .5
I was so proud c:
-[::ƧѡÎḾḠΰῩ::]-[::Maker of stuff and Helper of Scripting::]- |
|
|
| Report Abuse |
|
|
|
| 21 Dec 2011 05:39 PM |
| I made a admin script that was my first took me like a year tho... |
|
|
| Report Abuse |
|
|
mew903
|
  |
| Joined: 03 Aug 2008 |
| Total Posts: 22071 |
|
|
| 22 Dec 2011 12:13 PM |
| I made a script that proves preston is lying. |
|
|
| Report Abuse |
|
|
Quenty
|
  |
| Joined: 03 Sep 2009 |
| Total Posts: 9316 |
|
|
| 22 Dec 2011 12:30 PM |
| I totally made one that like, totally made a game, like totally like all those front page games... TOTALLY! |
|
|
| Report Abuse |
|
|
|
| 22 Dec 2011 03:36 PM |
for i = 1,5 do print(math.random(1,5)) wait() end
That was my first script...I remember even publishing it and calling it: "Random number Generator Program" |
|
|
| Report Abuse |
|
|
|
| 22 Dec 2011 03:42 PM |
| Mine was an edit of a free model tycoon kit. |
|
|
| Report Abuse |
|
|
tuaja
|
  |
| Joined: 07 Jan 2008 |
| Total Posts: 5464 |
|
|
| 22 Dec 2011 04:58 PM |
Probably "game.Workspace.tuaja.Head:Remove()" Who HASN'T done that before? |
|
|
| Report Abuse |
|
|
pauljkl
|
  |
| Joined: 23 Oct 2008 |
| Total Posts: 9364 |
|
|
| 22 Dec 2011 05:04 PM |
Mine was a way to remove names from people. It gradually scaled up. Let me find the source code. I think it was AgentFireFox that assisted with it too.
function respawn(char) newHead = char.Head:clone() newHead.face:remove() weld = Instance.new("Weld") weld.Part0 = char.Head weld.Part1 = newHead char.Head.Transparency = 1 end function entered(player) player.CharacterAdded:connect(respawn) end game.Players.PlayerAdded:connect(entered)
Strange thing is that i still refuse to use tabs and barely ever put whitespace between functions to this very day. |
|
|
| Report Abuse |
|
|
|
| 22 Dec 2011 06:48 PM |
My first script was something that wasn't even close to working. :\
So I wouldn't conister it a "script". |
|
|
| Report Abuse |
|
|
wii4
|
  |
| Joined: 27 Nov 2007 |
| Total Posts: 929 |
|
|
| 22 Dec 2011 08:46 PM |
| Hahaha all these local yocals with their kill bricks, mine told bob to crank that thom jones. |
|
|
| Report Abuse |
|
|