Truly just a man who knows a little things of a thang.
@DanyyyyyJPF2 ай бұрын
Currency of Vietnam
@proudoyster7785 ай бұрын
OOOOOOO You upload these videos when it’s night for me and I rlly appreciate it cuz I’m a night owl
@rkgam3zs5 ай бұрын
I'm glad to see you here!
@Rikarru5 ай бұрын
This is so freaking cool man! After 7 years of playing Roblox, I'm finally getting into Lua Coding and this is so freaking helpful man. Everything is super easy to understand.
@rkgam3zs5 ай бұрын
I'm so glad!
@Mind_Mania15 ай бұрын
Thank you so much, I've been trying to find a typewriter text that would work, this is a lifesaver! I also like how you didn't say "if you enjoyed the video, subscribe" you instead wished everyone a good day!
@Mirage_BS5 ай бұрын
OMG!!!! I commented this I'm so happy you made this!!
@billy-st6qj4 ай бұрын
thank you man, im makin a horror game with a few buddies (im still deciding on the whole horror part) and your really gettin me onto this coding stuff
@rendomstuf40195 ай бұрын
Your voice is so calming w vid
@rkgam3zs5 ай бұрын
Thank you!!
@ghostforlifee7 күн бұрын
LOVE THIS TYSM !!!!!
@vNoahlol5 ай бұрын
YUHHHHHH I NEEEDED THIS
@bryanLITTLEPLAYZ-mk6ie5 ай бұрын
truly a masterpiece
@TheMemePandah12 күн бұрын
Great Tut! Was wondering how you connected this to an Interaction button?
@ThatOneDude4845 ай бұрын
This is so cool thanks
@cooldudebro995 ай бұрын
ive been watching your tutorials non stop. you’re really inspiring me to make my first roblox game . can you make a tutorial on having a death screen. im making a game with multiple endings and stuff.
@Miguel-e6y5 ай бұрын
Hey man thanks and good job!
@EdgefulVow5 ай бұрын
I just need this , Ty brother
@Fez-h8r5 ай бұрын
Hey man I just started watching your tutorials and they're amazing I'm working on a horror game and i'd appreciate a tutorial on npcs that do action
@rotary1354 ай бұрын
You are saving my game rnn
@NikitosMatros5 ай бұрын
thank you brotha
@DomshereStudios5 ай бұрын
Saw the notification and went ooooooo
@Fred_rainbow5 ай бұрын
FINNALY YES
@zorouhrblx5 ай бұрын
Heres the script! local text = script.Parent.ScreenGui.TextLabel local talkSound = script.talkSound local function writeText(message, waitTime) text.Text = " " text.Visible = true for i = 1, #message, 1 do talkSound:Play() text.Text = string.sub(message,1,i) task.wait(waitTime) end end writeText("helloo",0.08)
@8tan2005 ай бұрын
i suggest you to more use string.split which is the same but easier to understand, and you can just do the seperator which will be an "" aka empty string
@naizo11894 ай бұрын
This is my other favorite video on ytp
@8tan2005 ай бұрын
here is a sample from the module i made with sounds too, sorry if i ruined the purpose of the video just wanted to show my method: function module:WriteText(LabelForText, Text: string,NextLetterDelay: number, NextLineDelay: number, StarterSound: Sound?, LetterSound: Sound?) LabelForText.Text = "" -- Start with a clean slate -- Play starter sound if provided if StarterSound then StarterSound:Play() StarterSound.TimePosition = 0 -- Reset position to ensure it plays from the start end for _, letters in pairs(string.split(Text, "")) do LabelForText.Text ..= letters if LetterSound then LetterSound:Play() LetterSound.TimePosition = 0 -- Reset sound position to ensure it plays each time end wait(NextLetterDelay) end wait(NextLineDelay) end example how to use: TextModule:WriteText(TextLabel, "Your Text", NextLetterDelay, NextLineDelay, StartSound, LetterSound)
@rkgam3zs5 ай бұрын
You didn't ruin anything, this is really cool! Thanks for sharing:)
@Fred_rainbow5 ай бұрын
YOUR THE BEST
@DripCheems5 ай бұрын
nice
@RaghunandD5 ай бұрын
Please make a video about how to make a cutscene when a player first joins
@proudoyster7785 ай бұрын
@@RaghunandD Search on his channel, there’s a video on it.
@NoahAlshammero5 ай бұрын
Hello, where did you learn to code in Luau? Most KZbin channels teach the basics like Booleans, data types, variables, etc. However, they often don't teach you how to actually utilize them.
@LuxAlturn5 ай бұрын
Hey, sorry to ask, but if you can, would you be able to do a video about how to make a save system to remember if a player has done certain things/events, if possible? I keep trying to look up how to do it in datastores, but all the videos seem to just be for tycoon type games, which isn't what I'm looking for. There's probably a video out there and I just haven't looked hard enough, but I thought that maybe I could ask people with actual knowledge of how to code, rather than struggle for hours trying to find a singular video
@joca7505 ай бұрын
yess thak you bud
@joca7505 ай бұрын
But how do you put this function in an NPCs dialog?
@Scadower5 ай бұрын
Great Vids Homie
@rkgam3zs5 ай бұрын
Thank you man!
@FlamTheory5 ай бұрын
Hello! If possible, I'd like to learn how to make your OWN character you play as say something. For example, if you're in a story game or something, and you're playing as a custom character, how could you force the player to say something, and it show up as bubble chat? Thanks!
@SCC205 ай бұрын
So in one if your tutorials (how to make a cutscene with dialogue) how do you make it so when you press a proximity prompt to play it?
@noobguy27545 ай бұрын
u saw my comment on last cutscene tutorial, didn’t you?
@Kyrnovice2 ай бұрын
The audio part won't work for me
@EdgefulVow5 ай бұрын
Hi where need I to change if I want to add this script to your early dialogue tutorial? Sorry for my zero scripting😢
@NoSoyDosis4 ай бұрын
what if i wanted it to work when touching something?
@Kyevn5 ай бұрын
How about trying to do a tutorial for a dealership system for cars. So lets say for example A-Chassis if the player buys the car they own it forever (obviously) But the system should automatically set the vehicle to be owned by the player who bought it And Cannot Be Stolen By Other Users.
@NoobyTheDev5 ай бұрын
Yo dude how do I fix that whenever someone resets the text comes back up? It's happening for me
@dummy8455 ай бұрын
in the gui(not text label) search for resetonspawn ?, if i remember right. Sorry if it wasn't right
@NoobyTheDev5 ай бұрын
@@dummy845 will it stop showing up when someone resets?
@dummy8455 ай бұрын
@@NoobyTheDev yup!
@zediezainmagtibay98145 ай бұрын
Can you send the scrip?
@kkjkelias5 ай бұрын
can we have a typewriter effect on cutscenes tutorial?
@rkgam3zs5 ай бұрын
yes
@kkjkelias5 ай бұрын
@@rkgam3zs alr tyty
@megamannymann2 ай бұрын
I know I'm late but does this script work with the dialogue system you made?
@rkgam3zs2 ай бұрын
yep!
@megamannymann2 ай бұрын
@@rkgam3zs I was wondering because would I need to add another script or still use the dHandler script?
@rkgam3zs2 ай бұрын
@@megamannymann you can just add it to the writetext function inside the dHandler script!
@megamannymann2 ай бұрын
@@rkgam3zs Thank you!!!
@rkgam3zs2 ай бұрын
@@megamannymann of course :)
@The-Scary-Gamer5 ай бұрын
How can I get a custom font?
@squadrel94795 ай бұрын
you're definitely a deepwoken player and can't convince me otherwise.
@rkgam3zs5 ай бұрын
ive never played deepwoken in my life
@squadrel94795 ай бұрын
@@rkgam3zs if thats really the case, then good for you
@rkgam3zs5 ай бұрын
@@squadrel9479 do you play deepwoken? 👀👀
@squadrel94795 ай бұрын
@@rkgam3zs unfortunately yes.
@Adam-cg4ju5 ай бұрын
that is amazing. this is one of the most fun to watch tutorial i ever watched and i learned a lot! (i mean not a lot but i learned something) i really like your way of explaining things.😊
@rkgam3zs5 ай бұрын
thank you so much!! im really glad you enjoy my content :)
@icecold.075 ай бұрын
Wondering if you're open for work.
@AksharTheMemer5 ай бұрын
its not even working, i did nearly everything in the video (i think) and it still doesn't work
@rkgam3zs5 ай бұрын
are there any errors in the console?
@aouinai11 күн бұрын
Doesn't work
@clownpieceenjoyer54392 ай бұрын
hi! i saw another comment from another person, but i figured i should ask. I am attempting to combine your simple npc system with the typewriter affect system; so far, I have managed to get both working but only in isolation. if i attempt to add the affect to the npc, they refuse to talk, but work perfectly the way that they were in your other tutorial. is there anything i might be doing wrong? i left the code that attempted to frankenstien them below ----- local gui = script.Parent local textBox = script.Parent.textBox local text = script.Parent.textBox.TextLabel local sound = script.Parent.Talksound local DiaHandler = game.Workspace.DiaHandler local shopdialouge = DiaHandler.shopdialouge.ProximityPrompt gui.Enabled = false textBox.Visible = false local function writeText(message,waitTime) gui.Enabled = true textBox.Visible = true text.Text = "" text.Visible = true for i = 1, #message, 1 do sound:Play() text.Text = string.sub(message,1,i) task.wait(waitTime) end local function endDialouge() gui.Enabled = false textBox.Visible = false text.Text = "" end shopdialouge.Triggered:Connect(function() writeText("i see no coins in your pocket", 2) writeText("come back when the dev figures out how to make shop stuff", 2) endDialouge() end)