Randomize Anything in Roblox Studio
13:04
19 сағат бұрын
Unwelcoming Residents
1:04
3 ай бұрын
Пікірлер
@DinoGuy437
@DinoGuy437 5 сағат бұрын
suggestion: could you also add a skip button to the cutscene? so in case (this is an example) a player leaves the game, and rejoins, they dont have to watch the whole cutscene (if its long) agian?
@CoolRobloxian16
@CoolRobloxian16 8 сағат бұрын
Now I can create Guest the Robloxian CD :D
@KM_offyt
@KM_offyt 16 сағат бұрын
These videos have helped a lot! But question, from your previous video of Opening Cutscenes, how do we script for when we want another cutscene to play when we press the text button?
@a_magma_cube
@a_magma_cube 18 сағат бұрын
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!
@FizzonX
@FizzonX 18 сағат бұрын
pretty bad tutorial prob asking why? 1. There is too much to write and if i write something wrong it will destroy everything 😵‍💫 2. why didnt you put the entire script in the description/comments
@MonkeNation-wl6yy
@MonkeNation-wl6yy Күн бұрын
Can you make a tutorial that incorporates this into the npc dialogue system, thanks.
@DomshereStudios
@DomshereStudios Күн бұрын
Saw the notification and went ooooooo
@SCC20
@SCC20 Күн бұрын
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?
@Edit.Eclipses
@Edit.Eclipses Күн бұрын
How do you make this on client? it loads server with particles in while loop. it uses tween so you can't use that in client
@RandomKerbalizedGuy
@RandomKerbalizedGuy Күн бұрын
Question : How to add another camera to the cutscene ? It would be a really good tip !
@RandomKerbalizedGuy
@RandomKerbalizedGuy Күн бұрын
I found a simpler version : *local tweenService = game:GetService("TweenService") local camera = game.Workspace.Camera local camFolder = game.Workspace.cameras local part = game.Workspace.cameras.CutsceneStarter local player = game.Players.LocalPlayer local cameraCutscene = tweenService:Create(camera,TweenInfo.new(5),{CFrame = camFolder.Cam2.CFrame}) part.Touched:Connect(function(PartTouched) if PartTouched.Parent.Name == player.Name then camera.CameraType = Enum.CameraType.Scriptable camera.CFrame = camFolder.Cam1.CFrame cameraCutscene:Play() cameraCutscene.Completed:Wait() task.wait(2) camera.CameraType = Enum.CameraType.Custom end end)*
@Ztinker
@Ztinker 2 күн бұрын
how can i make it so that after the player chooses one of the options, the player will receive an item
@guyintheshadoes
@guyintheshadoes 2 күн бұрын
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 4 сағат бұрын
you're. a. genius.
@officalbaconhairgaming7337
@officalbaconhairgaming7337 4 сағат бұрын
I'm just a little confused on the humanoid problem.
@pondarobust
@pondarobust 2 күн бұрын
Can you make a character customization tutorial, pls. Everything youve done has helped me and Im only missing Character customization thanks I hope.
@EdgefulVow
@EdgefulVow 2 күн бұрын
Hi where need I to change if I want to add this script to your early dialogue tutorial? Sorry for my zero scripting😢
@EdgefulVow
@EdgefulVow 2 күн бұрын
I just need this , Ty brother
@earthly.alien.
@earthly.alien. 2 күн бұрын
my script isnt working, the proximity prompt simply doesnt show up. can someone tell me whats wrong with the script? im new to this. (BTW i excluded the dialogue sound and the part that prevents the player's movement) local gui = script.Parent local textBox = script.Parent.textBox local textLabel = script.Parent.textBox.TextLabel local dialogueFolder = game.Workspace.dialogueFolder local crocodileDialogue = dialogueFolder.crocodileDialogue.ProximityPrompt local catDialogue = dialogueFolder.catDialogue.ProximityPrompt local talking = false gui.Enabled = false textBox.Visible = false local function writeText(text,waitTime) gui.Enabled = true textBox.Visible = true textLabel.Text = text task.wait(waitTime) end task.wait(2) local function endDialogue() gui.Enabled = false textBox.Visible = false textLabel.Text = "" end crocodileDialogue.Triggered:Connect(function() if talking == false then talking = true crocodileDialogue.Enabled = false writeText("crocc",2) writeText("test",2) writeText("hai",4) endDialogue() crocodileDialogue.Enabled = true talking = false end end) catDialogue.Triggered:Connect(function() if talking == false then talking = true catDialogue.Enabled = false writeText("cat",2) writeText("test",2) writeText("hello",4) endDialogue() catDialogue.Enabled = true talking = false end end)
@watercoolerromance
@watercoolerromance 2 күн бұрын
the interact button wont pop up for me
@EdgefulVow
@EdgefulVow 2 күн бұрын
Great tutorial not gonna lie. But I have a problem how can I make the dialogue words typed one by one?
@rkgam3zs
@rkgam3zs 2 күн бұрын
my latest tutorial covers that! 😊
@EdgefulVow
@EdgefulVow 2 күн бұрын
@@rkgam3zs tysm!
@BobbyNicholls
@BobbyNicholls 3 күн бұрын
How to make it that it shows a play button and a shop button
@Delicantt
@Delicantt 3 күн бұрын
you are doing very cool tutorials, but for some reason i get the error "joeDialogue is not a valid member of Folder "Workspacr.dialogueFolder"" when can you help or at least just copy and drop the full script here?
@Lux_Moonix
@Lux_Moonix 3 күн бұрын
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
@Hayunx
@Hayunx 3 күн бұрын
it's not working
@classykitty1639
@classykitty1639 3 күн бұрын
man im stuck on the buy coin thing the coins just wont go down when i click it
@noobguy2754
@noobguy2754 3 күн бұрын
u saw my comment on last cutscene tutorial, didn’t you?
@manly.dude.with.life.w
@manly.dude.with.life.w 3 күн бұрын
What is the local script in the start
@TankTestingDevelopment
@TankTestingDevelopment 3 күн бұрын
W vid fr fr no cap
@Shrimpstetics
@Shrimpstetics 4 күн бұрын
bro its not making a script
@bryanLITTLEPLAYZ-mk6ie
@bryanLITTLEPLAYZ-mk6ie 4 күн бұрын
truly a masterpiece
@squadrel9479
@squadrel9479 4 күн бұрын
you're definitely a deepwoken player and can't convince me otherwise.
@rkgam3zs
@rkgam3zs 4 күн бұрын
ive never played deepwoken in my life
@squadrel9479
@squadrel9479 Күн бұрын
@@rkgam3zs if thats really the case, then good for you
@rkgam3zs
@rkgam3zs Күн бұрын
@@squadrel9479 do you play deepwoken? 👀👀
@squadrel9479
@squadrel9479 Күн бұрын
@@rkgam3zs unfortunately yes.
@Adam-cg4ju
@Adam-cg4ju 4 күн бұрын
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 4 күн бұрын
thank you so much!! im really glad you enjoy my content :)
@chip5403
@chip5403 4 күн бұрын
are you the demon that chases me into the bathroom at 2 am
@rkgam3zs
@rkgam3zs 4 күн бұрын
you won't get away next time.
@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.
@Abby.is.2.c0ol
@Abby.is.2.c0ol 5 күн бұрын
it didnt work for me
@TheLobbyCreator
@TheLobbyCreator 5 күн бұрын
if you could, it would be easier for newer players for you to copy the script part and put it in the disc
@Miguel-e6y
@Miguel-e6y 5 күн бұрын
Hey man keep it up and you will win!
@sexxxxxxxxxxxxxxxxxxxxxxxxxxxx
@sexxxxxxxxxxxxxxxxxxxxxxxxxxxx 5 күн бұрын
if you play on 4 fps it ll take 5 hours
@The-Scary-Gamer
@The-Scary-Gamer 5 күн бұрын
How can I get a custom font?
@TokyoNightGirl-fk4cn
@TokyoNightGirl-fk4cn 5 күн бұрын
💞Wow💕💛🤍💛💛
@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?
@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.
@rendomstuf4019
@rendomstuf4019 5 күн бұрын
Your voice is so calming w vid
@rkgam3zs
@rkgam3zs 5 күн бұрын
Thank you!!
@ThatOneDude484
@ThatOneDude484 5 күн бұрын
This is so cool thanks
@Valkicialthings
@Valkicialthings 6 күн бұрын
OMG!!!! I commented this I'm so happy you made this!!
@Fred_rainbow
@Fred_rainbow 6 күн бұрын
YOUR THE BEST
@Fred_rainbow
@Fred_rainbow 6 күн бұрын
FINNALY YES
@ravu._
@ravu._ 6 күн бұрын
GRAA
@user-mr2ih4nb1w
@user-mr2ih4nb1w 6 күн бұрын
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
@Golden_king8183
@Golden_king8183 6 күн бұрын
It’s not working for me for some reson