of     1   

Br_eeze
#219410622Thursday, June 22, 2017 12:16 AM GMT

Teach me how to script. I need someone to teach me. I need help with how to make guis, normal scripts not some crappy script that changes the color of a brick. If you are willing to do that then you will receive absolutely nothing. But a thank you. Yeah no if you're thinking about saying "watch youtube videos" or "Go to wiki" I have already and i even took notes so no just no.
legoninja4321
#219417093Thursday, June 22, 2017 2:02 AM GMT

"watch youtube videos" or "Go to wiki"
Horrible_Pun
#219417707Thursday, June 22, 2017 2:12 AM GMT

Doing simple stuff such as changing colors of a brick are good foundations of a good beginner scripter. You can't just want to learn how to script and want to immediately want to make front-page quality games. I suggest watching this specific youtube playlist which explains EVERYTHING in beginner scripting, to explaining everything in more difficult scripting. He also explains how to make guis and such. heres the link: https://www.youtube.com/watch?v=v3dbJXSa12Q&list=PLXX6hhg4CysYf0M-_GtCEOgGlkBfrXsoJ Easy ^^ https://www.youtube.com/watch?v=nRS255_y8rM&list=PLXX6hhg4CysbJWPZTFBxCxutohhKNrHKU Hard ^^ click on his channel playlists to see more
tigershark02
#219418079Thursday, June 22, 2017 2:17 AM GMT

Sorry to say this but... Go through the wiki You do not even have to go through it all, but go through at least 3 or 4 pages. It will give you the fundamentals that way someone can either explain it to you or watch a YT video and you will not likely be very confused.
Horrible_Pun
#219418176Thursday, June 22, 2017 2:19 AM GMT

The wiki is only good for like super super beginner people
Br_eeze
#219420217Thursday, June 22, 2017 2:52 AM GMT

^^ and heres the notes i took so you can get me some info that i dont already know : wait(3) - tells the script to wait 3 seconds before the script if for example pape is inside oco it means pape is a Child of oco because its inside it and oco is a Parent. the properties of a part is the part's CHILD BrickColor = the color of the brick you dummy game.Workspace.Part.BrickColor = BrickColor.new("Really red") ^lives ^part lives ^name of thing ^NEW color ^Color game.Workspace.Part.Reflectance = 0.7 game.Workspace.Part.Material = "Brick" game.Workspace.Part.Transparency = 0.6 Boolean value = true or false value game.Workspace.Part.Anchored = true variable = something that stores data. data stored : -what channel is being watched example: channel = 3 part = game.Workspace.Baseplate part.Transparency = 0.5 part.BrickColor = BrickColor.new("Really black") ^ the part stored the thing i wrote so when i write the variable name and the thing i want to change it does it without me writing that all over again! variable name first and then an equal like this example: myvariable = Instance.new("") <--------- i need this to get something new in the game like a sphere or a part or etc.. part.Parent = <--- where you want it to go like workspace or lighting... way more simple way is : part = Instance.new("Part",game.Workspace) for the variable : part.Transparency = 1 <----- example Vector3 is what we use in roblox to POSITION things vector3 means 3 position value X Y and Z part = script.Parent part.Position = Vector3.new(-197.5, 0.5, -205) ^ X Y Z while true do = it will make it so that the part that you insert will insert more parts and more and it wont stop until you tell it to stop. while true do local part = Instance.new("Part",game.Workspace) wait(1) end that script makesit so that each second a part spawns and it loops. break = it stops the loop
ExtremeBuilder15
#219420783Thursday, June 22, 2017 3:00 AM GMT

Take a look at this forum post: https://forum.roblox.com/Forum/ShowPost.aspx?PostID=190669654 It's a little old, but most of the info is good.
tigershark02
#219469603Thursday, June 22, 2017 7:25 PM GMT

Skimmed through it. Approved 10/10 will actually teach you something
cowsoncows
#219469917Thursday, June 22, 2017 7:30 PM GMT

The wiki isn't just good for super beginner people, there are a lot of tutorials for intermediate scripters as well. For example, EgoMoose's math pages, explaining things like CFrame and Vector3 in depth.

    of     1