QuestLog
|
  |
| Joined: 21 Nov 2009 |
| Total Posts: 74 |
|
|
| 27 Feb 2011 05:45 AM |
How to script things like iTunes games and hide and seek ?? If u can help me , please leave a comment. |
|
|
| Report Abuse |
|
|
arundel
|
  |
| Joined: 21 Apr 2008 |
| Total Posts: 5762 |
|
|
| 27 Feb 2011 05:48 AM |
wiki.roblox.com
lua.org/pil |
|
|
| Report Abuse |
|
|
QuestLog
|
  |
| Joined: 21 Nov 2009 |
| Total Posts: 74 |
|
|
| 27 Feb 2011 05:50 AM |
| I don't get the LUA page.... |
|
|
| Report Abuse |
|
|
HAPPYBOY
|
  |
| Joined: 08 Oct 2007 |
| Total Posts: 585 |
|
|
| 27 Feb 2011 05:59 AM |
| So you guys can answer this guy but not me... not nice.... |
|
|
| Report Abuse |
|
|
QuestLog
|
  |
| Joined: 21 Nov 2009 |
| Total Posts: 74 |
|
| |
|
|
| 03 Mar 2011 09:05 AM |
LUA is a mistaken acrynoum. Lua is a programming langugage. lua is moon in Portugese.
?-gameglicher-? |
|
|
| Report Abuse |
|
|
Zikefire
|
  |
| Joined: 21 Mar 2009 |
| Total Posts: 328 |
|
|
| 03 Mar 2011 09:09 AM |
| You daying you dont know how to make a script to put in the script in da first place? If so, go to build mode, open up the tool bar ontop, click... oops... I cant remember the name of the thing you click... Whatever, its a lot easier when you do it. I think it might be tools then objects? Not sure, its so much easier to show you... |
|
|
| Report Abuse |
|
|
QuestLog
|
  |
| Joined: 21 Nov 2009 |
| Total Posts: 74 |
|
|
| 08 Dec 2011 08:24 AM |
| I know how to put in a script but idk how to let it work like : You die on touch. |
|
|
| Report Abuse |
|
|
| |
|
QuestLog
|
  |
| Joined: 21 Nov 2009 |
| Total Posts: 74 |
|
|
| 08 Dec 2011 10:07 AM |
Thats why i'm here , i'm here to ask where i can learn that. So , where ? |
|
|
| Report Abuse |
|
|
|
| 08 Dec 2011 10:08 AM |
wiki.roblox.com Youtube lua.com/phil or something Free Models.
~Cows go MOOO, Ducks go quack, Bikerking200 goes Mommy?~ ~Do what I say or Die~ |
|
|
| Report Abuse |
|
|
|
| 08 Dec 2011 11:02 AM |
You cant just ask "how to script". You DO realize scripting is an entire language, right? That would be like asking, "How do I speak French?". A stupid question, right? Learning RBLXlua scripting takes tons of time, and usually hands-on learning. THeres no real way to tell somebody how to script. You gotta learn studio mode first, Ill tell you that. For now, stick to building. |
|
|
| Report Abuse |
|
|
|
| 08 Dec 2011 11:05 AM |
@^ What he said
Yeah you can't just say "tech me to script in 1 post" WTF? |
|
|
| Report Abuse |
|
|
|
| 08 Dec 2011 11:08 AM |
The wiki wins. Every time. I actually learned Lua from this program called Scratch. It isnt exactly the same as RBLXlua, but it still is generally the same paths, etc. But you still need an average knowledge of ROBLOX, ROBLOX Studio, and how it works. |
|
|
| Report Abuse |
|
|
|
| 08 Dec 2011 11:09 AM |
@^ OMG I use scratch to!!! It helps ALOT |
|
|
| Report Abuse |
|
|
QuestLog
|
  |
| Joined: 21 Nov 2009 |
| Total Posts: 74 |
|
|
| 08 Dec 2011 11:23 AM |
I'll try that. And i'm good at working with Roblox Studio. (If you mean that) But i wanna learn how to write scripts. |
|
|
| Report Abuse |
|
|
| |
|
QuestLog
|
  |
| Joined: 21 Nov 2009 |
| Total Posts: 74 |
|
| |
|
|
| 08 Dec 2011 11:37 AM |
| There are olready 2 links in this page. |
|
|
| Report Abuse |
|
|
|
| 08 Dec 2011 11:43 AM |
http://wiki.roblox.com/index.php/Lua_Help
better yet http://wiki.roblox.com/index.php/Script_Creation_Walkthrough |
|
|
| Report Abuse |
|
|
|
| 08 Dec 2011 11:43 AM |
| http://wiki.roblox.com/index.php/Absolute_beginner%27s_guide_to_scripting |
|
|
| Report Abuse |
|
|
|
| 08 Dec 2011 01:07 PM |
function onTouched(hit)
function onTouched(hit) game.Workspace.darksoul4930.Humanoid.Health = 0 end
script.Parent.Touched:connect(onTouched)
|
|
|
| Report Abuse |
|
|
QuestLog
|
  |
| Joined: 21 Nov 2009 |
| Total Posts: 74 |
|
|
| 08 Dec 2011 02:55 PM |
Thanks for all those links. I already learned how to make a script for a door :
local brick = game.Workspace.Brick
function onTouch(part) brick.Transparency = .5 wait(3) brick.Transparency = 0
end
brick.Touched:connect(onTouch)
local brick = game.Workspace.Brick
function onTouch(part) brick.CanCollide = false wait(3) brick.CanCollide = true
end
brick.Touched:connect(onTouch)
Already tested and its working ! =3 |
|
|
| Report Abuse |
|
|