How to put characters in roblox studio

Dialogs are objects that allow you to create NPC characters that you can talk with, using a built-in interface. It’s very easy to use, and doesn’t even require scripting. However, you can add extra functionality with the event Dialog/DialogChoiceSelected.

You can use them to: *Create NPC characters that reward you, or give you quests. *Create help bots. *Make talking enemies.

*Anything really, just use your imagination!

Basic Overview

Dialogs are actually very easy to use, with no scripting necessary for those of you who aren’t accomplished in Lua. They form like the image below:

How to put characters in roblox studio

The Dialog object displays the initial prompt, which then gives the user the choice of replies from the DialogChoice objects. The DialogChoice then gives the user the choice of replies from the DialogChoice objects inside itself.

Creating a basic Dialog

Making the speech bubble

First, open Roblox Studio and create a new place. In explorer (View -> Explorer), select the part you want the speech bubble to appear above. Click Insert, select Basic Objects, and in the window that appears select Dialog. There’s your initial dialog object created! You won’t be able to see a speech bubble appear until you run the game with a character in (online or test solo).
In the properties window (View -> Properties), you will see the Dialog/InitialPrompt property. Change this to what you want the part to say as soon as you click on the speech bubble.

Hooray! You’ve got your first part to speak when you click on its icon!

Adding choices

So, you’ve got your speech bubble. That’s great and all, but you can’t talk to it, can you?
Select the original Dialog object and click Insert, then Basic Objects, and from the window select DialogChoice. In the properties window that you should have open, you will see a property called DialogChoice/UserDialog. This is the choice that the user will be given, not the name of it or any other properties. The property DialogChoice/ResponseDialog is what the part will say when the user selects that option, change it to what you want that to be.
You can add as many DialogChoice objects to the original Dialog object to give the user that amount of choices.

Adding more choices

Our Dialog now has several choices from the user to choose from, which result in the part giving a response. Additionally, we can add choices to those choices, creating a larger conversation with the part.
To do this, all you need to do is complete the previous step but instead of inserting DialogChoice objects into the original Dialog object, you insert them into an existing DialogChoice objects.

More properties and customisation

You can customise your Dialog further with additional properties. Change these with the properties window.
Note: These are only the properties that will have a visible effect in game.

Dialog/ConversationDistance: Set this to the maximum distance from which you can talk to the part. If you start within the distance and then walk out of it, the conversation will end.

Dialog/Purpose: These are the different icons that appear above the part for you to click on. Quest is a !, Help is a ? and Shop is a $.

Dialog/Tone: This is the color of the conversation - the speech bubble, and the choice GUI. Friendly is green, Neutral is blue and Enemy is red.

Example

Here’s an example of a Dialog being used.

How to put characters in roblox studio

Scripting

If you’re accomplished with Roblox Lua, you can add even more functionality to your NPC part. The scripting event DialogChoiceSelected holds two arguments - the player object and the object of the choice the player selects. It does not return the name of the choice. It fires whenever the player selects a choice.

workspace.Dialog.DialogChoiceSelected:connect(function(player,choice) print(player.Name,choice.Name) end)

That would print the name of the player and the name of the choice selected whenever the player selects a choice. You can’t localise it to a specific choice with the Dialog methods. If you want to make something happen whenever a player selects a specific choice, you need to give it a unique Name property and compare it with an if statement.

workspace.Dialog.DialogChoiceSelected:connect(function(player,choice) if choice.Name == "No" then player.Character.Humanoid.Health = 0 elseif choice.Name == "Yes" then player.Character.Humanoid.Health = 1000 end end)

You can make something happen whenever a certain player selects a certain choice as well.

Example:

workspace.Dialog.DialogChoiceSelected:connect(function(player,choice) if choice.Name == "isplayer" and player.Name == "pighead10" then player.Character.Humanoid.Health = 10000 end end)

With this event, you can give characters quests, rewards, shop items and more!

In Roblox, models from third-party modeling tools are called meshes. A mesh is a collection of vertices, edges, and faces that make up a 3D object such as a prop, building, or character. Meshes can include far more detail than any objects you model using parts in Studio. They can also have internal rigs and textures, allowing you to create lifelike deformable objects that you can pose and animate.

You can import meshes that you create using third-party software, such as Blender or Maya, as a MeshPart into Studio, or you can find thousands of meshes made by Roblox and the Roblox community within the Creator Marketplace to use within your experience.

For information on modeling tools available within Studio, see Modeling in Studio.

Mesh Types

Studio supports several mesh types, such as rigged and skinned meshes that require additional steps to set up before importing into Studio. When creating a generic, rigged, or skinned mesh, see Mesh Requirements for modeling specifications and guidelines for use in Studio. Once you model your mesh, see Export Requirements for instructions on exporting your model from Blender or Maya.

Rigging

A rigid mesh with a rig, or internal skeleton structure, can articulate at specific points of the mesh based on its rig. See Rigging for more details and modeling guides on adding rigs to meshes.

Skinning

A skinned model is a rigged mesh that bends naturally at specific points, creating a more natural pose. See Skinning for more details and modeling guides on skinning a rigged mesh.

Surface Appearance

You can apply advanced textures created in a third-party application to a mesh using SurfaceAppearance. SurfaceAppearance uses up to 4 separate image files to create a realistic surface on the parented mesh in a variety of lighting scenarios. See Surface Appearance for more details and examples of using these specialized textures.

How to put characters in roblox studio

Meshes in Studio

You can search through the Creator Marketplace for a large catalog of community-uploaded meshes to use in your experience, or import your own. When adding meshes to your experience, you can configure textures, details, collisions, and more. See Meshes in Studio for more information on discovering, importing, and configuring meshes in Studio.