Тёмный

How to make simple NPC dialogue in Roblox Studio 

RKGAM3ZS
Подписаться 4,8 тыс.
Просмотров 40 тыс.
50% 1

Опубликовано:

 

5 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 314   
@rkgam3zs
@rkgam3zs 5 месяцев назад
Some more advanced tutorials will be coming out soon, I want to cover a few simple things first then we can get into the cool stuff 😎
@blackenphoria
@blackenphoria 5 месяцев назад
Very cool.
@Vector-io9cn
@Vector-io9cn 5 месяцев назад
hey! i found ur video on the page so i clicked it and i pretty much enjoyed it. Thank you for helping me out with the script. I actually subscribed to u and liked the video. Im hoping u to make more tutorials so whenever they came out i can watch and learn from it. - my english is kinda stupid but sorry eheh
@tinnydesigns
@tinnydesigns 5 месяцев назад
​@Vector-io9cn your English is great!
@rkgam3zs
@rkgam3zs 5 месяцев назад
@@Vector-io9cnI'm glad you enjoyed it! :) And your English was fine! I'll make plenty of tutorials in the near future!
@Vector-io9cn
@Vector-io9cn 5 месяцев назад
@@rkgam3zs Thank you!! :D
@sanstheharasser
@sanstheharasser 4 месяца назад
dude, thank you so much man, not only would this be helping me make games, but it also helps me learn at the same time! you've earned yourself another subscriber!
@spekislazeee
@spekislazeee 2 месяца назад
sans has passed his judgement.
@knaux
@knaux 5 месяцев назад
Joe is my third husband. We have three kids together, how do I make him STOP talking to other women, and talk MORE to ME instead? Thanks! 😊🙏
@rkgam3zs
@rkgam3zs 5 месяцев назад
Rusty metal pipe should do the trick, two times daily, and the problem shouldn't be a problem anymore.
@tinnydesigns
@tinnydesigns 5 месяцев назад
​@@rkgam3zs😂😂
@sprunkifanm
@sprunkifanm 3 месяца назад
HELP?
@honoree185
@honoree185 3 месяца назад
​@@rkgam3zsSir this is work but the Npc dialogue can moved by player how to fix that?? I want the npc cant moved by player
@liadex650
@liadex650 3 месяца назад
​@@honoree185 Anchored.. 😂
@isabellejoestar2455
@isabellejoestar2455 2 месяца назад
Since I've started working on a little dating sim kind of game in roblox, I've gotten into trying to learn to script in Lua and use Roblox Studio, and your videos have been a delight to watch! Very simple and understandable instructions, nice voice and straight to the point video. You even think of little details like failsafe measures or extra things like sound!
@lxhhhhhhhh
@lxhhhhhhhh 2 месяца назад
crazy how ur supporting e dating.
@isabellejoestar2455
@isabellejoestar2455 2 месяца назад
@@lxhhhhhhhh It's a little passion project with friends for fun, and I don't think it really counts as e-dating since it's not real life online romantic relationships.
@lxhhhhhhhh
@lxhhhhhhhh 2 месяца назад
@@isabellejoestar2455 if it is that way then cool! sorry if i made your feel offended
@softie2747
@softie2747 2 месяца назад
OMG THATS CUTE WHATS THE GAME?
@parker3139
@parker3139 5 месяцев назад
very well made and useful tutorial straight forward and even thought me a few things, keep it up dawg ill definitely support
@rkgam3zs
@rkgam3zs 5 месяцев назад
Thank you so much, glad I could teach you something :)
@honoree185
@honoree185 3 месяца назад
​@@rkgam3zsSir this is work but the Npc dialogue can moved by player how to fix that?? I want the npc cant moved by player
@iamluhy1930
@iamluhy1930 3 месяца назад
@@honoree185 Anchor it?
@DirectpolarXD
@DirectpolarXD Месяц назад
I got to the end expecting it to work but.. NUH UH. I currently am tweaking out because I just wasted a good 40 minutes of my life trying to find out what I got wrong
@RealRoyalMonkey
@RealRoyalMonkey Месяц назад
For those wanting the code for joe here it is: local gui = script.Parent local textBox = script.Parent.textBox local textlabel = script.Parent.textBox.TextLabel local sound = script.Parent.talksound local plr = game.Players.LocalPlayer local chr = plr.Character local humanoid = chr.Humanoid local dialogueFolder = game.Workspace.dialogueFolder local joeDialogue = dialogueFolder.joeDialogue.ProximityPrompt gui.Enabled = false textBox.Visible = false local function writeText(text,waitTime) humanoid.WalkSpeed = 0 humanoid.JumpPower = 0 gui.Enabled = true textBox.Visible = true textlabel.Text = text sound:play() task.wait(waitTime) end local function endDialogue() gui.Enabled = false textBox.Visible = false textlabel.Text = "" humanoid.WalkSpeed = 16 humanoid.JumpPower = 50 end joeDialogue.Triggered:Connect(function() joeDialogue.Enabled = false writeText("cheese", 2) writeText("ye this is royalmonkey", 2) writeText("cheese",2) endDialogue() joeDialogue.Enabled = true end)
@IanCarrascoAguiar
@IanCarrascoAguiar 17 дней назад
bro you are a real hero
@cricketgaming6761
@cricketgaming6761 5 месяцев назад
Yes, thank you so much! I am trying to get into Roblox studio and this would be so cool to add into my game!
@Akari7005
@Akari7005 2 месяца назад
MAN THANKSSS WAS LOOKING FOR SOMETHING LIKE THIS IT WAS SO SIMPLEEEEEE KEEP UP THE GOOD WORK BTW UR CHANNEL IS SOOO UNDERATEDDD Edit: got urself a new sub
@animation1788
@animation1788 3 месяца назад
if the script doesnt work try this local dgui = script.Parent local textbox = dgui.Textbox local textlabel = dgui.Textbox.TextLabel local sound = dgui.TalkSound local function writeText(text, waitTime) dgui.Enabled = true textbox.Visible = true textlabel.Text = text sound:Play() wait(waitTime) end wait(2) writeText("Your text", 2) writeText("Your text", 2) writeText("Your text", 2) writeText("Your text", 2) writeText("Your text", 2) dgui.Enabled = false textbox.Visible = false (you can make the text whatever you want)
@RepicKd
@RepicKd Месяц назад
LIFE SAVER
@MrGooby1000
@MrGooby1000 Месяц назад
W manzzz
@Fancy_Dev.
@Fancy_Dev. Месяц назад
hey, even after pasting in your script and working around trying to get it work, it still wont work at all mind telling me what the problem might be? (found the problem, accidentaly pasted a letter in the sound part thing so it didnt work)
@BrooksBradley-y5p
@BrooksBradley-y5p Месяц назад
it didnt work idk why
@deva-x9l
@deva-x9l Месяц назад
@@BrooksBradley-y5psame
@Aydiniyom
@Aydiniyom 2 месяца назад
That was by a big margin the best intro I've ever heard on a YT video
@onsr8
@onsr8 3 месяца назад
i really love this tutorial, i dont even speak english but i understood everything 🙏🙏
@GoodCheese6882
@GoodCheese6882 2 месяца назад
THANKS SO MUCH FOR THIS! I just took around 3 hours doin this... but it definitely helped A TON and I think I understand scripting just a tiny little bit better now. THANKS SO MUCHH! AND I WOULD LOVE TO TRY THE MORE ADVANCED VERSION
@masonbland
@masonbland 4 месяца назад
I'm your 1,000th Subscriber! Congrats on getting to 1k! :P
@rkgam3zs
@rkgam3zs 4 месяца назад
Thank you so much btw!!! I can't believe ive reached 1k, gotta do something special 🤔🤔
@masonbland
@masonbland 4 месяца назад
@@rkgam3zs for sure!
@Darko_Boi
@Darko_Boi 4 месяца назад
youre gonna get 1.5k bsfore you make a 1k special 😮 ​@@rkgam3zs
@guyintheshadoes
@guyintheshadoes Месяц назад
Hello guys, if you are experiencing a bug for the proximity prompt when coding, add a wait(0.1) or whatever, before you apply the variable. F.E. : wait(0.1) local npcDialogue = Folder:WaitForChild("NPCDialogue").ProximityPrompt local scripts can be pretty annoying, but this is how you can fix it. If you get hit with a "nil with FindFirstChild" error then always add a quick wait before calling the variable. I also figured out the humanoid problem. This one should also be pretty easy. You just need the code to check if the player has a character. F.E. : local Player = game.Players.LocalPlayer if Player.Character then Player.Character.Humanoid.WalkSpeed = 0 end hopefully this helps!
@officalbaconhairgaming7337
@officalbaconhairgaming7337 Месяц назад
you're. a. genius.
@officalbaconhairgaming7337
@officalbaconhairgaming7337 Месяц назад
I'm just a little confused on the humanoid problem.
@raflyansadamhidayat9823
@raflyansadamhidayat9823 Месяц назад
Sorry but before what variable for the text prompt?
@guyintheshadoes
@guyintheshadoes Месяц назад
@@raflyansadamhidayat9823 the variable for your proximity promt
@zpack.mp4
@zpack.mp4 Месяц назад
if your walkspeed/jumppower script doesn't work, use this: local player = game.Players.LocalPlayer player.Character:WaitForChild("Humanoid").WalkSpeed = 0 player.Character:WaitForChild("Humanoid").JumpPower = 0 edit the numbers at the end of the line for different walkspeed.
@zpack.mp4
@zpack.mp4 Месяц назад
very cool man
@rkgam3zs
@rkgam3zs Месяц назад
thanks for helping people out, i appreciate it :)
@Lila_bg
@Lila_bg 2 месяца назад
thank you for the tutorial! im slowly learning how to script more and this made sense and worked, thanks!
@DNSzzz
@DNSzzz 5 месяцев назад
so useful! I'm going to show this to a friend
@H4CP
@H4CP 5 месяцев назад
average bot comment
@DNSzzz
@DNSzzz 5 месяцев назад
@@H4CP average bot comment
@notedible7519
@notedible7519 2 месяца назад
hey so everything was working up until i tested it and i interacted with joe and the text didint pop up? i thought i did everything right? do u have any solutions? btw i subscribed
@krumiril6579
@krumiril6579 2 месяца назад
happened to me too
@lafhee
@lafhee 4 месяца назад
thanks for the simple and easy to follow along tutorial :)
@rkgam3zs
@rkgam3zs 3 месяца назад
of course:)
@ron7350
@ron7350 3 месяца назад
I finally learned to do it on proximity prompt tysm , I'm also gonna add something extra which is cameras position
@reksai3265
@reksai3265 2 месяца назад
Am i the only one getting this error that says joeDialogue isn't valid member of the dialogue folder? I mean it does work in roblox studio but when i tried it on my real game it doesn't work and then when i check my roblox studio back it gives me the error..
@felipefornazari31
@felipefornazari31 2 месяца назад
Thank you kind sir
@felipefornazari31
@felipefornazari31 2 месяца назад
W
@wasnexhere
@wasnexhere 4 месяца назад
6:27 are you sure that's not a demon in your room? what are you hiding?
@rkgam3zs
@rkgam3zs 4 месяца назад
PSSSHHH I WOULD NEVER HIDE ANYTHING!!!!! hahahahahahahhshahshshshshjajdnejeelfkkekwe. Demons don't exist.
@Tuckla
@Tuckla 2 месяца назад
Hey! So when i added the parts that stopped the player from moving, the script stopped working. I then removed those edits and it worked again. The player being frozen didn't really matter to me so I just moved on. I added the last edits and the proximity prompt was not working. I have tried everything, I've checked the script for mistakes, and when I interact still nothing happens. Can you reply to this with the fully copied script so I can paste that in? I don't know what to do
@Thatoneconehead
@Thatoneconehead 2 месяца назад
no hate, but the script didn't work for me, did i do something wrong? example: i play the game and the text only says "label" it doesn't play the text like usual, please let me know how to fix this!
@waffledkai
@waffledkai Месяц назад
Same
@Mionochrome
@Mionochrome 2 месяца назад
everything works other than the text actually changing, its just stuck on "text"
@CreatorProductionsOriginal
@CreatorProductionsOriginal 2 месяца назад
What’s the BG music name? It’s perfect for the game I’m doing 😭 (For reference, I’m talking about the music that plays at 2:35, this is invade the music changes sometime in the vid)
@Rudy2Kropka0
@Rudy2Kropka0 4 месяца назад
Congarts on 1k man!
@rkgam3zs
@rkgam3zs 4 месяца назад
Thank you so much!
@_faan
@_faan 4 месяца назад
Hey, your channel has a lot of interesting tutorials. I just am really interested in learning luau because I’ve been building since 2020 and just know the very basics of scripting after like 4 years, so could you please let me know how and where to learn luau from?
@Smudge_TherianKat
@Smudge_TherianKat Месяц назад
I need help I did everything you told me to but for the text it isn’t working I followed everything you did but my text just says “label” how do I fix this please help!
@fairuran
@fairuran 2 месяца назад
Dude, you are freaking hilarious.
@LittleAsianBoy88
@LittleAsianBoy88 Месяц назад
i am having difficulty at the proximity part. ive double checked everything and everytime i run the test, the part in the npc folder dissapears. how do i fix that?
@Itzame3756
@Itzame3756 23 дня назад
Not sure if you still need help, but did you anchor the part? Otherwise it'll fall off the map
@LittleAsianBoy88
@LittleAsianBoy88 23 дня назад
@@Itzame3756 i did anchor the part
@WolfBloxsYT
@WolfBloxsYT 24 дня назад
hey this is amazing! i have one tiny issue though, i tried to make some simple dialouge and whenever i edited the script i had to wait 5 minutes for it to work again
@Rudy2Kropka0
@Rudy2Kropka0 5 месяцев назад
Thank you man you really helped me!
@rkgam3zs
@rkgam3zs 5 месяцев назад
Of course!
@Starcode_MrCrocodile315
@Starcode_MrCrocodile315 3 месяца назад
you just earned a new sub (;
@themalimat
@themalimat 5 месяцев назад
Your video it's so good! you are the best! i have a ideia for you, make an functional computer
@rkgam3zs
@rkgam3zs 5 месяцев назад
Thank you!
@MatiBugati
@MatiBugati 17 дней назад
You could have done gui.textBox to make the script shorter
@Nugg3tslay3r
@Nugg3tslay3r 9 дней назад
THANK YOU SO MUCH
@genshinproplayer7439
@genshinproplayer7439 3 месяца назад
im pretty bad to copy because im accoustik could u add the script in the bio of the vidéo pls (gg for 2K)
@zen.1th
@zen.1th 5 месяцев назад
bros cooking food in his room
@rkgam3zs
@rkgam3zs 5 месяцев назад
I live inside of a microwave at this point
@vNoahlol
@vNoahlol 5 месяцев назад
Howdy fellow human
@rkgam3zs
@rkgam3zs 5 месяцев назад
Howdy fellow human that breathes air
@CrzyChoas
@CrzyChoas 2 месяца назад
Thanks for the help man!
@TheLobbyCreator
@TheLobbyCreator Месяц назад
if you could, it would be easier for newer players for you to copy the script part and put it in the disc
@VaiAnimatez
@VaiAnimatez 4 месяца назад
Great tutorial, but can you please recreate the drake video? please
@rkgam3zs
@rkgam3zs 4 месяца назад
BRO
@yellowavm
@yellowavm 4 месяца назад
😭❓
@SarlatFear
@SarlatFear 4 месяца назад
11:40 i accidently delete the writetexts scripts..and nothing works rn
@JoãoInácio-l3n
@JoãoInácio-l3n 2 месяца назад
doesn´t work :/ the script doesn´t work, i dont know why, i play the game and the textbox appear, but it doesn´t change, it stays: text, i did every thing you did, i dont know what is going on, please help
@Ghoul_Game144
@Ghoul_Game144 2 месяца назад
me to
@KoriSt4r
@KoriSt4r 2 месяца назад
Same
@Thereal_Static
@Thereal_Static Месяц назад
Maybe because of your spelling. In your script check the errors. If you see an orange line in where you scroll up and down. that means theres something wrong about your spelling or maybe even wrong names.
@Thereal_Static
@Thereal_Static Месяц назад
I had the problem too but fixed it since i found the solution
@Thereal_Static
@Thereal_Static Месяц назад
Hope this helps 😃
@Grandpa.Joe.
@Grandpa.Joe. 10 часов назад
HES NOT JOE I AM JOE
@Munchiey
@Munchiey 3 месяца назад
whenever i try to make the player speed and jump power to 0 it doesn't work (i suck at coding)
@Holden1011q1
@Holden1011q1 3 месяца назад
for some reason when I add the other dialogue for Fred or the second person the Gui doesn't stay hidden
@Axolotl_1000
@Axolotl_1000 4 месяца назад
It doesn't work I did everything like in video I have that button and I wrote all scripts like in video but when I'm pressing E it's just not working (I'm very beginner in scripting)
@krumiril6579
@krumiril6579 2 месяца назад
SAMEEE
@joeperchance
@joeperchance 6 дней назад
i starred in this tutorial btw
@rkgam3zs
@rkgam3zs 6 дней назад
you are THE joe
@PALACEWALLS
@PALACEWALLS Месяц назад
Love the tutorial! but I'm stuck the proximity part, is there a way to fix a bug when the proximity part is pressed no text box shows up?
@PALACEWALLS
@PALACEWALLS Месяц назад
holy crap nevermind i feel stupid. look for the orange line people!
@cxrsed-m1t
@cxrsed-m1t 5 месяцев назад
Hey man, Could u do a tutorial on how to make those monsters u made some videos ago? thanks!
@Logan_Harrelson
@Logan_Harrelson 3 месяца назад
W video fr tho i really appreciate it💪💪💪💪
@miist.
@miist. 4 месяца назад
I love this 😭👊
@K4IZZ4
@K4IZZ4 2 месяца назад
Hi i know im a little late but this worked until the very end, I could interact with the npc but text is not showing or the dialogue do you know how to fix this?
@thewreaklessgoose
@thewreaklessgoose 4 дня назад
When I talk to my character everything works but the dialogue is stuck on text. Can someone help please
@EdgefulVow
@EdgefulVow Месяц назад
Great tutorial not gonna lie. But I have a problem how can I make the dialogue words typed one by one?
@rkgam3zs
@rkgam3zs Месяц назад
my latest tutorial covers that! 😊
@EdgefulVow
@EdgefulVow Месяц назад
@@rkgam3zs tysm!
@vNoahlol
@vNoahlol 5 месяцев назад
IT works perfectly yahoo
@ImYuuke
@ImYuuke 5 месяцев назад
you might wanna give a more modular way to do this, like you should have a video that takes some extra skill, so you can get some more well made videos out.
@Badd1150
@Badd1150 21 день назад
how do i make the text animated? a typewriter effect, like make the letters appear one by one, i used to be able to do it but i sorta forgot since im not used to scripting anymore,
@nikolas4786
@nikolas4786 9 дней назад
This is a message, not a dialogue
@drcheznut
@drcheznut 2 месяца назад
Hey, idk if u will see this but I make the script shown in the video but every time I interact with the proximity prompt/npc nothing happens (I’ve checked for spelling)
@notedible7519
@notedible7519 2 месяца назад
me too!! idk whats happening it worked before i added the proximity prompt
@drcheznut
@drcheznut 2 месяца назад
@@notedible7519 same
@Otonaque
@Otonaque 2 месяца назад
me too lol
@KoriSt4r
@KoriSt4r 2 месяца назад
Me too!!
@Helluvaeditor
@Helluvaeditor 2 месяца назад
I followed everything and like triple checked, but when I try to interact with my character, theres no button to do so :(
@Wheresmyheadat
@Wheresmyheadat 4 месяца назад
This is an amazing tutorial but im kind of in a rush with my game. If it is possible, can you write down the script in a reply? Edit - 70th comment
@leowastakenwastaken
@leowastakenwastaken Месяц назад
The Proximity Prompt won't even show up, how do I fix this
@bolgorwheat8753
@bolgorwheat8753 3 месяца назад
Hmm if I put another one far away from joe, I can't interact with it.
@GHOST_Smurfer
@GHOST_Smurfer 22 дня назад
It’s telling me humanoid doesn’t exist how do I fix it
@Kloyster2010
@Kloyster2010 2 месяца назад
I did everything correct but nothing works LIKE ALWAYS whenever I try to do a tutorial NOTHING WORKS NO MATTER HOW EARLY IT IS
@GregVr1YT
@GregVr1YT Месяц назад
Here is a better version if you want: follow the tutorial to set up pls local GUI = script.Parent local TextBox = script.Parent.DiolaugeBox local TextLabel = TextBox.TextLabel local TalkSound = GUI.TalkNoise -- make sure the Sound is called TalkNoise in the GUI local plr = game.Players.LocalPlayer local chr = plr.Character local hmd = chr.Humanoid local Dummy = workspace.Dummy -- put Dummy as any other npc or dummy local Prompt = Dummy.ProximityPrompt -- make sure the model has a proximity prompt local function WriteText(Text, WaitTime) hmd.WalkSpeed = 0 hmd.JumpPower = 0 GUI.Enabled = true TextBox.Visible = true TextLabel.Text = Text for i=1,#Text do TextLabel.Text = string.sub(Text, 1, i) TextLabel.TextColor3=Color3.fromRGB(255,255,255) -- color of text TalkSound:Play() task.wait(WaitTime) -- wait time has became the time it takes for each letter to appear end end local function EndDio() hmd.WalkSpeed = 16 hmd.JumpPower = 50 GUI.Enabled = false TextBox.Visible = false TextLabel.Text = "" end Prompt.Triggered:Connect(function() WriteText("Replace with your text", 0.05) wait(2) WriteText("Replace with your text", 0.05) wait(2) EndDio() end)
@RealLeXuS
@RealLeXuS Месяц назад
You saved my life
@Hayunxei
@Hayunxei Месяц назад
it doesnt work for me oh cmon :(
@Delicantt
@Delicantt Месяц назад
Guy, what to do if it says Jimmy is not a valid member of workspace, although he is there?
@RealLeXuS
@RealLeXuS Месяц назад
@@Delicantt Its saying this to me too but mean you're probaly talking abt that jimmy hes not in dialoguefolder.And yes it works for me.
@RealLeXuS
@RealLeXuS Месяц назад
@@Hayunxei Try to do the same thing in the vid.Also check if you you permission for the sound id that why that doesn't work
@watercoolerromance
@watercoolerromance Месяц назад
the interact button wont pop up for me
@egoistlik12
@egoistlik12 4 месяца назад
the second dialogue doesn't work at me i probably did something wrong but i dont think so "fredDialogue is not a valid member of Folder "Workspace.dialogueFolder"" i get this error but fredDialogue is a valid member of dialogueFolder i dont get why it doesn't work and when i try to do the second dialogue the first dialogue doesn't work anymore too think you can help me man?
@rkgam3zs
@rkgam3zs 4 месяца назад
try adding a waitforchild("fredDialogue") if everything is spelled correctly, since the script might be running before the game fully loads
@SplatBlox
@SplatBlox 4 месяца назад
I am going to use this thx
@s4nzsidhu289
@s4nzsidhu289 2 месяца назад
good video but idk why it’s not working for me
@chaytonaverygunawan3458
@chaytonaverygunawan3458 12 дней назад
WHAT IS HUMANOID????
@vNoahlol
@vNoahlol 5 месяцев назад
makin this dialogue for my game rn!!1!1
@zxck_ae
@zxck_ae 4 месяца назад
DUDE UR ALL OVER MY PAGE
@EliIsAClown
@EliIsAClown 3 месяца назад
THANK YOU THANK YOU THANK YOU THANK YOU
@miyaxma0087
@miyaxma0087 3 месяца назад
when u do make a p2 can u pls include how to change the audio for different npcs? 😭
@rkgam3zs
@rkgam3zs 3 месяца назад
yes! working on p2 right now!
@NotRikoNee
@NotRikoNee Месяц назад
writetext(text: *error-type*, appears after i try to edit out the text and waittime. I am a beginner and i followed every single steps but it's still not working properly.
@camooffical6232
@camooffical6232 2 месяца назад
the proximity thing wont work but the script is right
@AhmedFateh-d3e
@AhmedFateh-d3e 4 месяца назад
can u make Acid rainy weather (like the weather system u made in one of ur videos but damage the player ) and also make a script that when player holds an umbrella, the player will not take any damage from the acid rains I want it for my game pls
@rkgam3zs
@rkgam3zs 4 месяца назад
sure!
@GibDrut
@GibDrut 6 дней назад
Hey RKGAM3Zs can you tell me whats wrong? i dont want a sound but the script down below is what i put in please help me with this, Thank you! local gui = script.Parent local textBox = script.Parent.textBox local textLabel = script.Parent.textBox.TextLabel local function writeText(text, waitTime) gui.Enabled = true textBox.Visible = true textLabel.Text = text end task.wait(2) writeText("This used to be my favorite spot", 2) writeText("But ever since that thing happened", 2) writeText("Things havent been the same...", 4)
@rkgam3zs
@rkgam3zs 6 дней назад
you need to add task.wait(waitTime) below textLabel.Text = text inside of the writeText function
@GibDrut
@GibDrut 3 дня назад
@@rkgam3zs thank you
@vividly-_-qt622
@vividly-_-qt622 2 месяца назад
hey if you can read this i was wondering on how to make the dialogue sound come on for every letter pressed instead of one time for the entire sentence. is there a way to do that?
@user-fo8si1dy3w
@user-fo8si1dy3w Месяц назад
❤❤
@TheBonesCartel
@TheBonesCartel 13 дней назад
Could you write down the scirpt ?
@sedai4410
@sedai4410 4 месяца назад
Do you mind making a tutorial on something similar like this, but actual chat bubbles? Like, upon interaction, the NPC says something in a chat bubble (similar to our chat bubbles, not the one with a blue highlight)
@rkgam3zs
@rkgam3zs 4 месяца назад
Ofc!
@honoree185
@honoree185 3 месяца назад
​@@rkgam3zsSir this is work but the Npc dialogue can moved by player how to fix that?? I want the npc cant moved by player
@rkgam3zs
@rkgam3zs 3 месяца назад
@@honoree185 Could you elaborate friend, like the gui can be moved? or the prompt?
@honoree185
@honoree185 3 месяца назад
@@rkgam3zs prompt sir , It moved when I hit it.
@honoree185
@honoree185 3 месяца назад
@@rkgam3zs It moved when I hit it
@LunarSoul_
@LunarSoul_ 2 месяца назад
Whyy isn´t working I did everything correct.. Is the third vedeo I watch for this none works.
@Golden_king8183
@Golden_king8183 Месяц назад
It’s not working for me for some reson
@NikitosMatros
@NikitosMatros 3 месяца назад
Waiting for guide on how to make answer options 🙏
@rkgam3zs
@rkgam3zs 3 месяца назад
soon! B)
@inthevicinity
@inthevicinity 3 месяца назад
When joiniing the game through roblox, i can only interact with the button after i die, why is that?
@silly-goober12
@silly-goober12 4 месяца назад
didn't work I don't recommend
@rkgam3zs
@rkgam3zs 4 месяца назад
It does work, make sure you have no spelling errors!
@Rudy2Kropka0
@Rudy2Kropka0 4 месяца назад
Can you please do a tutorial on pathfinding?
@rkgam3zs
@rkgam3zs 4 месяца назад
Hell yeah!
@EpikTemple
@EpikTemple 4 месяца назад
Can you help me? i copied everything you scripted but when i copied the stuff in "Remove ability to move" timelapse it suddenly doenst work!!!!!!!!!!!!! (i haveno spelling mistakes!!!)
@BBX_Playz
@BBX_Playz 5 месяцев назад
Nice Video, But I'm to lazy to type the script lol
@MrXokiii
@MrXokiii 2 месяца назад
did everything right and doesnt work for some reason
@Ghoul_Game144
@Ghoul_Game144 2 месяца назад
good video just idk why the local script dont work
@GamingWithVictor_
@GamingWithVictor_ 3 месяца назад
it wont work for me from 11:00 onwards, i have checked multiple times and the script is all the same
@freekill737
@freekill737 2 месяца назад
can anyone tell me, i hold e for play dialogue but nothing happen. dialogue don't show. help me pls.
Далее
Can 6 DEVS Make a STORY Game Without Communicating?
15:32
How To EASILY Make Procedural Animations In Roblox
6:46
LOLLIPOP-SCHUTZ-GADGET 🍭 DAS BRAUCHST DU!
00:28
Просмотров 11 млн
Making a Main Menu Screen | Roblox Studio
3:15
Просмотров 6 тыс.
How to make Better Lighting in Roblox Studio
12:25
Просмотров 6 тыс.
Making A Roblox Game Trick The Players
35:06
How to make a npc dialogue - ROBLOX STUDIO
5:45
Просмотров 600 тыс.
Classic Roblox Games: How Are They Doing?
17:09
Просмотров 350 тыс.
BEST GUIDE to animating on Roblox for free! [Beginner]
7:36
12 Minutes of USELESS INFORMATION about ROBLOX
12:02
Просмотров 585 тыс.