of     1   

Danklands
#153366889Tuesday, January 06, 2015 2:22 AM GMT

I want to learn some things in Lua right now, but as far as something FUN to learn, i'm stumped. Can someone please, maybe, tell me something fun to learn? Something I can feel accomplished about?
jashwa
#153367545Tuesday, January 06, 2015 2:29 AM GMT

What level are you at? Do you know how to define things? mydoor = game.Workspace.Door a = 3 print(a)
ChiefDelta
#153367863Tuesday, January 06, 2015 2:33 AM GMT

metatables
ImageLabel
#153368133Tuesday, January 06, 2015 2:36 AM GMT

object orientation
ChiefDelta
#153368185Tuesday, January 06, 2015 2:36 AM GMT

(he means object oriented programming, check out the articles on the wiki)
ImageLabel
#153368284Tuesday, January 06, 2015 2:38 AM GMT

object orientation is a much more classier way of referring to it :D
ChiefDelta
#153368393Tuesday, January 06, 2015 2:39 AM GMT

"object orientation is a much more classier way of referring to it" you won't get as many relevant results espescially not on the wiki
Danklands
#153368576Tuesday, January 06, 2015 2:41 AM GMT

@Jashwa Yes I can define things. I also know how to use math.random
ChiefDelta
#153368637Tuesday, January 06, 2015 2:42 AM GMT

oh boy never mind what i said or what other guy said you're too new uh anonymous functions tables string manipulation return statements
jashwa
#153368776Tuesday, January 06, 2015 2:43 AM GMT

May I suggest loops? They're fun to learn and very useful.
instawin
#153368927Tuesday, January 06, 2015 2:45 AM GMT

ye, if you don't know while loops, for loops, and repeat loops, learn them now. learn if statements first though if you don't know them.
jashwa
#153368968Tuesday, January 06, 2015 2:46 AM GMT

I agree ^
Danklands
#153369066Tuesday, January 06, 2015 2:47 AM GMT

@instawin, I know loops haha
jashwa
#153369301Tuesday, January 06, 2015 2:49 AM GMT

Oh boy camera manipulation is a fun one! It opens up a million opportunity's in game creation. I wouldn't be able to make this without camera manipulation: http://www.roblox.com/The-Binding-Of-Isaac-Huge-Project-place?id=200333667
Danklands
#153369755Tuesday, January 06, 2015 2:54 AM GMT

Nice :) I played it, cool concept. Can I learn how to remove the health bar?
jashwa
#153369835Tuesday, January 06, 2015 2:55 AM GMT

Removing the health bar is VERY easy.
jashwa
#153369940Tuesday, January 06, 2015 2:56 AM GMT

I may be a bit outdated here but: game.StarterGui:SetCoreGuiEnabled("Health",false)
jashwa
#153370010Tuesday, January 06, 2015 2:57 AM GMT

Has to be local script ^
Danklands
#153370045Tuesday, January 06, 2015 2:57 AM GMT

Oh sweat, now I can enable an artificial health system? I tried doing Camera Manipulation but I feel I would do better if someone would explain it to me over skype or something
morash
#153370943Tuesday, January 06, 2015 3:08 AM GMT

Keybinding.
jashwa
#153371122Tuesday, January 06, 2015 3:10 AM GMT

Keybinding. http://wiki.roblox.com/index.php?title=Taking_keyboard_input Another nice thing to learn indeed.
morash
#153371997Tuesday, January 06, 2015 3:21 AM GMT

I made a simpler way where your local code would look like: keybinding:Bind(game.Players.LocalPlayer:GetMouse()) keybinding:BindKeyDown(key, keyDownFunction) keybinding:BindKeyUp(key, keyUpFunction) wait(5) keybinding:UnbindKeyDown(key) keybinding:UnbindKeyUp(key) Completely removes the mouse event from the player, makes it easy to unbind keys, and also allows for you to transfer key functions from one key to another (not shown above). Really just lacks some versatility where you have a variable holding a key for a function, with that variable having the ability to be changed by the user, creating more player control over keybinding.
Danklands
#153378262Tuesday, January 06, 2015 4:53 AM GMT

Wow, thanks. I'll look into it. I want to build a sort of mario style game haha
jashwa
#153378378Tuesday, January 06, 2015 4:54 AM GMT

I'm very good with the camera. Tell me if you'd like help with a 2D script or anything :)
Danklands
#153422131Wednesday, January 07, 2015 12:35 AM GMT

That would be nice! :) I want to make a simple zombie game soon here

    of     1