Hi! Thanks for all the support lately, I hope you enjoy this meme! I'm planning on having a better upload schedule so if you want to support me you can join my Patreon! I also created a new discord server that you can join if you want to. discord.gg/65qfP7EY www.patreon.com/Mults Extra: I stole the thumbnail idea from this tweet: twitter.com/PolyMarsYT/status/1653036553483026434
@Uilyam719 Жыл бұрын
bro i have been in your discord server for like a month and a half and i just found your youtube channel.
@spinner44 Жыл бұрын
Hola bro he visto que eres español por pequeños detalles, me añades por discord ???
@TheRTX3090 Жыл бұрын
me when i open chatgpt: "hey chatgpt, tell the code of how to launch a rocket in unity" chatgpt: "As an AI, I can't assist with that"
@RoMaskGuy Жыл бұрын
me: hey chatgpt lunch a object into the air and rotate it to the near a set location at a set speed. then move the cube toward it and make it bigger. then add this sound "family sound". for unity chatgpt: ok me: make it go boom to. chatgpt: Certainly! To add an explosion effect to the scene, you can modify the CubeBehavior script to create an explosion when the cube reaches the target object. Here's how you can do it: **1. Modify CubeBehavior Script:** Update the CubeBehavior script to include an explosion effect when the cube reaches the target object. We'll use Unity's built-in Particle System to create the explosion effect. ```csharp using System.Collections; using UnityEngine; public class CubeBehavior : MonoBehaviour { public Transform targetObject; public float moveSpeed = 5f; public float scaleSpeed = 0.5f; public Vector3 finalScale = new Vector3(2f, 2f, 2f); public GameObject explosionPrefab; // Assign explosion particle system prefab private bool isMoving = false; private void Update() { if (!isMoving) { isMoving = true; StartCoroutine(MoveAndScale()); } } private IEnumerator MoveAndScale() { Vector3 initialScale = transform.localScale; float startTime = Time.time; while (Time.time - startTime < 1f) // Move and scale for 1 second { float t = (Time.time - startTime) / 1f; transform.position = Vector3.MoveTowards(transform.position, targetObject.position, moveSpeed * Time.deltaTime); transform.localScale = Vector3.Lerp(initialScale, finalScale, t); yield return null; } PlayFamilySound(); Explode(); // Call the explosion function Destroy(gameObject); } private void PlayFamilySound() { AudioSource audioSource = targetObject.GetComponent(); if (audioSource != null) { audioSource.Play(); } } private void Explode() { if (explosionPrefab != null) { Instantiate(explosionPrefab, transform.position, Quaternion.identity); } } } ``` **2. Create Explosion Particle System:** - In your Unity project, create a new empty GameObject called "ExplosionEffect." - Attach a Particle System component to the "ExplosionEffect" GameObject. - Customize the particle system settings to create the explosion effect you want. **3. Assign Explosion Prefab:** - Create a prefab of the "ExplosionEffect" GameObject. - Assign the explosion prefab to the "explosionPrefab" field in the CubeBehavior script in the Unity Inspector. **4. Play and Test:** - Press the play button in Unity to test the scene. - The object will launch into the air, rotate towards the target location, and the cube will move towards it, growing in size. When the cube reaches the target, an explosion effect will occur. Adjust the particle system settings and other parameters to achieve the desired explosion effect. This addition enhances the visual impact of your scene.
@marxy37dev Жыл бұрын
As a developer, you either make good code or have a life. You cannot have both, choose wisely :)
@polysteeler Жыл бұрын
i mean i have both but ok
@callmehugo3526 Жыл бұрын
@@polysteeler then your code is probably not that good.
@A120AMIR12 Жыл бұрын
@@callmehugo3526 no we spend a month for code you write in a week
@chuckdude514 Жыл бұрын
@@polysteelernormie trait
@randomperson5454 Жыл бұрын
@@polysteelerthat’s actual cope
@Spitfire720 Жыл бұрын
Damn they thought the future was now
@civetbutlemonbutmouse6087 Жыл бұрын
lmao i gave gpt 4 the task of creating a simple tcp server in c (which i have done many times before) and it made this disgusting code FILLED with buffer overflow potential, AND THE SERVERSIDE USED A DIFFERENT PORT THAN THE CLIENTSIDE i now rest assured my career wont be taken by chatgpt
@shauas4224 Жыл бұрын
OR, hear me out. Idiots who think gpt can do all the work for them will believe in that and after they done building the most spaghetti codebase ever, we get more jobs to refactor that. Easy gpt is on our side without understanding that
@ifeelsappy5343 Жыл бұрын
Doesn't GPT literally use the code that's available in the internet?
@civetbutlemonbutmouse6087 Жыл бұрын
@@ifeelsappy5343 It depends. I guess it might use code on the internet, but ChatGPT is basically really advanced spell-check. It makes a super educated guess about what the next word will be and then puts it there. This is the most likely reason why it's completely fine with making insecure code, as it doesn't think. It's not an AI, it can't think. So, it makes code, and doesn't really look back or 'think' about anything.
@candylide Жыл бұрын
He's f*cking around and oh boy is he about to find out
@koghs Жыл бұрын
What the hell, a fresh KZbin recommendation
@makra42069 Жыл бұрын
can we replace the CEO with Chat GPT instead?
@alphamineron Жыл бұрын
Exactly, given the volume of business study reports in the world on numerous companies, billions of scenarios and all the management books teaching all aspects of business management… replacing the CEO would be FARRRR more effective, profitable and accurate than the devs who actually have to problem solve, instead of just making “decisions on preferred opinions”
@yellowstarproductions67438 ай бұрын
No
@yellowstarproductions67438 ай бұрын
@@alphamineron Agreed
@shoutdaola44524 ай бұрын
@@alphamineronagreed
@zern7617 Жыл бұрын
as a software developer i can confirm that gpt-4 has done absolutely.... minimal stuff correctly. i only use it for tasks that are similar but take a lot of annoying code i dont wanna write
@semicolon.d Жыл бұрын
Ex boss asked me to localise our iOS app in like 30 languages, and I had ChatGPT do it for me. Pasted the en strings and asked it to generate strings files for all the other languages. To my surprise it actually did a decent job, at least for the few languages that I can read.
@DoctorWaffleDinosaur Жыл бұрын
I see kuroto dan in the thumbnail, i click
@jordicunillera55015 ай бұрын
As developer i can say that chatgpt it's grong 99% of the time, but at least half of the code works so you can use it as reference🤣
@dipereira0123 Жыл бұрын
People making fun of copying from ChatGPT, back in the days we also copied, but from StackOverflow 🤣🤣🤣
@Bamboodium Жыл бұрын
I went straight to reddit for this 💀
@animekocakgaleri Жыл бұрын
kuroto is "game developer" with god complex nice detail
@dennisgonzales9521 Жыл бұрын
sure, at best non coders might be able to do prompt engineering and develop an app cool. but goodluck on maintaining that especially with the bugs
@kazeyama6522 Жыл бұрын
bro got a huge of viewers but still have a very smol subscriber lol
@FloatingAmongTheCosmos2 ай бұрын
Love the use of Kuroto there lol
@DavidHong-nu8sp Жыл бұрын
Subscribers: Give an order to chat GPT to copy Mults and make infinite videos
@Rune3D Жыл бұрын
It's all fun and games until somebody blue-screens.
@lazoblazo Жыл бұрын
this was in my notifications. gotta say its kinsa funny lol
@maaz2004 Жыл бұрын
I copied pasted the original post into gpt-4 and it says op is the asshole lmao. Just one upped them using their own logic 😅
@quetzal81002 ай бұрын
Haruhi mentioned
@Dardasha_Studios Жыл бұрын
I have no added thoughts.
@ICE4B Жыл бұрын
Al oír el "conchetumare" me sentí perturbado y fui a revisar el país registrado del canal para darme cuenta que el canal es (aparentemente) chileno y sentirme más perturbado. P.D.: A todo esto, buenos memes.
@UltraElexiel Жыл бұрын
A fellow toku fan I see
@julianneEVdmca6 ай бұрын
it June25/2024 and i lose my job thanks to open-A.I . not just for dev's , they even kick out animators. also nobody here get 100k. wasnt even 10k, but thats was our job for 8 years. and now i cant even use unreal & etc cuz they think we may wanna make something better than that crapy deep-learning .. so we are ban on any 3d software too. should i work in a farm ? cuz there is no farm here on this fking city . there is no dev's and no human in game companies anymore. A second that shit learn your stuff = they kick you out. anyway thanks for the meme .
@sebasthianvasconcelos5121 Жыл бұрын
ajajajajaj buena edición
@ChefTortrdee Жыл бұрын
Metal gear rising >>>
@deux7353 Жыл бұрын
Imao I am not a dev but I know a little of Java myself and chatGPT is just wasting time ,I needed to do a Java program for the college and my friends and I were using chatGPT always making errors and just causing chaos . Just don't use it
@mani4929 Жыл бұрын
Bruh ngl but Chat GPT is dumb.
@deltamico8 ай бұрын
Devin incoming
@Broswald_Inc Жыл бұрын
lol
@y0shiking Жыл бұрын
Soy de chile
@mMykros Жыл бұрын
Lmao
@SushiGaming_YT11 ай бұрын
pretty sure chat gpt would be taking over developer's jobs , chat gpt could be used as a base and u just reedit the code to your liking, you have to be very specific with what you want though because chatgpt would only give 1 set of codes which isnt enough for example instead of saying give me a code so whenever "i press 1 i jump really high" , you have to say give me step by step tutorial on how my jump height increases when i press 2. something like that