About 244,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. Getting the player - Scripting Support - Developer Forum - Roblox

    Aug 29, 2019 · via a touched even in a normal script, you have to use the GetPlayerFromCharacter Function: thing.Touched:Connect(function(hit) local plr = game.Players:GetPlayerFromCharacter(hit.Parent) end)

  3. [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 …

  4. 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.

  5. 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 …

  6. How to get Profile Icon? - Scripting Support - Developer Forum

    Mar 24, 2019 · I’m sure I’ve seen something like this on these forums, but they didn’t ask the specific question I was going to ask. So basically, I’m trying to create a GUI thing where you click your profile picture (something like the example shown below) to get settings, e.c.t. I’m not sure how exactly I would do it. I’ve heard it needs a specific link, but I can’t seem to find it. Could ...

  7. How to get catalog image from asset id - DevForum | Roblox

    May 22, 2021 · I am trying to make an image of an item show up in game after the item id has been put into a text box. I have read many articles on how to do this, but I haven’t been able to directly find an example of a script. Any help on a script is appreciated <3

  8. 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 …

  9. [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 …

  10. How to get a Server Location/Region on Roblox

    Oct 21, 2021 · Hello Developers, Some experiences have server region displays like Server Location: FL, USA, which shows the server location/region of the server. In this tutorial, you’ll know how to make that. Step 1 Enable HTTPS requests in your game Enable HttpsService Game Settings > Security > Https Requests > Enable Step 2 Now we get the location data of the …