chevron_leftchevron_leftchevron_left
    of     2   

zeke505
#36190486Friday, October 29, 2010 10:59 PM GMT

oh wait fail it wouldn't error my bad
OBF
#36191099Friday, October 29, 2010 11:07 PM GMT

I hate it when scripters fight. It's really pathetic.
matt1020304050
#36192256Friday, October 29, 2010 11:24 PM GMT

Well that guy is an idiot. How about you possibly get a life maybe go outside for the first time in your life.
bonboneater
#36193311Friday, October 29, 2010 11:39 PM GMT

@Shockwave My script worked perfectly fine. :/
Scriptax
#36194423Friday, October 29, 2010 11:57 PM GMT

[ Content Deleted ]
matt1020304050
#36195202Saturday, October 30, 2010 12:09 AM GMT

Well that re_tard Shokwav said everyone that posted couldn't script because they were not posting as complex scripts as he posted. He just made them longer and all the more pointless.
Solotaire
#36198426Saturday, October 30, 2010 12:57 AM GMT

Um..... so, which of the three am I supposed to use? I am of being confused? I like the first one, it is easier. :P Do all three do the same thing?
Thunderx10
#36198567Saturday, October 30, 2010 12:59 AM GMT

h = Instance.new("Hint") --That creates the Object Hint. h.Parent = game.Workspace --That parents it to game.Workspace... h.Text = "YourTextGoesHere!" --That makes the Hint's Text 'YourTextGoesHere! Thats simple.
zeke505
#36198728Saturday, October 30, 2010 1:02 AM GMT

Instance.new("Hint", workspace).Text = "LOLOLOL" pwn'd
Solotaire
#36199512Saturday, October 30, 2010 1:13 AM GMT

So, it is a one-lined script?
bonboneater
#36200467Saturday, October 30, 2010 1:29 AM GMT

No it is not.
bonboneater
#36200663Saturday, October 30, 2010 1:32 AM GMT

This will make a message in the bottom of the screen say Hello World!: while true do local h = Instance.new("Hint") h.Parent = game.Workspace h.Text = "Hello World!" wait(4) h:Remove() end
ScriptMasterMatt
#36201529Saturday, October 30, 2010 1:47 AM GMT

No Solotaire not you. You are fine.
Shokwav
#36202871Saturday, October 30, 2010 2:08 AM GMT

@matt: I'll stop arguing, since you've reached a new low that I'm not stooping to. I don't call names; that's childish. Thanks.
flappydavid
#36203446Saturday, October 30, 2010 2:17 AM GMT

Lol! Dude lol, Tools>View>Output Click play and look in the Output LOL!
Solotaire
#36221161Saturday, October 30, 2010 1:26 PM GMT

Okay, I am just going to try all of them, and then see which one works.
Solotaire
#36221582Saturday, October 30, 2010 1:36 PM GMT

THe first one I tried worked, but I actually want to learn how to script, so I am going to attempt to break it down, and would like it if somebody would tell me if this is right: while true do -- A scripts default setting is 'true' local h = Instance.new("Hint") -- This created the item named 'message'. h.Parent = game.Workspace -- This puts it in the workspace h.Text = "Welcome to my game!" -- This is what it will say wait(4) -- No clue on this line? h:Remove() -- Same as last line, at first I thought it would make it go away after four seconds but that isn't it. end -- end. Also, if I wanted to add another message to it, going in a cycle would this work?: while true do local h = Instance.new("Hint") h.Parent = game.Workspace h.Text = "Welcome to my game!" wait(4) h:Remove() h.Text = "Hello!" loop = true end Would I have to copy the script completly, and then make the change? Do I have to add the line after it says wait(4), how do I get it to loop? Either way, thanks for the help, I know one script, only thousands more to go.:)
bonboneater
#36223224Saturday, October 30, 2010 2:15 PM GMT

while true do --As soon as the game starts. Also a loop. local h = Instance.new("Hint") --Creates a new hint and tags it with the variable h. h.Parent = game.Workspace --Makes the hints parent Workspace within the game. h.Text = "Welcome to my game!" --What it says. wait(4) --How long the hint stays in-game. (In seconds) h:Remove() --Removes the hint from Workspace. end --Ends the function. Second script: while true do local h = Instance.new("Hint") h.Parent = game.Workspace h.Text = "Welcome to my game!" wait(4) h.Text = "Hello!" wait(3) h:Remove() end
Shokwav
#36227189Saturday, October 30, 2010 3:32 PM GMT

Technically, it's a loop, not a function.
Solotaire
#36227807Saturday, October 30, 2010 3:43 PM GMT

Thank you. I think I am going to make a word document that holds all the scripts I learn.
bonboneater
#36228837Saturday, October 30, 2010 4:01 PM GMT

@Solotaire That's a good idea. If you ever need any help, PM me. @Shokwav I know. I meant to put: end --Ends the loop.
Solotaire
#36231406Saturday, October 30, 2010 4:43 PM GMT

@ bonboneater, can I send you a friend request?
bonboneater
#36231539Saturday, October 30, 2010 4:45 PM GMT

Yesh.

chevron_leftchevron_leftchevron_left
    of     2