How to Make Typewriter Text in Roblox Studio (Simple)

  Рет қаралды 8,873

RKGAM3ZS

RKGAM3ZS

Күн бұрын

Пікірлер: 79
@Hadaldev
@Hadaldev 5 ай бұрын
Truly just a man who knows a little things of a thang.
@DanyyyyyJPF
@DanyyyyyJPF 2 ай бұрын
Currency of Vietnam
@proudoyster778
@proudoyster778 5 ай бұрын
OOOOOOO You upload these videos when it’s night for me and I rlly appreciate it cuz I’m a night owl
@rkgam3zs
@rkgam3zs 5 ай бұрын
I'm glad to see you here!
@Rikarru
@Rikarru 5 ай бұрын
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.
@rkgam3zs
@rkgam3zs 5 ай бұрын
I'm so glad!
@Mind_Mania1
@Mind_Mania1 5 ай бұрын
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_BS
@Mirage_BS 5 ай бұрын
OMG!!!! I commented this I'm so happy you made this!!
@billy-st6qj
@billy-st6qj 4 ай бұрын
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
@rendomstuf4019
@rendomstuf4019 5 ай бұрын
Your voice is so calming w vid
@rkgam3zs
@rkgam3zs 5 ай бұрын
Thank you!!
@ghostforlifee
@ghostforlifee 7 күн бұрын
LOVE THIS TYSM !!!!!
@vNoahlol
@vNoahlol 5 ай бұрын
YUHHHHHH I NEEEDED THIS
@bryanLITTLEPLAYZ-mk6ie
@bryanLITTLEPLAYZ-mk6ie 5 ай бұрын
truly a masterpiece
@TheMemePandah
@TheMemePandah 12 күн бұрын
Great Tut! Was wondering how you connected this to an Interaction button?
@ThatOneDude484
@ThatOneDude484 5 ай бұрын
This is so cool thanks
@cooldudebro99
@cooldudebro99 5 ай бұрын
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-e6y
@Miguel-e6y 5 ай бұрын
Hey man thanks and good job!
@EdgefulVow
@EdgefulVow 5 ай бұрын
I just need this , Ty brother
@Fez-h8r
@Fez-h8r 5 ай бұрын
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
@rotary135
@rotary135 4 ай бұрын
You are saving my game rnn
@NikitosMatros
@NikitosMatros 5 ай бұрын
thank you brotha
@DomshereStudios
@DomshereStudios 5 ай бұрын
Saw the notification and went ooooooo
@Fred_rainbow
@Fred_rainbow 5 ай бұрын
FINNALY YES
@zorouhrblx
@zorouhrblx 5 ай бұрын
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)
@8tan200
@8tan200 5 ай бұрын
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
@naizo1189
@naizo1189 4 ай бұрын
This is my other favorite video on ytp
@8tan200
@8tan200 5 ай бұрын
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)
@rkgam3zs
@rkgam3zs 5 ай бұрын
You didn't ruin anything, this is really cool! Thanks for sharing:)
@Fred_rainbow
@Fred_rainbow 5 ай бұрын
YOUR THE BEST
@DripCheems
@DripCheems 5 ай бұрын
nice
@RaghunandD
@RaghunandD 5 ай бұрын
Please make a video about how to make a cutscene when a player first joins
@proudoyster778
@proudoyster778 5 ай бұрын
@@RaghunandD Search on his channel, there’s a video on it.
@NoahAlshammero
@NoahAlshammero 5 ай бұрын
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.
@LuxAlturn
@LuxAlturn 5 ай бұрын
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
@joca750
@joca750 5 ай бұрын
yess thak you bud
@joca750
@joca750 5 ай бұрын
But how do you put this function in an NPCs dialog?
@Scadower
@Scadower 5 ай бұрын
Great Vids Homie
@rkgam3zs
@rkgam3zs 5 ай бұрын
Thank you man!
@FlamTheory
@FlamTheory 5 ай бұрын
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!
@SCC20
@SCC20 5 ай бұрын
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?
@noobguy2754
@noobguy2754 5 ай бұрын
u saw my comment on last cutscene tutorial, didn’t you?
@Kyrnovice
@Kyrnovice 2 ай бұрын
The audio part won't work for me
@EdgefulVow
@EdgefulVow 5 ай бұрын
Hi where need I to change if I want to add this script to your early dialogue tutorial? Sorry for my zero scripting😢
@NoSoyDosis
@NoSoyDosis 4 ай бұрын
what if i wanted it to work when touching something?
@Kyevn
@Kyevn 5 ай бұрын
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.
@NoobyTheDev
@NoobyTheDev 5 ай бұрын
Yo dude how do I fix that whenever someone resets the text comes back up? It's happening for me
@dummy845
@dummy845 5 ай бұрын
in the gui(not text label) search for resetonspawn ?, if i remember right. Sorry if it wasn't right
@NoobyTheDev
@NoobyTheDev 5 ай бұрын
@@dummy845 will it stop showing up when someone resets?
@dummy845
@dummy845 5 ай бұрын
@@NoobyTheDev yup!
@zediezainmagtibay9814
@zediezainmagtibay9814 5 ай бұрын
Can you send the scrip?
@kkjkelias
@kkjkelias 5 ай бұрын
can we have a typewriter effect on cutscenes tutorial?
@rkgam3zs
@rkgam3zs 5 ай бұрын
yes
@kkjkelias
@kkjkelias 5 ай бұрын
@@rkgam3zs alr tyty
@megamannymann
@megamannymann 2 ай бұрын
I know I'm late but does this script work with the dialogue system you made?
@rkgam3zs
@rkgam3zs 2 ай бұрын
yep!
@megamannymann
@megamannymann 2 ай бұрын
@@rkgam3zs I was wondering because would I need to add another script or still use the dHandler script?
@rkgam3zs
@rkgam3zs 2 ай бұрын
@@megamannymann you can just add it to the writetext function inside the dHandler script!
@megamannymann
@megamannymann 2 ай бұрын
@@rkgam3zs Thank you!!!
@rkgam3zs
@rkgam3zs 2 ай бұрын
@@megamannymann of course :)
@The-Scary-Gamer
@The-Scary-Gamer 5 ай бұрын
How can I get a custom font?
@squadrel9479
@squadrel9479 5 ай бұрын
you're definitely a deepwoken player and can't convince me otherwise.
@rkgam3zs
@rkgam3zs 5 ай бұрын
ive never played deepwoken in my life
@squadrel9479
@squadrel9479 5 ай бұрын
@@rkgam3zs if thats really the case, then good for you
@rkgam3zs
@rkgam3zs 5 ай бұрын
@@squadrel9479 do you play deepwoken? 👀👀
@squadrel9479
@squadrel9479 5 ай бұрын
@@rkgam3zs unfortunately yes.
@Adam-cg4ju
@Adam-cg4ju 5 ай бұрын
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.😊
@rkgam3zs
@rkgam3zs 5 ай бұрын
thank you so much!! im really glad you enjoy my content :)
@icecold.07
@icecold.07 5 ай бұрын
Wondering if you're open for work.
@AksharTheMemer
@AksharTheMemer 5 ай бұрын
its not even working, i did nearly everything in the video (i think) and it still doesn't work
@rkgam3zs
@rkgam3zs 5 ай бұрын
are there any errors in the console?
@aouinai
@aouinai 11 күн бұрын
Doesn't work
@clownpieceenjoyer5439
@clownpieceenjoyer5439 2 ай бұрын
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)
@megamannymann
@megamannymann 2 ай бұрын
I've been having the same problem :/
How To Make NPCs Walk In Roblox Studio (Pathfinding)
9:11
RKGAM3ZS
Рет қаралды 1,5 М.
I Asked Roblox Billionaires How To Get Rich
41:51
CubeINC
Рет қаралды 3,2 МЛН
ВЛОГ ДИАНА В ТУРЦИИ
1:31:22
Lady Diana VLOG
Рет қаралды 1,2 МЛН
Война Семей - ВСЕ СЕРИИ, 1 сезон (серии 1-20)
7:40:31
Семейные Сериалы
Рет қаралды 1,6 МЛН
Ozoda - Alamlar (Official Video 2023)
6:22
Ozoda Official
Рет қаралды 10 МЛН
24 Часа в БОУЛИНГЕ !
27:03
A4
Рет қаралды 7 МЛН
Can I 100% Superliminal and Get a Refund?
23:36
Gronf
Рет қаралды 390 М.
Making a Main Menu Screen | Roblox Studio
3:15
Koaltreus
Рет қаралды 27 М.
How To EASILY Make Procedural Animations In Roblox
6:46
Roox4
Рет қаралды 129 М.
Making a Game About Weak Points
21:27
Emis
Рет қаралды 1 МЛН
How to Make A Cutscene With Dialogue in Roblox Studio
8:05
I Paid Devs on Fiverr to Make an Open World Game
8:33
Minimunch
Рет қаралды 508 М.
Can you make a VR game in Scratch? (devlog #1)
10:00
STEM MC
Рет қаралды 148 М.
I Made a Roblox Game in 24 Hours (UNCOPYLOCKED)
7:32
EliasGambit
Рет қаралды 30 М.
Nobody could find this ROBLOX badge. (until now)
13:05
Feodoric
Рет қаралды 773 М.
ВЛОГ ДИАНА В ТУРЦИИ
1:31:22
Lady Diana VLOG
Рет қаралды 1,2 МЛН