@@rkgam3zs the only thing is when i make my main menu, and try setting it up, and after i put he script in it doesnt work.. can u possibly help?, i cant find much videos about it
@@rkgam3zs I've been trying to do it with the help of a traditional character loader (with userID already assigned) but I have a visual bug with layered clothing in R15 that doesn't position itself where it should, it would be great if you can find a solution for that as well thanks btww
not sure how to word this, but im tryna make a multiplayer horror game, and need a way for the players to queue to join a game, kinda just click through main menu style thing? cant find any good tutorials on it. love the vids
Even tho I know how to do this and don't need a tutorial on it at all, the video is very informative and fun. You dont just do what the tutorial is about and skips over every detail, even the necessary ones (like most youtubers do), but actually explain everything and share some fun facts on the way. I like that, keep it up!
I JUST SPENT LIKE THREE HOURS MAKING THIS BUT TRYING TO MAKE IT FANCY AND MOVING IT DIDNT EVEN WORK BECAUSE I CANT USE CFRAMES AND YOU HAD TO UPLOAD WHILE I WAS FINALLY MAKING PROGRESS
Hey bro, great tutorials, keep it up. Could you give me some tips on where to start? I have experience with coding in Python and C++, and I find that Lua and Python are quite similar. However, I still feel like I'm missing something.
Yo, are you going to make a tutorial on how floating UI can be used for main menu's in games? I am trying to make one and I can't rlly find tutorials and I don't really rely on those "Free models" much so I would really appreciate it (I am subscribed)
Want to put this in a viewport frame to make a cool perspective healthbar and stamina but when i set the camera and put the part with the surface gui it doesnt show, why?
Hello so I need help with a part of the video where instead of the "Button" printing a text I wanted it to spawn the player and make him play Because am making an interactive main menu just like this one and so i made the button named it PlayButton and added a local script inside of it local cam = workspace.CurrentCamera local mouse = game:GetService("Players").LocalPlayer:GetMouse() --// Set cam repeat wait() cam.CameraType = Enum.CameraType.Scriptable until cam.CameraType == Enum.CameraType.Scriptable --// Move cam local maxTilt = 10 local camPart = workspace:WaitForChild("CameraPart") -- Wait for the CameraPart to appear in the workspace game:GetService("RunService").RenderStepped:Connect(function() cam.CFrame = camPart.CFrame * CFrame.Angles( math.rad((((mouse.Y - mouse.ViewSizeY / 2) / mouse.ViewSizeY)) * -maxTilt), math.rad((((mouse.X - mouse.ViewSizeX / 2) / mouse.ViewSizeX)) * -maxTilt), 0 ) end) script.Parent.PlayButton.MouseButton1Up:Connect(function() cam.CameraType = Enum.CameraType.Custom script.Parent:Destroy() end) and then when i start the game and try to click the button to spawn in it doesn't work and I have no idea on how to fix this also do you have a discord or know a place where I can also ask for help on this because this text is too long i know i just started out and am trying to figure out how to do this (again sorry for the long comment)
Hey um Iam working on a police game but I don’t kown what happened and everyone I load something from the creator store it has like white thick lines can anyone help me
hi dude im coming from your how to make an opening cutscene video you were not responding there so i wanted to try here can anyone help me please? my codes are the exact same but its spamming Expected ')' (to close'(' at line 15), got '0' error (so the tweeninfo line) i can understand the meaning of this error but i literally typed the exact same code please anyone help me it just made me so mad lol
idk but ur really good at explaining things, im a first time begginer on this world im making.. and tbh its looking great cuz of ur helpfull tutorials
im very honored!!! :) keep up the good work!
@@rkgam3zs the only thing is when i make my main menu, and try setting it up, and after i put he script in it doesnt work.. can u possibly help?, i cant find much videos about it
I'm making a menu like the one at 0:20 but I want the players character to be shown but without using the players themselves
ill get back to you on this one, theres two ways i know how to do that
@@rkgam3zs I've been trying to do it with the help of a traditional character loader (with userID already assigned) but I have a visual bug with layered clothing in R15 that doesn't position itself where it should, it would be great if you can find a solution for that as well
thanks btww
not sure how to word this, but im tryna make a multiplayer horror game, and need a way for the players to queue to join a game, kinda just click through main menu style thing? cant find any good tutorials on it. love the vids
It's funny you say that, ill be working on something like that very soon!
There really are no good queue system tutorials either, I see what you mean
how to make drake with a sword@@rkgam3zs
@@DripCheems what the hell
WILD@@DripCheems
Even tho I know how to do this and don't need a tutorial on it at all, the video is very informative and fun. You dont just do what the tutorial is about and skips over every detail, even the necessary ones (like most youtubers do), but actually explain everything and share some fun facts on the way. I like that, keep it up!
I'm so glad you enjoyed!!
I JUST SPENT LIKE THREE HOURS MAKING THIS BUT TRYING TO MAKE IT FANCY AND MOVING
IT DIDNT EVEN WORK BECAUSE I CANT USE CFRAMES
AND YOU HAD TO UPLOAD WHILE I WAS FINALLY MAKING PROGRESS
tysm for this, this helped out a lot. Great videos btw keep up the great work
AHHH THANK YOU FOR THIS😭🙏
Thanks man this has made my horror game much better😌😌
I finally know how countless world devs make the floating gui
Hey bro, great tutorials, keep it up.
Could you give me some tips on where to start? I have experience with coding in Python and C++, and I find that Lua and Python are quite similar.
However, I still feel like I'm missing something.
And u have a pleasant voice too
this guy casually solves all my problems
Can you make a tutorial to do that solo and multiplayer GUI? im making my first game and i loved the style you used, it fits my game's theme and genre
Yo, are you going to make a tutorial on how floating UI can be used for main menu's in games?
I am trying to make one and I can't rlly find tutorials and I don't really rely on those "Free models" much so I would really appreciate it
(I am subscribed)
best video in the world
at 0:52, i can't find the Adornee
maybe i'm doing something wrong, if anyone could explain that would be amazing 🙏
Want to put this in a viewport frame to make a cool perspective healthbar and stamina but when i set the camera and put the part with the surface gui it doesnt show, why?
Hello so I need help with a part of the video where instead of the "Button" printing a text I wanted it to spawn the player and make him play Because am making an interactive main menu just like this one and so i made the button named it PlayButton and added a local script inside of it
local cam = workspace.CurrentCamera
local mouse = game:GetService("Players").LocalPlayer:GetMouse()
--// Set cam
repeat
wait()
cam.CameraType = Enum.CameraType.Scriptable
until cam.CameraType == Enum.CameraType.Scriptable
--// Move cam
local maxTilt = 10
local camPart = workspace:WaitForChild("CameraPart") -- Wait for the CameraPart to appear in the workspace
game:GetService("RunService").RenderStepped:Connect(function()
cam.CFrame = camPart.CFrame * CFrame.Angles(
math.rad((((mouse.Y - mouse.ViewSizeY / 2) / mouse.ViewSizeY)) * -maxTilt),
math.rad((((mouse.X - mouse.ViewSizeX / 2) / mouse.ViewSizeX)) * -maxTilt),
0
)
end)
script.Parent.PlayButton.MouseButton1Up:Connect(function()
cam.CameraType = Enum.CameraType.Custom
script.Parent:Destroy()
end)
and then when i start the game and try to click the button to spawn in it doesn't work and I have no idea on how to fix this also do you have a discord or know a place where I can also ask for help on this because this text is too long i know i just started out and am trying to figure out how to do this (again sorry for the long comment)
ARAGGAGG THABK YOU FOR THIS
Yahoo ur back brother!!1!1!!1!!1!1!!!1!!1!!1!1!11!1
whaddup son!!!
How did you make it fade in slowly in your game and make the camera do that?
I need to make some cutscenes with voice lines for each character but i am struggling!
Hey um Iam working on a police game but I don’t kown what happened and everyone I load something from the creator store it has like white thick lines can anyone help me
hi dude im coming from your how to make an opening cutscene video
you were not responding there so i wanted to try here
can anyone help me please?
my codes are the exact same but its spamming
Expected ')' (to close'(' at line 15), got '0' error (so the tweeninfo line)
i can understand the meaning of this error but i literally typed the exact same code
please anyone help me it just made me so mad lol
ty
can you upload this project as a model?
can i have this model?
💞Wow💕💛🤍💛💛
Console thumbstick tutorial
W vid
W video
edit: am first
Edit:good for you?
w
GRAA
What is the what is going on with you 😭
brain eated
@@rkgam3zs testicular torsion
@@rkgam3zsunderstandable, have a good day.
you oddly look and sound like a deepwoken player
is that a good thing? 🤔 (ive never played deepwoken)