- Видео 21
- Просмотров 256 862
MrModuleScript
США
Добавлен 19 июн 2021
A computer science graduate who loves Roblox Studio, AI, and module scripts.
I Made a "Hack-Proof" Player Character for Roblox
I've created a module script that makes player's character's network owner set to the server. The magic is how the module creates and manages two different characters: one that the server controls, and another for the client.
Channel Roblox Group: www.roblox.com/groups/4950857/MrModuleFans
Guilded Server Invite: www.guilded.gg/i/ENQXaRMp
Join this channel by becoming a Member to get access to perks:
ruclips.net/channel/UC-FXnaDOF0c8TmA7L8rBOcgjoin
Like if you like
Dislike if you dislike
Comment if you want to comment
Subscribe if you want to subscribe
And most importantly, script if you want to script :)
Channel Roblox Group: www.roblox.com/groups/4950857/MrModuleFans
Guilded Server Invite: www.guilded.gg/i/ENQXaRMp
Join this channel by becoming a Member to get access to perks:
ruclips.net/channel/UC-FXnaDOF0c8TmA7L8rBOcgjoin
Like if you like
Dislike if you dislike
Comment if you want to comment
Subscribe if you want to subscribe
And most importantly, script if you want to script :)
Просмотров: 424
Видео
Roblox Proximity Prompt Door Tutorial
Просмотров 6385 месяцев назад
This tutorial covers how to make a door that opens using a proximity prompt in Roblox studio. The proximity prompt can be activated by pressing E. Door model: create.roblox.com/store/asset/17601596762/Door Channel Roblox Group: www.roblox.com/groups/4950857/MrModuleFans Guilded Server Invite: www.guilded.gg/i/ENQXaRMp Join this channel by becoming a Member to get access to perks: ruclips.net/ch...
Roblox Admin Script Tutorial
Просмотров 1,9 тыс.5 месяцев назад
This video covers how to create an admin system for a Roblox game. This admin system will allow you to specify who should receive admin, and easily allow you to create your own custom commands. Roblox Group: www.roblox.com/groups/4950857/MrModuleFans Guilded Server Invite: www.guilded.gg/i/ENQXaRMp Join this channel by becoming a Member to get access to perks: ruclips.net/channel/UC-FXnaDOF0c8T...
Roblox Enemy NPC Tutorial - Part 5
Просмотров 2 тыс.5 месяцев назад
Want to make your own Enemy NPC in Roblox Studio? This multi-part tutorial will be showing you how to create an NPC that chases the nearest player, damages the player, and has animations, and respawn logic! Comments are welcomed! Finished Model Link: create.roblox.com/store/asset/17561681253/Enemy-NPC-Part-5 Check out my Roblox Game: www.roblox.com/games/16128019408/Good-Night-Sleep-Fright Like...
Good Night: Sleep Fright | Trailer
Просмотров 955 месяцев назад
Good Night: Sleep Fright is a short solo horror survival game on Roblox. Join here: www.roblox.com/games/16128019408/Good-Night-Sleep-Fright
Machine Learning in Roblox Studio - Part 1
Просмотров 2,4 тыс.10 месяцев назад
In this series I will be showing how to code neural networks in order to create AIs for your game! In This video I will be explaining the Perceptron - The simplest and smallest neural network you can make in Roblox Studio. You can find the place file here: www.roblox.com/games/15688347440/Pong-Machine-Learning-AI-Opponent The place is uncopylocked, so if you go to the page and hit the three dot...
Roblox Enemy NPC Tutorial - Part 4
Просмотров 13 тыс.Год назад
Want to make your own Enemy NPC in Roblox Studio? This multi-part tutorial will be showing you how to create a NPC that chases the nearest player, damages the player, and has animations, and respawn logic! Comments are welcomed! IMPORTANT: To edit the place from the link below in Roblox Studio, go to the place's page and hit the three dots on the top right corner of the page. An "Edit" option s...
How to Make a Roblox Obby From Scratch - Part 1
Просмотров 1,2 тыс.2 года назад
How to Make a Roblox Obby From Scratch - Part 1
How to Script a Color Changing Block in Roblox Studio
Просмотров 8 тыс.3 года назад
How to Script a Color Changing Block in Roblox Studio
hi
THANK YOU
liking and commenting so you earn some money
TYSM BRO
So underrated!
I found a bug that if you set the NPC speed to more than 20, as player run circle around it, the NPC will either jitter or completely stop. How can i fix that ?
I know this is an old video but how do I keep it from constantly changing colors with each step.
Im stuck on stage changing with respawn it dont update my stage and dont set respawn I tried everything pls help
Pls give me the Script
Could you use get decendents to find different humanoids/npcs in folders I was making a summon tool and parented the summon into a folder. When I made my average attack npc it didnt attack them, the follow script i use finds the nearest humanoid in the workspace. Still a little bit confused with getdecendents. But anyways thanks for the tutorial i really needed this
what if there are many players within target distance?
How do u make the NPC Track you down trough obstacles
I am having an error at the part saying, local root = humanoid.parent.primarypart , the error says, enemy controller:5: Primarypart is not a valid member of workspace "workspace" Can someone tell me how do i go about fixing this? I know this script is from 2 years ago so idk if something changed since then or if i did something wrong.
Looks like your humanoid variable might be incorrectly defined, or the NPC might be structured incorrectly. The humanoid's parent is supposed to be the NPC model, but in your case the humanoid's parent is the workspace. It could be the humanoid variable is not actually set to the humanoid, and rather it was set to the NPC model. Also make sure your NPC is a model. Hope this helps!
this isn't said in the tutorial but THIS DOES WORK WITH R6!!!
the best youtuber oat
I HAVE COMEBACK WITH ANOTHER ACCOUNT I AM CHEESEGOD BTW
ty bro, me and my friend needed the best tutorial on this :)
why does the enemy break when it has a fast walkspeed, i dont know how to quite explain it but it slows down and looks at the right or left side while twitching
Torso. Unanchored. HumanoidRootPart. Unanchored. Script. No errors. Still couldnt move. The only thing that was anchored was the Humanoid.
What if theres more output options?
Great question! It can work as long as the logic you want from the network is simple. Perceptions can only accurately learn from datasets that are linearly separable. It can be hard to determine if data is linearly separable since the data might be working in multiple dimensions (number of inputs) To add more outputs, you just have to create more output neurons and connect them the same way you do with the other output neurons. Then you usually look at which output neuron has the most activation (or value) after feeding it an input. I'll be releasing a video eventually on the process of making deep neural networks that will allow for more advanced learning from the neural network, which will cover the topic of multiple outputs.
@@mrmodulescript appreciated, il be waitin for that video, also if you dont mind me asking, why does the Cost in this video fulfilled no role into the calculations? also i would love to see a video about reinforcement learning too and how to reward them for fulfilling a desired final outcome
@@Veexas Another great question. A network trains by trying to reduce the cost of a training batch, and to do that a network looks at influence of changing its weights and the resulting change to the cost. To find this weight influence on the cost, we use what is called the chain rule that requires the derivative of the cost function rather than the cost itself. For a perceptron this is VERY simplified but for a multi-layer network the calculations require more work. The cost function itself is still helpful for approximating how well the network is trained and is sometimes used to stop training early when the network stops improving even after more training. (a time saver) However, a network can have a low cost on a training batch yet still be incorrect quite a bit. The cost simply reflects how close the network was to getting the expected answer, not if it actually returned the correct output. Reinforcement learning will come after learning how to make a multi layered neural network, since reinforcement learning networks (Q-Networks) use the same principles of multi layered neural network, but with a little extra logic included.
@@mrmodulescript i would love to watch your future videos concerning this matter applied to roblox studio
i'm good at making blender animations, i use a roblox plugin called blender animations, it's a plugin that imports animations from the blender app
I keep getting an error saying “Argument 2 missing or nil” what do I do and I rewrote the part of my script! Help!
Nvm if fixed it
everything works except when i go out of range of the npc, instead of going back to idle animation it keeps doing attack animation. (i turned animation loop off on the attack)
Thanks for the tutorials. I am creating a rpg game with my brother and sister, so this helps a lot with enemies and such. You just earned a sub.
he respawns and leaves his body behind and theres a invisible thing killing me?
Trying to follow this using an enemy model I brought in from Blender. I got it to work for the R15 model but when I try and change the wording based on the model I am using I am getting a ton of errors so thinking I'm changing it wrong. Any tips on doing this for an injected model? This is the current error I am getting and it seems to not like Vector3.new: Move is not a valid member of MeshPart "Workspace.Enemies.Candy_Land.Hot_Choc_Mob_1.Plate". Thank you in advance
How do I add more attack animations?
for some reason the enemy twitches?
yo can i please get the file my lazy ass wont do alldat
thank u for ur helpful tutorial , u just saved me hours of learning
MRRRRR MODULE
Hey when is the next video/stream and I’ll make sure to be there to comments and support you
Hellllllllooooooooo
your such a sigmoid
make one with that finding plz
--if you are reading this roblox studio NEEDS more antifurs
if you wanna skip the animating here it is the skipping: 19:00
is it possible to make the NPC move back to its original spot if no players are in range?
I can't figure out why my custom rig isn't working with the Script
so it is actually similiar to letting the server control the player, but it doesnt show the latency to the client, very cool + usefull + original, you are very succesfull at programming, but can you send the 2nd video of deep enforcement learning?
i really need part 2, i want to learn how to train it with lots of inputs and possible outputs.
how to do this with multiple datas and multiple data types, like postion of ai, position of player, hunger of ai, stamina of ai, and how to get multiple otuputs like, chase player, idle or go eat, run while doint it true/false
Hello! I have been watching your YT for a while and I like your content. Keep it up lad!
i keep having an issue with the movement for my npc, and it could be the fact that its a r6 rig but still it keeps stuttering as it walks back n forth, I would appreciate some help for it if possible
idk if its just me, but whenever my npc spawns in, he just breaks and his animation doesnt work at all, but when i put him back into the workspace he seems to do just fine, any help with that?
I was so happy when I saw the brick change lol, the start of my scripting journey hopefully!
@@carman5625 this was the first thing I learned to do when programming in Roblox Studio! It takes time and effort, but keep going and most importantly have fun! You'll be amazed at what you're capable of :)
@@mrmodulescript Thank you. What would you say is the best way to potentially learn how to script? I remember I heard that looking into the scripts of free models is good, but I wonder if there is any other potential ways as well.
i cant do it its to hard for me :(
W series man. If you can, it would be rad to make different targets for the npc. (Dummy attacks Dummy or Attacks Players on Different Teams).
What font do you use?
W