About 247,000 results
Open links in new tab
  1. The Basics of Roblox Studio

    Dec 2, 2022 · Hello Developers! This is going to be a simple tutorial on how to work the basics of Roblox Studio, mainly for scripting. Why make this tutorial when there are many others just like it? Because this is the first lesson in many lessons on how to learn scripting and want it all to be reliable info. Part One, How to install Roblox Studio In this part of the Tutorial, I will be showing …

  2. [Full Tutorial] How to script on Roblox | Beginners!

    Sep 20, 2022 · How do script [ Update Version], 2022/2023 Introduction Hey there! Today, I will be teaching you how to script from scratch - all the basics you need to know when coming to script on Roblox with a better and updated version! [If you’re a beginner] After this tutorial, you should learn: Understand the very basics of scripting on Roblox. In this tutorial, we’ll be talking …

  3. How do I access Player, Character & Humanoid in Studio ... - Roblox

    Jun 18, 2022 · Goal So I want to understand how to access the Player, Character & Humanoid in studio, I have searched up tutorials on how to do it, but it never really works and they don’t explain why it happens, I have always had trouble with scenarios like this.

  4. Next Gen Studio UI Preview is here! [Beta] - Roblox

    Jul 18, 2024 · Today, we’re releasing a preview of the next-generation Studio UI. We’re rolling it out as a beta to gather your feedback to ensure that it will help you be more productive. “Next Gen Studio” is a major effort guided by the following principles: A simplified default UI that is more intuitive for new creators A flexible UI system that is more customizable for experienced …

  5. [Beta] Cube 3D Generation Tools and APIs for Creators - Roblox

    Mar 20, 2025 · Last year at RDC, we announced an ambitious project to power the creation of immersive 3D objects and scenes in Roblox. Today, we are excited to launch Cube 3D, a 1.8B parameter foundation model for 3D creation trained on 1.5M 3D assets—including the beta of its first capability, text-to-3D mesh generation, also known as the Mesh Generation API. Roblox …

  6. Introduction To Using HTTP Get Requests And Creating Your Own …

    Mar 16, 2023 · Hi there Devforum! I’ve recently been experimenting with HTTP requests, and want to help newer developers with getting to know the basics. So, I’ll be teaching you how to do just that, in the simplest way possible. It is important to note that HTTP requests can sometimes open backdoors and other dangerous exploits to not just your games, but also the server that …

  7. [Improved] How to Actually Improve Performance in Your Games …

    May 12, 2021 · In my last post, I went over how to “improve performance and set performance goals” — that post is incredibly outdated and full of terrible advice. 🤦‍♂️ Do not follow it It was very vague and my knowledge as a scripter & programmer has improved a lot This topic will list a bunch of useful things that have helped many projects I’ve worked on and I’ll split it into 2 parts ...

  8. How do you get the Studio ID of an image - Art Design Support

    Jun 9, 2020 · So, this is related to my other but I didn’t get any answers, so I tohught about writing a new topic. Basically I am having an issue where the image wont display onto a decal when I put in a code. So, someone replied to me and told me I need a Studio ID for the code, any ideas what that is and how to get that? Here is a link to that thread The image won't display on a decal - …

  9. Picking a random object within a folder - Scripting Support - Roblox

    Oct 15, 2019 · SS = game:GetService("ServerStorage") WeaponList = SS:WaitForChild("Weapons") Weapons = WeaponList:GetChildren() local MaxWeapons for i = 1, #Weapons do MaxWeapons = MaxWeapons + 1 end local PickedItem = math.rand…

  10. Getting a players profile picture - Scripting Support - Roblox

    Dec 30, 2022 · You would use GetUserThumbnailAsync. local Player = game.Players.LocalPlayer local ImageSize = Enum.ThumbnailSize.Size420x420 -- Thumbnail Size local ImageType = Enum.ThumbnailType.HeadShot -- Thumbnail Type local content = game.Players:GetUserThumbnailAsync(Player.UserId, ImageType, ImageSize) -- Gets Image …