Тёмный

How To MAKE a Pathfinding MONSTER In Roblox Studio! 

Rustysillyband
Подписаться 26 тыс.
Просмотров 23 тыс.
50% 1

Опубликовано:

 

5 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 187   
@Hello-ks6xd
@Hello-ks6xd 4 месяца назад
Finally a video not 4 years old 🙏😭 The script works well but my attack animation does not stop it continues without switching to the walk animation I would like to know how to fix it even tho it's not a big deal I can just do a jumpsare scene instead
@FungiGtagVR
@FungiGtagVR Месяц назад
OMG TYSM! I've been searching for an actual working pathfinding monster for months and i finally found yours! This really helped!
@rustysillyband
@rustysillyband Месяц назад
Have fun!
@MrTimbit.
@MrTimbit. Месяц назад
@@rustysillybandcan you help me please in my studio output it says: Workspace.rig.PathFindingScript:87: invalid argument #2 to ‘random’ (interval is empty)
@uz969
@uz969 4 месяца назад
thank you rustysillyband, this works really well and i couldn't have done this without your video
@RodsterInk
@RodsterInk 2 месяца назад
THE ONLY WORKING PATHFINDING I FOUND AND IT WAS EXPLAINED AMAZINGLY THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU (If you couldn't tell I'm quite thankfull for this)
@raygupRBLX
@raygupRBLX 3 месяца назад
Great tutorial! you are one of those devs that actually explain things unlike the scam devs that make you script for like 500 hours and then nothing works; New subscriber great channel. Like personally I'm a small roblox dev but these tutorials are very good.
@Xmultie
@Xmultie 2 месяца назад
I will sub on all 3 of my accounts if you paste the script
@davealdrindeloso2797
@davealdrindeloso2797 2 дня назад
The problem with this model I don't like Is that I like my horror game to have multiple monsters But when i saw Local function(Ondeath) My dreams we're crushed.
@ChatGris-vf1iu
@ChatGris-vf1iu 4 месяца назад
This helped me a LOT The monster chases the player perfectly! But for some reason ( idk why) it can't follow the waypoints.. It doesn't even do the first one. But overall, It's perfect! I'm going to find how to make the pathfinding work.
@KyraLovesCats384
@KyraLovesCats384 2 месяца назад
same, it doesn't want to follow the waypoints for some reason
@GingerSnaps73256
@GingerSnaps73256 27 дней назад
oh. my. god. THANK YOU SO MUCH OMG I ACTUALLY NEEDED THIS THANKS PLS KEEP IT UP
@Roaaadii
@Roaaadii 3 месяца назад
my rig doesnt do anything. It doesnt move, it doesnt attack or anything. why is that?
@LilFellas123
@LilFellas123 3 месяца назад
Did you unanchored every part of the model?
@wutsigma
@wutsigma Месяц назад
i dont know whats happening but when i did all the scripts and everything he wont move around at all he just stands there and wont even kill you
@GreenNeonRoblox
@GreenNeonRoblox Месяц назад
same
@burby2413
@burby2413 2 месяца назад
OMG FINALLY A TUTORIAL THAT WORKS I CANNOT EXPLAIN HOW GRATEFUL I AM!!!!!
@nickouofficial
@nickouofficial 5 месяцев назад
Script if you're too lazy to type it (not organized like in the vid): local Players = game:GetService("Players") local PathfindingService = game:GetService("PathfindingService") local rig = script.Parent local function checkForCharacter(character) local rayOrigin = rig:FindFirstChild("HumanoidRootPart").Position local rayDirection = (character.HumanoidRootPart.Position - rayOrigin).Unit * 40 local raycastResult = workspace:Raycast(rayOrigin, rayDirection, RaycastParams.new()) if raycastResult then local raycastInstance = raycastResult.Instance if raycastInstance:IsDescendantOf(character) then return true end else return false end end local function findNearestPlayer() local players = Players:GetPlayers() local nearestPlayer = nil local maxDistance = 40 for _, player in pairs(players) do if player.Character = nil then local targetCharacter = player.Character local distance = (rig.HumanoidRootPart.Position - targetCharacter.HumanoidRootPart.Position).Magnitude if distance < maxDistance and checkForCharacter(targetCharacter) then nearestPlayer = targetCharacter maxDistance = distance end end end return nearestPlayer end local function attack(character) local distance = (rig.HumanoidRootPart.Position - character.HumanoidRootPart.Position).Magnitude if distance > 5 then rig.Humanoid:MoveTo(character.HumanoidRootPart.Position) else character.Humanoid.Health = 0 end end local function calculatePath(destination) local agentParams = { ["AgentHeight"] = 5.5 ["AgentRadius"] = 4, ["AgentCanJump"] - false } local path - PathfindingService:CreatePath(agentParams) path:ComputeAsync(rig.HumanoidRootPart.Position, destination) return path end local function walkToDestination(destination) local path - calculatePath(destination) if path.Status == Enum.PathStatus.Success then for _, waypoint in pairs(path:GetWayPoints()) do local nearestPlayer = findNearestPlayer() if nearestPlayer then attack(nearestPlayer) break else rig.Humanoid.MoveTo(waypoint.Position) rig.Humanoid.MoveToFinished:Wait() end end else rig.Humanoid:MoveTo(destination - (rig.HumanoidRootPart.CFrame.LookVector * 10)) end end local function patrol() local waypoints = workspace.Waypoints:GetChildren() local randomNumber = math.random(1, #waypoints) walkToDestination(waypoints[randomNumber].Position) end while task.wait(0.3) do patrol() end
@hamstercult6599
@hamstercult6599 4 месяца назад
TYSMMMM
@Unc1e_Jeff
@Unc1e_Jeff 3 месяца назад
Bro saved me lol
@CoolManMMusic
@CoolManMMusic Месяц назад
[AgentRadius] has a red line through it
@MDFerdous-zv5yj
@MDFerdous-zv5yj Месяц назад
you messed up a couple of things but i fixed them
@realchillroblox79
@realchillroblox79 25 дней назад
thanks im very lazy
@allgusontop
@allgusontop 5 месяцев назад
From the BOTTOM of my heart, I LOVE YOU. I have searched for tutorials for a WHILE and none of them worked, but this worked. You don't know how much I genuienly love you bro. Really helpful that you explained this since I have a little bit of coding experience and therefore I made changes that suited my game, thanks for that too
@rustysillyband
@rustysillyband 5 месяцев назад
Thank you for your encouraging words! They mean a lot to me. I appreciate you taking the time to write this message and I hope the best for you in all future endeavors. Thanks again, have an amazing day!
@raygupRBLX
@raygupRBLX 3 месяца назад
I agree!
@Unc1e_Jeff
@Unc1e_Jeff 3 месяца назад
@@rustysillyband can add the script somewhere to copy
@foxyfriend45
@foxyfriend45 3 месяца назад
If there is anyone who is making a single-player horror game (like me) and already has the jump scared added (it's one of his other videos) And is rather annoyed about the walking animation needing to be shorter, or your NPC having a reaction of a brick. There is a simple solution, make a separate script, put a folder into the script and name it "Animations", put an Animation in the folder and name the animation "Walk", and put your ID into the animation. Put the following into the script; " local rig = script.Parent local animations = script.Animations local walkAnimation = rig.Humanoid.Animator:LoadAnimation(animations.Walk) walkAnimation:Play()" The jumpscare will still play as normally, your NPC walking animation can be longer than the patrol and won't break, you can have an attack animation but the player won't see it (most likely)
@indominusplays2850
@indominusplays2850 17 часов назад
Is there a way for you to make the monster switch animations? In the game im making I want the monster to start running when it locks on to you but theres no way to stop the other animation.
@everytime-v8g
@everytime-v8g 6 месяцев назад
W VID MPAN KEEP MAKING THOSE VIDS
@dominictube6199
@dominictube6199 5 месяцев назад
hey man! so i do have a few problems 1. even if the AI is faster then you, it will stop in little tiny intervals, causing it to not kill you even if you cant outrun it via walkspeed difference 2. i have barriers placed around the map, and if i am on the other side of the barrier the AI is, it will just walk to some other waypoint instead of continuing to chase me/going around the wall, i think this is generally because of how raycasting works
@AkimichNoName
@AkimichNoName 6 месяцев назад
Was thinking about it, thank you!
@storylynnegoss1565
@storylynnegoss1565 2 месяца назад
Thanks alot man I am making a game but the monster you made for thr kit was not to my liking so I took the script from this one and put it into my Monster so its extra scary so yeah preciate it man
@RendleWasTaken
@RendleWasTaken 6 месяцев назад
TYSM THIS HELPED ME ALOT!!!!😆
@Xmultie
@Xmultie 2 месяца назад
I will sub on all 3 of my accounts if you paste the script
@ReeseFitzgerald-l3e
@ReeseFitzgerald-l3e 6 месяцев назад
Is this series going to be a horror game like the asylum? or something else. If something else, please inform me on it
@rustysillyband
@rustysillyband 6 месяцев назад
Hi there! This series is simply covering every popular horror game mechanic so that you can create any horror game you would like. A few mechanics include: - Flashlight - Monsters - Jump scares - Objectives - Story - etc.. Thank you for watching, have an amazing day!
@vale4you
@vale4you 5 месяцев назад
@@rustysillyband Hey i have a problem. What if our model doesnt have Humanoidrootpart because we made it ourselves in blender?
@DragonKingGaming0
@DragonKingGaming0 5 месяцев назад
I'm having a slight issue, the monster is not chasing the player, is it because I have a custom player model for the game? It could also be because my monster is large, idk Edit: found the issue, the problem is that I can't fix it, the reason why it isnt working is because its root part is higher than the player meaning it doesn't see the player, my problem is that I can't make my monsters legs smaller, is there any other fix?
@rustysillyband
@rustysillyband 5 месяцев назад
You can try to increase the distance that it is able to attack from. Instead of doing 5, you can do 10. Other than that, you can move the RootPart down closer to his legs, but you will also have to edit the HipHeight in the Humanoid. Thanks for watching, have an amazing day!
@DragonKingGaming0
@DragonKingGaming0 5 месяцев назад
@@rustysillyband thank you so much, I'll try what I can do
@DragonKingGaming0
@DragonKingGaming0 5 месяцев назад
​@@rustysillybandI resulted in using a different model (just an r6 block model) and the game the monster is for is like a backrooms type game, the problem is that it refuses to walk if placed on a part or if the way points are behind a wall (it's able to go around the wall it just won't)
@amogusus911
@amogusus911 2 месяца назад
Thank you so much for this tutorial, it really helps for my horror game. Do you have another tutorial that can help add a jump scare if the player is touched by the rig? thank you
@Xmultie
@Xmultie 2 месяца назад
I will sub on all 3 of my accounts if you paste the script
@aykutdemirci3259
@aykutdemirci3259 3 месяца назад
can you please make another video about fixing the bug on your model? When the waypoints are behind a wall he just hugs the wall instead of going around it...
@Funkyroblox
@Funkyroblox 2 месяца назад
Please help me i downloaded it but it wont move
@ReeseFitzgerald-l3e
@ReeseFitzgerald-l3e 6 месяцев назад
Heyy Rusty! Its me again. I was working on my horror game with very little knowledge and I ran into an issue. I was wondering how to adjust the FirstPerson Script you made in your other video to make it where when GUI is visible it is unlocked, so that you can move your mouse around. Please let me know how to fix this!!
@rustysillyband
@rustysillyband 6 месяцев назад
Hi there! You can simply create a screenGui with a textButton inside of it. After that, simply set the size of the textButton to (0,0,0,0) and tick the Modal property to true. This will allow you to move your mouse around in first person. Thanks for watching, have an amazing day!
@dodcherbomb
@dodcherbomb 2 месяца назад
thank you bro so much i just got your pack and ive been trying SO MUCH videos ignore the people who told you that it does not work at all they didnt follow ur steps! ur amazing dude..
@EmotionalCabbage12
@EmotionalCabbage12 2 месяца назад
Tell me how you did it
@dodcherbomb
@dodcherbomb 2 месяца назад
@@EmotionalCabbage12 your prbly did one mistake you might have not put waypoint folder with the parts
@patrick9292
@patrick9292 5 дней назад
how do I make it so it will go through a set path instead of random?
@Flairex
@Flairex 4 месяца назад
Great vid! Im currentlt working on a smart AI which will chase the player until it can't see them anymore. If it can't see the player, it will continue in the direction the player went to try and gaun sight of them again. I'm having a lot of issue with the code but It's almost done I can feel it
@EmmaKohut-o5f
@EmmaKohut-o5f Месяц назад
This is perfect but my map has walls and my rig keeps running into them... Anyway i can stop that without having to change my whole map?
@vvg907
@vvg907 4 месяца назад
( i learning english, so sorry anything 😅) I've been looking at pathfinding for a long time and every script I went through I found an error in the output: Stack Begin - Studio 21:57:26.952 Script 'Workspace.HorrorMonster.PathfindingScript', Line 108 - function patrol - Studio - PathfindingScript:108 21:57:26.953 Script 'Workspace.HorrorMonster.PathfindingScript', Line 117 - Studio - PathfindingScript:117 21:57:26.953 Stack End - Studio Do you know how I can solve this?
@vvg907
@vvg907 4 месяца назад
and yes… i created a folder with parts and rename for Waypoints
@vvg907
@vvg907 4 месяца назад
I found this error, basically i not achored the waypoints, lol
@therandomapple7543
@therandomapple7543 3 месяца назад
This is a great tutorial!
@VenomousPegasus
@VenomousPegasus 6 месяцев назад
Can you please make a tutorial that’s pretty much opposite to this? One about a little creature that runs around randomly, and when a player gets close it runs away unless the player is crouched? Then if the player is crouched they can sneak up to it and pet it
@rustysillyband
@rustysillyband 6 месяцев назад
Interesting idea! Thanks for watching!
@Autricious
@Autricious 2 месяца назад
This guy puts out the best roblox studio tutorials.
@Xmultie
@Xmultie 2 месяца назад
I will sub on all 3 of my accounts if you paste the script
@Izon14n
@Izon14n 2 месяца назад
@@Xmultier u lazy? Just do it 😑
@Xmultie
@Xmultie 2 месяца назад
@@Izon14n I just paid somone 20$ to do it for me💀
@SuperEpicAnimation
@SuperEpicAnimation 3 месяца назад
this actully works, thank you
@MatiBugati
@MatiBugati Месяц назад
does not work anymore i think i tried everything but isnt working for me
@luigifernando_
@luigifernando_ 2 месяца назад
i did everything in the script but the npc doesn't follow the player, just goes to waypoints i tried using your model and that doesn't follow the player either
@Cautiye
@Cautiye 3 месяца назад
thanks for the tutorial, this was actually my first long script that actually worked, just one thing, my monster commonly gets stuck on walls after a couple of patrols, as he picks a waypoint on the other side of the map, is there a way to fix that?
@benjoyrhnw1679
@benjoyrhnw1679 6 месяцев назад
hi bro idk if ur going to read this but pls make me a horror looking thing in that game and send the link of body parts pls im sub
@rustysillyband
@rustysillyband 6 месяцев назад
Hi there! You can find the free model of the monster I used in the description of the video. Thank you so much for watching, have a blessed day!
@Nomi-i5w
@Nomi-i5w Месяц назад
Yo i followed the entire tutorial but my rig wont even move, could u please send the script?
@EzraGamez845
@EzraGamez845 4 месяца назад
Wait… what if I just tied a part from the waypoints to the player, make it invisible so there isn’t just a cube on top of the player, tie a part to the monster that does damage, and just make the monster go for the waypoint? (Btw I haven’t tried using this yet but I will next week so im not saying that it doesn’t work.)
@Masnyjezofficial
@Masnyjezofficial 4 месяца назад
Thx man i was working at my game with my friend , i can not make this .
@LionAir737RBLX
@LionAir737RBLX 5 месяцев назад
well it works, but it didn't go to the part it goes to the other Rig Model and if i delete the other rig model, the rig doesn't move
@britishmapping1759
@britishmapping1759 2 месяца назад
It mostly works but it completely ignores certian parts and tries to go through them, how do i fix it?
@twgusta1
@twgusta1 2 месяца назад
I love you❤
@vNoahlol
@vNoahlol 5 месяцев назад
When the Monster is chasing me, it’s moving but it’s stopping every second now can you fix this?
@Cxrulean
@Cxrulean 3 месяца назад
It wont chase the player :( Just follows the way points and moves sporadically
@InkVerseEdits
@InkVerseEdits 6 месяцев назад
i have a cool video idea : make it where the monster can't find someone if they are touching a specific part or hiding spot
@rustysillyband
@rustysillyband 6 месяцев назад
Great idea!
@EXTRAPEOPLE2477
@EXTRAPEOPLE2477 Месяц назад
i was playing with it and it keeps on going into random blocks do you know how to fix it
@MrStatic17
@MrStatic17 2 месяца назад
Mine doesn’t follow me it said magnitude is not valid member of vector3 Edit: fixed it but he isn’t able to kill me
@Chesie51
@Chesie51 2 месяца назад
Im having trouble with the animation not working
@RoboticsAstrolot
@RoboticsAstrolot 3 месяца назад
It helped me out a lot but it took almost 2 hours
@altaccount4710
@altaccount4710 Месяц назад
What if my dummy can't move how can I fix it 😢
@MadReis10
@MadReis10 3 месяца назад
It’s a good video works well but may you next time write the script in description because I hate writing
@porta1master096
@porta1master096 3 месяца назад
I have one question. who's better at pathfinding? Rusty or gnomecode
@rustysillyband
@rustysillyband 3 месяца назад
GnomeCode lol!
@Lonestar222
@Lonestar222 5 месяцев назад
Mine is not moving when I play it but is moving while I run it Any help?
@God_scarqqplayz7
@God_scarqqplayz7 3 месяца назад
how can you reset the position of the monster after you die???
@BluAppol
@BluAppol 2 месяца назад
rustysillyband i tried working it out but when i try the local functions wont get called why? please help
@MadReis10
@MadReis10 3 месяца назад
Hey I did every thing correct but it didn’t work I really need a monster for my game
@welovesverige
@welovesverige 3 месяца назад
I found this video... OMG!!!
@arin_aroaro_arin8142
@arin_aroaro_arin8142 3 месяца назад
when i add the rig it doesn't move. How can i fix this?
@huirzvgaming
@huirzvgaming 6 месяцев назад
love the effort!
@yassingamer1837
@yassingamer1837 3 месяца назад
my monster doesen't walk what should i do?
@InkVerseEdits
@InkVerseEdits 6 месяцев назад
as always good job
@sumitrawat9931
@sumitrawat9931 6 месяцев назад
it is not moving
@skorpion090
@skorpion090 5 месяцев назад
Is it anchored? If yes unachor it
@urfav_lilyxx
@urfav_lilyxx 5 месяцев назад
@@skorpion090if I unanchor it then it falls apart
@nacho_iscool3
@nacho_iscool3 4 месяца назад
Make sure it has an animation and unanchored
@Flairex
@Flairex 4 месяца назад
Little late here If you're unanchoring it and it falls apart, it's because it doesn't have any motor6ds. Likely your model isn't properly rigged
@urfav_lilyxx
@urfav_lilyxx 4 месяца назад
@@Flairex is there a way to get proper rigs ?
@leps6658
@leps6658 2 месяца назад
What if i used a mesh with a humanoid root part? Is that works?
@OfficialJello
@OfficialJello 6 месяцев назад
This is so helpful! Thanks!
@rustysillyband
@rustysillyband 6 месяцев назад
Thanks for watching, have a blessed day!
@Xmultie
@Xmultie 2 месяца назад
I will sub on all 3 of my accounts if you paste the script
@Brandonsletsplay
@Brandonsletsplay 2 месяца назад
For some reason the monster in my game just slides across the map and it doesn't go towards any of the waypoints and it doesn't chase or kill the player
@Mason-xd8ph
@Mason-xd8ph Месяц назад
lmao you ever get that fixed
@Brandonsletsplay
@Brandonsletsplay Месяц назад
No I ended up using another script
@Autricious
@Autricious 2 месяца назад
You just got a like from me 😊.
@CoOpLegends
@CoOpLegends 4 месяца назад
is there a way to make the speed of the monster faster? great vid btw
@rustysillyband
@rustysillyband 4 месяца назад
Yes there is! Try changing the walkspeed property inside of the humanoid that's inside of your monster. Thanks for watching, have an amazing day!
@CoOpLegends
@CoOpLegends 4 месяца назад
Thanks man
@Roblox_Bacon80
@Roblox_Bacon80 5 месяцев назад
Hey I didn’t see the parts in the waypoints folder
@Hnxzxvr
@Hnxzxvr 6 месяцев назад
I’m creepy panda but Ty but I don’t like path finding
@Windy021
@Windy021 Месяц назад
0:01 SHOOT AND EAT NOOBS REFRENCE????
@Cl0sL0v3lyCl0ver
@Cl0sL0v3lyCl0ver 2 месяца назад
thanks but pleas put the scripts in the desc or comments..
@AnakinSkywalker.Vader.
@AnakinSkywalker.Vader. 4 месяца назад
print("Thank you you're a G")
@slythegreaytyt7036
@slythegreaytyt7036 4 месяца назад
why my rig is not working? pls answer asap
@natgobrrOW
@natgobrrOW 5 месяцев назад
w tutorial, love it
@EmotionalCabbage12
@EmotionalCabbage12 2 месяца назад
This does not work at all i wasted my time doing this tell me what to do for this to work this disapoints me
@mrbirdy1195
@mrbirdy1195 Месяц назад
Yeah it does not work. I dont know why
@bh2b8121
@bh2b8121 5 месяцев назад
bro i upload the code from your free model to another fresh rig unchanged and he gives up while walking to one and goes to a different one an repeats
@rustysillyband
@rustysillyband 5 месяцев назад
Hi there! Did you make sure to create your animations for the rig?
@Somber-gv5ft
@Somber-gv5ft 4 месяца назад
The code doesn't work I tried to check for Errors and it looks the same as yours but the rig just stands there
@BrodyPlayzz
@BrodyPlayzz 3 месяца назад
Does it have a humanoid, a humanoidrootpart? Is it anchored?
@RoboticsAstrolot
@RoboticsAstrolot 3 месяца назад
Bro is just a hater
@Goofball760
@Goofball760 3 месяца назад
@@RoboticsAstrolotbro just cause it has an error does not mean he’s a hater 😭
@StBacon2
@StBacon2 2 месяца назад
Oh i forgot to anchor the humanoidrootpart
@YourLocalCheckMark_12334
@YourLocalCheckMark_12334 Месяц назад
Shut yo goofy mouth up he is an hater he's just lying or he typed it wrong ​@LbmrichOfficial
@hard_tacklecb3660
@hard_tacklecb3660 3 месяца назад
can yo add the script in comments pls cuz my script wont work for some reason
@jaeby77
@jaeby77 Месяц назад
your the BEST, my horror game is SO GOOD
@TheOfficialBobb
@TheOfficialBobb 4 месяца назад
HOW DO I CUSTOM THE MONTERS?
@Cl0sL0v3lyCl0ver
@Cl0sL0v3lyCl0ver 2 месяца назад
hes not moving :(
@bh2b8121
@bh2b8121 5 месяцев назад
nvm the free model does the same so its a problem with his code
@SFI1111
@SFI1111 2 месяца назад
for some reasons i have orange errors-
@blindeye1561
@blindeye1561 23 дня назад
I give up... i'm done chief... :(
@layeproductions
@layeproductions 4 месяца назад
7:17
@TheCharbhobGamer
@TheCharbhobGamer 5 дней назад
ty
@TensiveGeo
@TensiveGeo 2 месяца назад
mine didn't work
@everytime-v8g
@everytime-v8g 6 месяцев назад
how do you makea jumpscare??
@rustysillyband
@rustysillyband 6 месяцев назад
We will be covering that soon! Thank you for watching, have an amazing day!
@everytime-v8g
@everytime-v8g 6 месяцев назад
@@rustysillyband thnxx
@Funkyroblox
@Funkyroblox 2 месяца назад
It dont work on custom one
@TheSeaIsTreasure
@TheSeaIsTreasure 20 дней назад
i spent 30 minutes for it to not work...
@Babymoonleader
@Babymoonleader 5 месяцев назад
how do i add an idle anim to it
@AleyzRo
@AleyzRo 6 месяцев назад
nice
@SM-lk2nw
@SM-lk2nw 6 месяцев назад
Do you know bandi
@MrTimbit.
@MrTimbit. Месяц назад
Can someone help it says: Workspace.rig.PathFindingScript:87: invalid argument #2 to ‘random’ (interval is empty) pls help me
@f4irout_fan_olek
@f4irout_fan_olek 2 месяца назад
i scripted all this and i realize therenis a model
@jimnilssonekofilm
@jimnilssonekofilm 2 месяца назад
👍🏼
@golem5605
@golem5605 5 месяцев назад
Can you write down the script for me please I keep misplaying things
@golem5605
@golem5605 5 месяцев назад
Please bro I really want to make a horror game and I have been stuck on this for about 2 weeks and I can't code and I keep mixing up all of the code please it would mean the world to me
@rustysillyband
@rustysillyband 5 месяцев назад
Hi there! You can find the model with the script inside of it inside of the description. Thanks for watching, have a great day!
@golem5605
@golem5605 5 месяцев назад
@@rustysillyband oh ok thank you so much
@SpartanDuo67
@SpartanDuo67 4 месяца назад
Mine isnt doing anything