Top products from r/roblox

We found 18 product mentions on r/roblox. We ranked the 12 resulting products by number of redditors who mentioned them. Here are the top 20.

Next page

Top comments that mention products on r/roblox:

u/TheIcyStar · 1 pointr/roblox

If you don't know a single thing about programming: Go to your local library and pick up a programming book on almost any language, (visual basic, java maybe?), grasp the concept of coding and then move on.

If you do know some little things on programming, but no lua at all: Look at the wiki, read some tutorials, do them

Then the good stuff. I recommend these two books: Basic roblox lua programming, and Intermediate roblox lua programming

I fully read these books, (they're litterally beside me right now). They really helped me out in the start. However, the author did leave a couple of bugs in the code, but I'm willing to help you out c:

Afterwards, work on some small projects, and slowly bigger ones. I started out with a simple part generator that puts a light into a brick, turns the brick into a ball, and makes it roll down a hill, then I went on and made a custom part generator And now my current big project is making a small game.

In the meantime I went on scripting helpers looking at other people's code, trying to fix it, perhaps learning something new. Whenever I wanted to know more information on something, I just googled, for example, "Roblox Remote Events" and all the info I needed came up in the wiki

If you have any questions pm me on reddit or roblox (username: TehIcyStar)

Good luck :D

u/Rayblon · 1 pointr/roblox

There are actually some amazing budget mechanicals out there.

The one I use is loud as sin, but feels really nice and actually has really solid construction. The K553 USAS by Redragon. It's apparently either out of stock or discontinued but pretty much all of their products are really high quality despite the low prices(~$40 for a mechanical keyboard).

u/bytecracker · 5 pointsr/roblox

Yeah, nowadays the Internet is full of tutorials on Lua and even specifically on ROBLOX Lua. There are videos, books, etc.
Although slightly outdated, the Cookbook would be a great place to start. There's also a newer one here.

You can also buy a real book about using Lua with ROBLOX. Once you know the basics, it gets much easier. All you have to do is look stuff up in the Wiki. It just takes a little while before you can understand the docs.

You can also take a look at the Wiki's tutorial section.

u/pepsisong2 · 3 pointsr/roblox

> Biggest load of shit I've ever heard.

[Well if you want to read it by all means] (https://www.amazon.com/War-Extermination-Military-Studies-Genocide/dp/1571814930), War of Extermination: The German Military in World War II by Hannes Heer is a fantastic book on the subject I find. Gathering valued insight from a collection of historians of the subject of the "Clean Wehrmacht" myth you're trying to perpetuate.

> You do realized the Wehrmacht FEARED the Nazi party and therefore felt like they had to do everything the Nazis requested?

Once again, this is the [Clean Wehrmacht Myth] (https://en.wikipedia.org/wiki/Clean_Wehrmacht) I just mentioned. The belief that the Wehrmacht were an apolitical organisation that were "pushed around" by the Nazi Party, and considered themselves independent from the Nazi Party's political ideology. This narrative is generally pushed around by far-right authors and a select few activist groups, despite being proven false by the Wehrmacht's own documents. The above mentioned book and provide further insight if you're willing to pick it up.

u/TheRainbowNoob · 2 pointsr/roblox

ok but for real can you make a gaming pc [like this one](CYBERPOWERPC Gamer Xtreme VR GXiVR8020A Gaming Desktop - Intel i5-6402P Quad Core 2.8GHz, 8GB DDR4 RAM, 1TB HDD, 24X DVD, AMD RX 480 4GB, WI-Fi USB Adapter, Windows 10 Home https://www.amazon.com/dp/B01HNBLHAA/ref=cm_sw_r_cp_api_EkAAyb8VMBQ8Z) if you already started on the penis you can keep working on it

u/Gamer4647 · 3 pointsr/roblox

How 'bout this?
Literally just a game screenshot for the cover.

u/wonderful72pike · 1 pointr/roblox

They're not copying Diary of a Wimpy Kid, they're copying the Minecraft books that did this. It's nearly a 1:1 copy with changed colors.

u/Sheep_Goes_Baa · 1 pointr/roblox

What..... I'm gonna post the quote again. "Programs must be written for people to read, and only incidentally for machines to execute."

It's the same reason why you don't name all your variables "i" or "b" or "n". It's also why you don't write gigantic 300+ line functions, or why you don't put the actual value of a constant you're using instead of using a variable to represent it. Readability is everything. Who gives a shit if the operation is slower by 1 microsecond? If you're optimizing, there are way more options than to make you're code dirty. This is a good book to read on writing clean code.

P.S. You're using an integer but that method takes an Enum as the argument. So... your integer is just as "inefficient" as that string.

Edit: also, video: https://www.youtube.com/watch?v=4LUNr4AeLZM