if im being honest this tutorial is a living nightmare to follow, theres sudden cuts, its literally a timelapse, nearly impossible to follow.
@Bread_Man_Official9 ай бұрын
agreed
@FruAnimates8 ай бұрын
Fr
@nicolaslikeswater7 ай бұрын
This is the only comment not hearted by the creator lol
@BluBerry37 ай бұрын
Don't forget the bad grammar, and annoying tts.
@djq40027 ай бұрын
its also not that flexible since everything is hard coded into one possible dialoge scenario.
@ACF_Real Жыл бұрын
As someone who can easily make their own dialogue gui, i'm actually really impressed by this, i usually use a bunch of text strings and use a script to play them out on the gui, keep it!
@MarcusJackerys4 ай бұрын
how It doesn't work for 2024
@Angremaan3 ай бұрын
@@MarcusJackerys works for me, nvm he cuts too much bro its impossible
@thouareweaklings Жыл бұрын
he was doing so much things so fast that i just gave up
@btdpuffer9 ай бұрын
There is something called pausing and rewinding
@Zenith1068 ай бұрын
@@btdpuffer There wouldn't be any need to pause or rewind if the video was simply easier to follow for people who struggle with the pacing.
@Olliemaxx15 ай бұрын
The only thing you can do then is to slow down the speed. click the settings button and then “Playback Speed” then play the video at .75x or .5x if you need to.
@theaviatorau7 ай бұрын
I love regular show
@ackton5 ай бұрын
took me 30 minutes cuz i kept having to pause the video, and then the tutorial didn't even work. WOOOO!!!!! thanks for wasting my time
@LyricalMiracle15 ай бұрын
samee, like the texts doesnt pop up and there's an error 😭 and the dialogue box shows up before i even press interact. imaaa dieeeee
@notmuichirotokito4 ай бұрын
@@LyricalMiracle1 me too
@fitelio53154 ай бұрын
Just learn how to script
@goptgod74 ай бұрын
maybe ur just shit
@RainbowTheDev4 ай бұрын
ture
@hinublox5602 Жыл бұрын
Me finishing the UI: Wow thats was so easy! When i found out the video was 9 minutes:😀
@MajesticUC Жыл бұрын
If you have any problems, JOIN THE DISCORD!!! I can help you there! 👍👍👍⚖ GUYS SUB IM SO CLOSE TO 1K!!!!
@boas7742 Жыл бұрын
You know who i am and i know where you live Quaver cop
@rnaodmsomething Жыл бұрын
Discord invite doesn't work
@Fade_NotFound895 Жыл бұрын
I can't join discord for personal reasons
@MajesticUC Жыл бұрын
@@Fade_NotFound895 parents wont let you?
@Fade_NotFound895 Жыл бұрын
@@MajesticUC in a way sure
@rglee311 Жыл бұрын
DialogueManeger: local Your NPC= workspace:WaitForChild("Your NPC") local dialogueMod = require(script:WaitForChild("Dialogue")) Shopkeeper.ProximityPrompt.Triggered:Connect(function( ) dialogueMod.Activate("Put What YOU Want Here", 0.3) end) Module Script: local ts = game:GetService("TweenService") local tweenInfo = TweenInfo.new(1, Enum.EasingStyle.Quad, Enum.EasingDirection.Out) local dialogueGui = script.Parent.Parent local dialogueFrame = dialogueGui.WaitForChild("DialogueBox") local dialogueText = dialoguebox:WaitForChild("Dialogue") local active = false local dialogue = { } local function openDialogue( ) dialoguebox.Size = UDim2.new(0,0,0,0) dialoguebox.Visable = true ts:Create(dialoguebox, tweenInfo {Size = UDim2.new(0,958,0,0,289,0)} ):Play( ) task.wait(1.3) end local function closeDialogue( ) ts:Create(dialoguebox, tweenInfo, {Size = UDim2.new(0,0,0,0)}):Play( ) task.wait(1) dialoguebox.Visable = false end local function writeText(text, interval) dialogueText.Text = " " for _, letter in pairs(string.split(text, "")) do dialogueText.Text ..= letter task.wait(interval) end task.wait(0.5) dialogueText.Text = " " end function dialogue.Activated(text, interval) openDialogue( ) if active then return end active = true writeText(text, interval) closeDialogue( ) active = false end return dialogue
@pixelss_stuff Жыл бұрын
w this guy
@Dexuid Жыл бұрын
module script ples
@rglee311 Жыл бұрын
@Yournormalhighschool189 ty
@AAquafox Жыл бұрын
this steel didn`t work in my project
@AAquafox Жыл бұрын
i have there red line under dialogueBox
@ZakaryProductions Жыл бұрын
This is really relevant to what I needed, thank you very much for this tutorial! You really helped me. Earned yourself a new subscriber.
@MajesticUC Жыл бұрын
Glad it helped!
@Etohl Жыл бұрын
Thank you so much bro! Also congrats on hitting 1k subscribers!
@FunnyCraftSheep Жыл бұрын
I have a small problem, the text box and frame gui are always on the screen, not only when the character speaks. It also only says "Label".
@Zenhd12 Жыл бұрын
try renaming things a bit
@vawlrbx Жыл бұрын
had the same problem, all you have to do is go to the dialogue box in workspace and make sure visible is not checked
@TheEpikStormIsComing Жыл бұрын
@@vawlrbxbut then when I try to talk, it doesn’t show up
@radiation2860 Жыл бұрын
@@TheEpikStormIsComing same
@ScriptingSolutions Жыл бұрын
@@TheEpikStormIsComing Did you fix this, having the same problem
@ThatOneBuilderDev_ Жыл бұрын
I needed this I am working on planning for a game and npcs rn but I had like a system before but it broke completely this will help alot
@MajesticUC Жыл бұрын
Cool
@Joe-in2tg Жыл бұрын
I guess im an og, i know one day you will blow up ❤❤❤🎉🎉🎉
@xBaconzG Жыл бұрын
Thank you! im planning to make a story game with my friends in the future, and this really helped!.
@camren_gamer Жыл бұрын
this actually helped me out, thanks!
@modestosapinit30996 ай бұрын
if you want the dialogue to loop after ending here. if dialogueMod.IsActive() then return end if talkCounter > #geraldDialogue then talkCounter = 1 end dialogueMod.Activated(geraldDialogue[talkCounter],0.05,gerald) talkCounter += 1 end)
@GoofyAhhWeeb Жыл бұрын
I did all the scripts correctly and replaced Gerald with my user but when I go into the game, the dialogue ui is already there (without text) and when I press e, nothing happens I doubled and triple checked all scripts and it’s correct and there are no red highlights so idk what’s going on
@GoofyAhhWeeb Жыл бұрын
The label is unfilled in so I’m not sure if that’s a problrm
@xeroz7431 Жыл бұрын
same idk why
@RAAAAAAAAAAAAAAAAAAAAAAAAAAA Жыл бұрын
SAME
@tareqjessescousin3774 Жыл бұрын
You have to uncheck the visible box in properties of the frame and text box and everything that appears on the screen more or less
@RealTacticalMax5 ай бұрын
Exact same problem you are not alone
@userxhajdhd72 Жыл бұрын
local ts = game:GetService("TweenService") local tweenInfo = TweenInfo.new(1, Enum.EasingStyle.Quad, Enum.EasingDirection.Out) local dialogueGui = script.Parent.Parent local dialoguebox = dialogueGui:WaitForChild("DialogueBox") local dialogueText = dialoguebox:WaitForChild("Dialogue") local active = false local dialogue = {} local function openDialogue() dialoguebox.Size = UDim2.new(0,0,0,0) dialoguebox.Visible = true ts:Create(dialoguebox, tweenInfo, {size = UDim2.new(0.958,0,0.289,0)}):Play() task.wait(1.3) end local function closeDialogue() ts:Create(dialoguebox, tweenInfo, {Size = UDim2.new(0,0,0,0)}):Play() task.wait(1) dialoguebox.Visible = false end local function writeText(text, interval) dialogueText.Text = "" for _, letter in pairs (string.split(text, "")) do dialogueText.Text ..= letter task.wait(interval) end task.wait(0.5) dialogueText.Text = "" end function dialogue.Activated(text, interval) if active then return end active = true openDialogue() writeText(text, interval) closeDialogue() active = false end return dialogue
@Kiana_slay Жыл бұрын
THANK YOU!!
@thequailchick2 Жыл бұрын
bro i needed this ty:)
@pablomarinho505611 ай бұрын
you are a hero
@bIued10 ай бұрын
TYYYYY
@ratman837 ай бұрын
thank you kind soul..
@ValgotVyash Жыл бұрын
Congrats on 3k!
@Duncan9910 Жыл бұрын
Thank you, I've needed this for so long
@ayselkaraca6410 Жыл бұрын
i can now add my talking npc to my game thanks
@dumbdumi Жыл бұрын
why are you so underrated, you literally make one of the best roblox devlog games and you make useful tutorials
@chooyeah Жыл бұрын
Keep up the good work bro! Your vids are high quality and you will become big one day 😍
@MajesticUC Жыл бұрын
I appreciate that!
@kboi6474 ай бұрын
"There, just remember what I said in slow motion" -GLaDOS Portal 2
@funnydogmeme24 күн бұрын
i love portal quotes
@gabrielmlhdf Жыл бұрын
Thanks I am trying to make my first roblox game ever! I really liked this simple tutorial thank you so much!!!!!
@L1llysN4tur36 ай бұрын
finally, one that isnt super long
@cca-gy2np Жыл бұрын
this is truly awsome!
@LordReaper2321 Жыл бұрын
yooo www majestic hit 1k subs
@DripCheems4 ай бұрын
i thank the comments for saving my time
@Le_goatz Жыл бұрын
heyya bro i love ur vids may i ask how do you learn to coding in roblox? ive been strunggling to make my dream game and i just watch ur tutorial to make my game but it isnt enough for me can you give me some tips or tell me how you learn to do some coding in roblox (i subed btw cuz u helped me so much)
@MajesticUC Жыл бұрын
Just code. If you’re new to scripting it is recommended you don’t start making your dream game. I learnt simply by making scripts for small projects. Eventually i started learning about things like modules scripts and watched yt tutorial and devforum posts to learn more! I wish you luck 😁
@Le_goatz Жыл бұрын
@@MajesticUC thx for the tips bro il become a great dev some day like you!!
@MrDucky39 Жыл бұрын
The code was a hard part, i would just follow along but i also wanna know what it does, great video but maybe next time it would be a whole lot better if you explained what each part of the code did, thanks!
@MisterBuilderBlox Жыл бұрын
subscribed XD
@TheRealBroFTW Жыл бұрын
this is perfect i making a demon slayer game thx so much
@MajesticUC Жыл бұрын
Np!
@Dhm_VR Жыл бұрын
The intro is my childhood
@JustGi3n Жыл бұрын
Omg thank you😊
@Just_jaklol Жыл бұрын
Great vid keep it up ❤ can u maybe do a tut on the inventory system for attacks like you did in your devlog?
@Outrun_Official Жыл бұрын
Yo I love your work and I got a question, on the first dev vlog you used moon animator to animate your actions. Could you make a tutorial on how to use moon animator like you did please?
@kyu91486 ай бұрын
bro got hearted with no response ☠
@NPSNEWSHD5 ай бұрын
@@kyu9148 keep in mind you are replying to a 1 year ago comment
@kyu91485 ай бұрын
@@NPSNEWSHD oh. But still, the youtuber noticed the comment but didn't answer the question lol.
@thayki62604 ай бұрын
i followed everything for it to not be what i was looking for...
@KingNooby Жыл бұрын
ALMOST 1K!!!!
@MajesticUC Жыл бұрын
YESSSS!!!!!!
@Sorey1_14 ай бұрын
There can be some mistakes and some errors but it still work like the video Dialogue Manager : local npc = workspace.Map.Npcs.rabdjhjk -- change to your npc location local dialogueMod = require(script:WaitForChild("Dialogue")) -- change to your screengui name local geraldDialogue = require(script:WaitForChild("rabdjhjkDialogue")) -- change to your dialogue module name local talkCounter = 1 npc.ProximityPrompt.Triggered:Connect(function() if talkCounter > #geraldDialogue or dialogueMod.IsActive() then return end dialogueMod.Activated(geraldDialogue[talkCounter], 0.3, npc) talkCounter+=1 end) Dialogue : local ts = game:GetService("TweenService") local tweenInfo = TweenInfo.new(1, Enum.EasingStyle.Quad, Enum.EasingDirection.Out) local dialogueGui = script.Parent.Parent local dialoguebox = dialogueGui:WaitForChild("DialogueBox") -- change to your frame name local dialogueText = dialoguebox:WaitForChild("Dialogue") -- change to your screengui name local vpfFrame = dialoguebox.Pfp.ViewportFrame -- Adjusted to refer to the correct path local pfp = dialoguebox:WaitForChild("Pfp") -- change to your pfp name local active = false local dialogue = {} local function openDialogue() dialoguebox.Size = UDim2.new(0, 0, 0, 0) dialoguebox.Visible = true ts:Create(dialoguebox, tweenInfo, {Size = UDim2.new(0.762, 0, 0.173, 0)}):Play() task.wait(1.3) end local function closeDialogue() ts:Create(dialoguebox, tweenInfo, {Size = UDim2.new(0, 0, 0, 0)}):Play() task.wait(1) dialoguebox.Visible = false end local function writeText(text, interval) dialogueText.Text = "" for _, letter in pairs(string.split(text, "")) do dialogueText.Text ..= letter task.wait(interval) end task.wait(0.5) dialogueText.Text = "" end local function addPfp(npc) local vpfCam = Instance.new("Camera", vpfFrame) vpfFrame.CurrentCamera = vpfCam local newNpc = npc:Clone() newNpc.Parent = vpfFrame.WorldModel newNpc.HumanoidRootPart.Anchored = true newNpc:PivotTo(CFrame.new(0, 0, 0)) vpfCam.CFrame = CFrame.new(newNpc.Head.Position + Vector3.new(0, 0, -2), newNpc.Head.Position) end local function closePfp() for _, v in pairs(vpfFrame.WorldModel:GetChildren()) do v:Destroy() end vpfFrame:FindFirstChild("Camera"):Destroy() end function dialogue.IsActive() return active end function dialogue.Activated(text, interval, npc) if active then return end active = true addPfp(npc) openDialogue() writeText(text, interval) closeDialogue() closePfp() active = false end return dialogue geraldDialogue : return { "Text", -- change "Text" to what you want the npc to say "TExt", -- change "Text" to what you want the npc to say "Text", -- change "Text" to what you want the npc to say }
@HusskyVEVO Жыл бұрын
Can you tell me what plugins you use, not just for this video, but for all in general. If there is too much, just list the best plugins.
@MajesticUC Жыл бұрын
Ros particle editor is quite good
@Not_ThatKidYT Жыл бұрын
Super helpful epic video EEEEEEEEEEEEEEEEEEEEEE congrats on 1k :) i bet you saw this comment
@Carlosave3 ай бұрын
i give up i cant with this being like 5x speed :/
@faxywastaken Жыл бұрын
didnt work but learned a bit more of coding so still thx
@Annihilate612 Жыл бұрын
the text to speech is so unbelievably ridiculusly devious and brain rotting
@Astrolightation Жыл бұрын
When i copying the code, i have this unknown global ( i think i meant the variable isn't exist? ), vpfFrame is not a unknown global in 5:48, you didn't show all the instructions.
@julingymer8969 Жыл бұрын
same problem
@Astrolightation Жыл бұрын
@@julingymer8969nvm i fixed it
@Nirowa_ Жыл бұрын
it didnt work for me, the dialogue box is showing after spawning, when i come up to the guy it doesnt even do anything
@tareqjessescousin3774 Жыл бұрын
The dialogue showing part i know how to fix it but the coming up the npc isn’t working for me either Go to the dialogue frame and anything that involved the thing that is visible go to it’s properties and make sure the visible setting is off
@Trashy_Zee8 ай бұрын
I'm having the same problem :[
@Louie568372 ай бұрын
I like how everyone in the comments are mixed up about the text not working. The reason it's doing that is because one of the part that says, local dialogueGui = script.Parent.Parent local dialogueBox = dialogueGui:WaitForChild("DialogueBox") local dialogueText = dialogueGui:WaitForChild("dialogue") is referring to something else. This system works, just gotta make your own. you should def learn some tweening I know I will.
@MonkDBL Жыл бұрын
It’s prob a good tutorial I just can’t even keep up with the first 10 seconds
@Flameypig Жыл бұрын
Same😂
@Master_rigtbow Жыл бұрын
12 More Subs TILL 1K 🎉🎉🎉
@MajesticUC Жыл бұрын
IK JAJAJAJAJJJAAJAJA
@StarCandy-jz4mp5 ай бұрын
IM LITTERLY JUST TRYING TO MAKE A STORY GAME AND I LITTERLY GAVE UP CAUSE YOU SPEEDED UP THE VID AND IT WAS SO HARD
@Down_Head4 ай бұрын
change play back speed on settings thats what I did because I got angry to but that fixed it! hope that helps lol
@StarCandy-jz4mp4 ай бұрын
@@Down_Head Thank you!
@Down_Head4 ай бұрын
@@StarCandy-jz4mp no thank you! for not giving up on what you were trying to do! hope whatever game your making goes great!
@Mason-ky1pd Жыл бұрын
Can you start making more easy development tutorials I'm a new Developer And you really help me out I'm a new sub
@BloxFootballRealm7 ай бұрын
my game has 10k visits tysm!
@MajesticUC7 ай бұрын
congrats!!!
@EggsPlayzz6 ай бұрын
Why is my proximity prompt not working :(
@RealTacticalMax5 ай бұрын
Same
@NPSNEWSHD5 ай бұрын
@@RealTacticalMax it worked for me but the script...
@skylar2778 Жыл бұрын
I've did exactly what was needed in the video but it wouldn't work and im confused. Can you help or tell me why this is happening?
@oogabungabanana10 ай бұрын
Any errors in the output?
@itsstar0010 ай бұрын
same here. i was looking for spelling mistakes in my script and i i didn’t find any. it still didn’t work :(
@kimberlysandoval68010 ай бұрын
I think it’s because either your proximity prompt or you did something like didn’t add a parenthesis or forgot an end or something like that. Also, you may have named something he named, but isn’t actually called that. You may want to double-check on those.
@lifesux19539 ай бұрын
Turn on 'output' in view and look for any squiggly lines
@Master_rigtbow Жыл бұрын
1K SUBS NICEEEEEEEE
@bigmanbimbus Жыл бұрын
a copy n paste with fill in the blank variables for names wouldve been nice but they say you learn better when writing something down, (or in this case typing) i guess. thanks nonetheless though. good tutorial
@MadOutGaming1 Жыл бұрын
I did all the scripting but when i play the dialogue box is still there
@deepuchandy7 ай бұрын
EXACTLY
@IKZombiee Жыл бұрын
the pfp doesnt pop up when the Dialogue box does
@MajesticUC Жыл бұрын
ok
@r1ce2 Жыл бұрын
great tutorial but how would you do this as a triggered thing, not needing the prompt interaction?
@Cat_22411 ай бұрын
Bro got regular show intro
@squaresquarestar2 ай бұрын
as a person with almost no scripting experience, im stuggling absolutely nothing is working
@-cloverz-7344 Жыл бұрын
Ngl man i wanna make the Gui you made for the Abilities, Its for my game
@ASillyDeveloper Жыл бұрын
When you made this tutorial You are like our lord and saviour to help Our roblox game with this 🙏
@imreallygoofy Жыл бұрын
wtf
@CodersMusicOfficial Жыл бұрын
bro 💀
@noyeah493Ай бұрын
Can you add like choices like the npc says "How are you?" And you can choose between "good" or "bad"
@vaxvea643 ай бұрын
how do i make it so i dont have to keep pressing talk and i can just have the first text appear, and then after its done typing the next one appears, and it keeps doing that until the table is done and then the box closes?
@Zionbedwars Жыл бұрын
thx i was wondering how to make a this in my game
@PAFarmer7 Жыл бұрын
Does anyone know what and how to fix this error code? “Attempt to concatenate nil with string
@Gachaluvz Жыл бұрын
tysm!
@NewtownGames Жыл бұрын
love it im a new game dec
@Meep09307 ай бұрын
It didn't work D:
@ChickenDoodleSoup-5 ай бұрын
It’s outdated
@GCRealism Жыл бұрын
it doesnt work for me as when i load in the dialogue box immediately appears i already looked through it again
@senyyah4 ай бұрын
8:35
@Adam814cool-retro Жыл бұрын
IF YOUR DIALOGUE BOX AINT WORKIGN THEN LISTEN UP GO TO UR DARN MANAGER THEN THIS SHOULD POP UP (minus the fill-in names) local (npctitlehere) = workspace:WaitForChild("npcnamehere") local dialogueMod = require(script:WaitForChild("Dialogue")) (npcnamehere).ProximityPrompt.Triggered:Connect(function() dialogueMod.Activate("Hello there!", 0.3) end) CHANGE THE "Activate" IN "dialogueMod.Activate("Hello there!", 0.3)" TO "Activated" DO IT
@branchfromwish Жыл бұрын
THANK YOU!!!!!!!!1
@Adam814cool-retro Жыл бұрын
no problem!!1 B)@@branchfromwish
@Kiana_slay Жыл бұрын
THE PROBLEM STILL STAYS
@Bruv777 Жыл бұрын
Can you make a guide on how to make idle animation for npcs
@MajesticUC Жыл бұрын
Its pretty simple. All you do is create an idle animation. At the start of the game, load the animation into a server script (or a local script if you want it to be smoother but then everyone will have to load the animation). THen make the npc play it
@Bruv777 Жыл бұрын
@@MajesticUC how do I make the npc play it?
@MajesticUC Жыл бұрын
local anim = root.to.animation local npc = root.to.npc local animator = npc.Humanoid.Animator local loadedAnim = animator:LoadAnimation(anim) loadedAnim:Play()
@Bruv777 Жыл бұрын
Thanks
@Abyssal24968 ай бұрын
at line 5 in the DialogueManager, it keeps failing because of the inactive function
@blacklight6657 Жыл бұрын
an idea for your game : a stick. thats it you hit people with it and it acts like a shotgun on the final hit
@Angremaan3 ай бұрын
Can you explain what you typed in "vpfFrame"? Is it just, local vpfFrame = pfp:WaitForChild("ViewportFrame") or what am i missing?
@imakesillyplaylists10 ай бұрын
Hello, everytime i try the dialogue it comes up with this error from the DialogueManager: Infinite yield possible on 'Players.*myname*.PlayerGui.Dialogue.DialogueManager:WaitForChild("Dialogue")
@yzn.a Жыл бұрын
TYSM
@Riv3rz Жыл бұрын
Dude, great tutorial, but I just used up 20 minutes of my life typing scripts. You GOTTA put the long ones in the description or something. PLEASE
@Mr.BananaDude3 ай бұрын
Regular show ahh intro
@hoshigamesofficial8 ай бұрын
❤thanks
@Meomaybe Жыл бұрын
I followed your tutorial but my dialogue still appeared before I interacted with the NPC 😭
@Meomaybe Жыл бұрын
thanks for the tutorial btw have a nice day (I turned off the visible then interacted with my NPC but not thing happened)
@MajesticUC Жыл бұрын
I havent watched the tut in a while. In the script, is it the screen gui being enabled or visibility of the box
@HollowedOutLikeAPumpkin6 ай бұрын
I followed this shit STEP BY STEP.. CHARACTER BY CHARACTER.. AND MANAGED TO GET THE GUI'S HIDDEN BUT THEN THEY NEVER FUCKING SHOWED UP WHEN INTERACTING WITH THE NPC
@thedeuce13745 ай бұрын
Im just tryna script a character called Boop :(
@DemonicAnims_ Жыл бұрын
Pls teach us how to make that menu on how to place attacks to the placeholders
@daze.e.cheese9 ай бұрын
it didn't work for me, but i think that your tutorial was very nice, mine might have failed because i'm not a coder and stuff.
@lla_playz1318 Жыл бұрын
I ACCIDENTLY LOST THE BAR THINGY TO THE LEFT SIDE AND IM SO CONFUSED..
@dash_hazex984 Жыл бұрын
Nice video, just next time please change the voice its driving me nuts!
@MnoobEd Жыл бұрын
NOO THANKS YOU WASTED MY 2 HOURS OF MY LIFE
@MajesticUC Жыл бұрын
No u wasted 2 hours of ur life following the tutorial wrong. Don’t take it out on me if it doesnt work for u. Also if u cant figure why it isnt working u should probably be watching roblox studio basics tutorials instead of watching something u don’t understand
@MnoobEd Жыл бұрын
@MajesticUC Last time I checked, I had Chat Gpt helping Bing Ai Google Watched 500 videos got no sleep 24/7 learning how to script I made a game in Unity scratch and roblox I was sweating Aight Give me back my time 🔛🔙
@MajesticUC8 ай бұрын
@sov.r598 my guy this was from 8 months ago. I can appreciate that you’re struggling but I dont even have the script 🤣. Tbh I agree with past me. If you don’t understand every line of code that you’re writing, how will you bug fix, how will you adapt the code to fit your game. You aren’t even trying. You just hope that you can copy a script and it will magically work in your game. Stop being childish and actually try to learn something rather than blinding copying tutorials. You have more scripting experience than me. At the time of posting this vid, i had just over 1yr of experience which proves that the method you are doing to learn how to code is heavily flawed. Please reconsider what you said and realise why copying code that you dont understand will not benefit you or your game.
@MajesticUC8 ай бұрын
@sov.r598 Who said its funny. I find it rlly annoying whenever I get hundreds of people like you who are too lazy to actually script it themselves and bug fix it themselves and instead, mindlessly copy what I write. There are people in this comment section who actually followed the tutorial and listened to what I wrote and understood what they were writing and guess what? It worked for them. Why don't you try that too? Maybe it'll work out.
@TZTZLTT_NUGGETlil Жыл бұрын
The Dialouge box still is visible when I'm testing my game
@MajesticUC Жыл бұрын
Set visible to false in the explorer
@Thecutekirby Жыл бұрын
@@MajesticUC where is that
@glitchagon09 Жыл бұрын
@@Thecutekirby in the properties(on the right side) where the size and all that is located, there is something in DialogueBox called Visible. just turn that to unchecked
@ayukee Жыл бұрын
yo @@glitchagon09 i disabled it but when i tried interacting to my npc there's nothing
@Cheeseboy034 Жыл бұрын
@@ayukee have u named ur module script to Dialogue?
@Domine16 Жыл бұрын
bro i got lost in the first 30 seconds
@ShirukTheWeird Жыл бұрын
I’ve done all it said in the video but I may have done a few grammar mistakes so it would be useful if you could make a pastbin or what it’s called with the code so I can check the grammar easier or copy it if it’s too hard
@GnarpEnthusiast Жыл бұрын
when I start the game, the screenGui is still on my screen and isn't hidden like yours? Please help when you get The time edit, also when i press E, the gui doesnt come up
@KevinBaltrusaitis7 ай бұрын
Yeah thats whats happeniing to me
@cheziscool1234 Жыл бұрын
Nevermind he said nintendo wii
@Medacek8 ай бұрын
the box doesn't dissapear when pressing play and it doesn't work
@matthewman13 ай бұрын
if you are getting this error "Players.YourUsername.PlayerGui.Dialogue.DialogueManager:5: attempt to call a nil value" make the "Activate" on line 5 of DialogueManager into "Activated"
@ItsZeroWow10 ай бұрын
what is that letter on 4:27 after the second .? the video is kinda pixelated so...yeah, idk what that is, either way, great tutorial!
@imakesillyplaylists10 ай бұрын
=
@lmixrl8982 Жыл бұрын
This was kinda fast and hard to follow along pls hellppp idk how to anchor maybe im jus dum 😂😂
@MajesticUC Жыл бұрын
if you don't know how to anchor a part then I think you should be trying to learn how to use roblox studio before making a game
@ChaoticallyBloxxing Жыл бұрын
a move idea for ur fighting game: Holy Javelin Desc: A Javelin from the heavens what it does: you thow the javelin at someone, it slows them for 3 seconds hope this helps. edit: It might be from item asylum but its different