Du kannst nicht coden? Pech gehabt! | Luau Basics deutsch #2 Bedingungen

  Рет қаралды 27,499

Konnie

Konnie

Күн бұрын

Пікірлер: 105
@SchonKonnie
@SchonKonnie 6 ай бұрын
Wer von euch Roblox Studio von Grund auf lernen möchte, kann sich auch diese Playlist anschauen, darin wird auch all das was in der Coding Lernen Reihe besprochen wird, noch mal etwas ausführlicher erklärt: kzbin.info/aero/PLIUNQTfjXD2IA1DVfTmZL4oQLHh3pVp7A
@edgaradett
@edgaradett 7 ай бұрын
Ich finde alle Teile super ich mache immer weiter und bin voll dabei. Toll erklärt und motiviert! ❤Konnie
@eni_0506
@eni_0506 2 жыл бұрын
local Geld = 50 local Preis = 35 local Gekauft = false local Satz1 = "Du hast dir die Schuhe gekauft" local Satz2 = "Du besitzt nicht genügend Geld" if Geld >= Preis then print(Satz1) print(Geld, Gekauft) Geld = Geld - Preis Gekauft = true print(Geld, Gekauft) elseif Geld
@VacAndoYT
@VacAndoYT 6 ай бұрын
Du musst es so Machen: Ausgabe: 25
@VacAndoYT
@VacAndoYT 6 ай бұрын
sorry mein fehler hbáb nivh deien ganzen text gelesen
@davidgnx8604
@davidgnx8604 2 жыл бұрын
ich bin unter 12 Jahre alt und verstehe das alles und habe es ausprobiert klappt auch alles ich habe zum beispiel eine obby gebaut, dass wenn man weniger als(z.b.)100 Credits hat, dass man stirbt, wenn man durch das Tor am obbyanfang geht aber trotzdem mega cooles Video
@King_Sefty
@King_Sefty Жыл бұрын
if=if danke wusste ich noch nicht xD
@exsauron
@exsauron 2 жыл бұрын
Moin, sehr gute Anleitung (wenn man sich an das schnelle Reden gweöhnt hat) Ein Fehler ist drin: zum auskomentieren muss ich "STRG und #" drücken und nicht "SHIFT und #" ...o_o. Oder isses Einstellungsache?
@Dr_Safto
@Dr_Safto 8 ай бұрын
local geld = 100 local preis = 25 local gekauft = false local satz1 = "You dont have enough Money" local satz2 = "You bought it!" if geld >= preis then local geld = geld - preis local gekauft = true print (geld, gekauft, satz2) else print(satz1) end Sehr gutes tutorial :D
@SchonKonnie
@SchonKonnie 8 ай бұрын
sehr gute Lösung
@indieolga
@indieolga Жыл бұрын
konntest du auch mal eine vs code tutorial machen und welche extensions nutzt du wenn ich fragen darf?
@lp-trainfan
@lp-trainfan 2 жыл бұрын
Das hilfz mir sehr weil ich aktuell an einem kernkraftwerk game dran bin
@aaron_839
@aaron_839 2 жыл бұрын
Du bist der beste
@DailyZo
@DailyZo 2 жыл бұрын
local Satz1 = "Du hast dir das Item gekauft" local Satz2 = "Du hast leider nicht genügend Geld für das Item" local Preis = 10 local Money = 15 local Gekauft = false if Money >= Preis then print(Satz1) Money=Money-Preis Gekauft = true print(Money,Gekauft) elseif Preis >= Money then print(Satz2) Gekauft = false print(Gekauft) end So gab ich es gemacht
@IHateTomatoes1andYou
@IHateTomatoes1andYou Жыл бұрын
du hast es über kompliziert gemacht du brauchst nur 2 variablen...
@IHateTomatoes1andYou
@IHateTomatoes1andYou 9 ай бұрын
@SpionLennart mein tipp, lern erst mal python denn dss ist einfacher und damm lern luau dann wirds dir einfacher fallen
@robloxlars1559
@robloxlars1559 3 жыл бұрын
bei mir klappt das mit dem if else und end nicht ich wollte einen rechner eigentlich programmieren
@ifoy2550
@ifoy2550 2 жыл бұрын
Das ist so schade er macht sich die Mühe und erklärt und wie man Programmiert und das Video hat nur 18 likes Digga warummm???????
@ifoy2550
@ifoy2550 2 жыл бұрын
*81
@Skibidy_rizzler_
@Skibidy_rizzler_ Жыл бұрын
local bargeld = 8 local preis = 5_000 if bargeld >= preis then print(bargeld - preis) else print("bist arm") end ist doch gut oder
@shine-shorts
@shine-shorts Жыл бұрын
Ich kann jetzt coden😎
@SchonKonnie
@SchonKonnie Жыл бұрын
Ich leider nicht mehr
@petroschick1623
@petroschick1623 Жыл бұрын
@@SchonKonnie wieso??????
@lynxoljos1784
@lynxoljos1784 2 жыл бұрын
IF ist das Englische Wort von IF😂😂😂 wie geil
@chocolate_700
@chocolate_700 Жыл бұрын
IF ist nicht die deutsche Sprache.
@f_cfox
@f_cfox 6 ай бұрын
@chocolate_700 dumm?
@fawadqureishi8680
@fawadqureishi8680 2 жыл бұрын
Konnie ist es gut wenn man mit mimo lernt ? Eine antwort wäre wirklich super
@VacAndoYT
@VacAndoYT 6 ай бұрын
👌
@mia.says_slay8317
@mia.says_slay8317 2 жыл бұрын
so war meins es hat auch funktioniert dank der Kommentare weil ich hatte davor ein paar Probleme = local Geld = 5000 local Preis = 3500 local Gekauft = False local Satz1 = "Du hast dir die schuhe Erfolgreich Gekauft" local Satz2 = "Du besitzt leider zu wenig Geld" if Geld >= Preis then print (Satz1) elseif Geld
@relox2034
@relox2034 Жыл бұрын
Kein abstand bei "print" du hast geschrieben print (Satz1) oder print (Satz") du darfst keine leerzeichen machen sonst funktioniert der script da nicht also immer print(Satz1) oder print(Satz2) Hier der richtige script: local Geld = 5000 local Preis = 3500 local Gekauft = false local Satz1 = "Du hast dir die schuhe Erfolgreich Gekauft" local Satz2 = "Du besitzt leider zu wenig Geld" if Geld >= Preis then print(Satz1) elseif Geld
@Greenscreen564
@Greenscreen564 Жыл бұрын
ich habe es so gemacht: --schwert-shop-- local Geld = 100 local preis = 95 if Geld = preis then print("Danke für den einkauf! ") local Geld = Geld - preis print("Du hast noch "..Geld.." Euro Verbleibend") else print("du hast leider nicht genug geld!") end
@Lxdf5688
@Lxdf5688 2 жыл бұрын
local Username = "Hoppel" local Passwort = "Passwort" if Username == "Hoppel" and Passwort == "Passwort" then print("Hallo "..Username..", du hast dich erfolgreich angemeldet") else print("Dein Passwort oder Username ist leider falsch") end Ist das so richtig? Eine Antwort wäre super
@SchonKonnie
@SchonKonnie 2 жыл бұрын
Jo
@Lxdf5688
@Lxdf5688 2 жыл бұрын
@@SchonKonnie Danke
@unknown44444-t
@unknown44444-t 2 жыл бұрын
wie führst du den ganzen Code bei vsc aus
@SchonKonnie
@SchonKonnie 2 жыл бұрын
Roblox Luau in vscode und Windows ausführen | Quick Tutorial kzbin.info3w84ltN3SxA?feature=share
@TypKris
@TypKris 2 жыл бұрын
18:56 (ctrl + #) nicht (shift + #) also bei mir ist es so.
@fawadqureishi8680
@fawadqureishi8680 2 жыл бұрын
local Geld = 1000 local preis = 900 if Geld >= preis then print ("Du hast es gekauft") else print ("Du hast nicht genug Geld!") end Ist dass so richtig konnie??
@SchonKonnie
@SchonKonnie 2 жыл бұрын
jo
@hadihussin942
@hadihussin942 2 жыл бұрын
local swordObtained = false local playerMoney = 1000 local swordPrice = 1500 if plyerMoney => swordPrice then then swordObtained = true and print( thank you for your purchase ) else print( not enough money... purchase rejected!!! ) richtig?
@SchonKonnie
@SchonKonnie 2 жыл бұрын
eher so: local swordObtained = false local playerMoney = 1000 local swordPrice = 1500 if playerMoney => swordPrice then swordObtained = true playerMoney = playerMoney - swordPrice print("thank you for your purchase") else print("not enough money... purchase rejected!!! ") end
@alexander3683
@alexander3683 2 жыл бұрын
local geld = 100 local preis = 20 local sword = false if preis
@SchonKonnie
@SchonKonnie 2 жыл бұрын
Wenn du 2 Strings mit .. zusammenfügst, solltest du immer dran denken, ein Leerzeichen vor dem ".. zu setzen, sonst passt das.
@ΝικοςΡατσκα-γ9κ
@ΝικοςΡατσκα-γ9κ 2 жыл бұрын
Ich hab ein broblem :( ich will erst mal auf handy lehrnen aber diese Demo luau seite funkzunirt nicht also ich schreibe local und dan = 100 und das geht nicht sry für schreib fehler
@SchonKonnie
@SchonKonnie 2 жыл бұрын
Die Demo zeigt dir im Output unten, was der Fehler war. Wenn nicht, dann funktioniert es wahrscheinlich nicht mit deinem Browser
@ΝικοςΡατσκα-γ9κ
@ΝικοςΡατσκα-γ9κ 2 жыл бұрын
@@SchonKonnie ok danke
@f_cfox
@f_cfox 6 ай бұрын
Geh in die Schule bro
@thewildwestgamer5733
@thewildwestgamer5733 2 жыл бұрын
Bei mir funktioniert es nicht ich habe geschrieben: local Geld = 15 local Preis = 14 if Geld>=Preis then print(Einkauf erfolgreich) else print(Du hast zu wenig Geld) end
@SchonKonnie
@SchonKonnie 2 жыл бұрын
Dann musst du wohl nochmal Part 1 schauen
@thewildwestgamer5733
@thewildwestgamer5733 2 жыл бұрын
@@SchonKonnie mache ich.
@BastiGerman
@BastiGerman Жыл бұрын
Local money = 500 Local preis = 100 Local gekauft = false Local satz1 = "Du hast dieses item gekauft" Local satz2 = "nicht genügend geld!" If money >= Preis then print (satz1) Money = Money - preis Gekauft = true If money
@notpixel_at
@notpixel_at 2 жыл бұрын
local Geld = 1000 local Preis = 800 local Gekauft = false print(Geld, Preis) if Geld = Preis then local Gekauft = true local Geld = Geld - Preis print("Du hast erfolgreich das ding gekauft für "..Preis.."€ gekauft! Du hast noch "..Geld.."€ übrig.") end hab ich die hausübung richtig gemacht?
@SchonKonnie
@SchonKonnie 2 жыл бұрын
Du kannst das = bei der ersten if Abfrage weglassen, weil es ja reicht, wenn du genau so viel Geld hast, wie es kostet.
@thaakeno5187
@thaakeno5187 2 жыл бұрын
local money = 200 local price = 40 local bought = false if price
@PhantomHD4
@PhantomHD4 8 ай бұрын
print (Satz2) if Geld >=Preis then print (Satz1) print (Geld, Gekauft) Geld = Geld - Preis Gekauft = true print(Geld, Gekauft) elseif Geld
@fabif.3089
@fabif.3089 3 жыл бұрын
Bei mir funktioniert das mit dem scope nicht. ich habe alles genau so hin geschrieben wie im Video. Ich habe es bei Demo luau gemacht bitte helfen
@SchonKonnie
@SchonKonnie 3 жыл бұрын
Was genau hast du denn geschrieben?
@fabif.3089
@fabif.3089 3 жыл бұрын
@@SchonKonnie local bedingung = false Local zahl1 = 5 Local zahl2 = 9 If zahl1
@fabif.3089
@fabif.3089 3 жыл бұрын
If zahl1
@fabif.3089
@fabif.3089 3 жыл бұрын
@@SchonKonnie konnie
@fabif.3089
@fabif.3089 3 жыл бұрын
@@SchonKonnie?
@finestrix7944
@finestrix7944 Жыл бұрын
Mein "Shop" local Bedingung = false local Geld = 300 local Preis = 200 if Geld >= Preis then Bedingung = true Geld = Geld - Preis print("Du hast noch " ..Geld.. " Gold übrig.") else print("nicht genug geld") end Output: Du hast noch 100 Gold übrig. Hat jemand was zu verbessern?
@SchonKonnie
@SchonKonnie Жыл бұрын
passt so
@julianmelo3362
@julianmelo3362 Жыл бұрын
--das ist mein shop hab es jetzt auch verstanden-- local Satz1 = "Du hast das item gekauft." local Satz2 = "Du hast nicht genug Geld für dieses Item." local Preis = 15 local Money = 10 local Gekauft = false if Money >= Preis then print(Satz1) Money = Money - Preis Gekauft = true print (Money,Gekauft) elseif Preis >= Money then print (Satz2) Gekauft = false print (Gekauft) end
@newlevelsstudio4160
@newlevelsstudio4160 Жыл бұрын
local Satz1 = "Du hast das item gekauft." local Satz2 = "Du hast nicht genug Geld für dieses Item." local Preis = 30 local Mon = 1 local Gekauft = false if Money >= Preis then print(Satz1) Mon = Mon - Preis Gekauft = true print (Mon,Gekauft) elseif Preis >= Mon then print (Satz2) Gekauft = false print (Gekauft) end (meine hausaufgabe)
@RebeccaTrienbacher
@RebeccaTrienbacher Жыл бұрын
Bin zu dumm dafür! Ich gebe auf
@user-cn8oz2cd8s
@user-cn8oz2cd8s Жыл бұрын
Lua/Luau ist nicht so schwer wie ich am Anfang gedacht habe
@Skibidy_rizzler_
@Skibidy_rizzler_ Жыл бұрын
ist die einfachste programmiersprache
@RebeccaTrienbacher
@RebeccaTrienbacher Жыл бұрын
Ich habe es nicht ganz verstanden =(
@SchonKonnie
@SchonKonnie Жыл бұрын
vielleicht verstehst du das besser: kzbin.info/www/bejne/fajXeIl5eMpmr5Y
@Tobvii
@Tobvii Жыл бұрын
hab so local gegenstand = "Sportschuhe" local preis = 34 local Geld = 50 if Geld >= preis then print ("Spieler hat sich Sportschuhe gekauft") print ("Guthaben beträgt jetzt ".. Geld - preis) else print ("Spieler kann sich das nicht leisten!") end
@VladRiesen
@VladRiesen Жыл бұрын
local Money = 100 local price = 50 local bought = false local Satz1 = "you bought the sword" local Satz2 ="you dont have enough money" if Money >= price then print(Satz1) Money = Money - price bought = true print(money,bought) elseif price >= Money then print (Satz2) bought = false print (bought) end
@EinkomischerKanal
@EinkomischerKanal 9 ай бұрын
Ich verstehe das alles nicht😢
@SchonKonnie
@SchonKonnie 9 ай бұрын
:c
@G0ldrun
@G0ldrun 2 жыл бұрын
time = os.date("*t") zeit = time.hour minute = time.min sekunde = time.sec print("Aktuelle Zeit: " .. zeit .. ":" .. minute .. ":" .. sekunde .. " uhr") if zeit < 12 then print ("") print ("Guten Morgen!") print ("") print ("Es ist zeit für dein Frühstück! :)") elseif zeit < 15 then print ("") print ("Guten Mittag!") print ("") print ("Es ist zeit für dein Mittagessen! :)") elseif zeit < 21 then print ("") print ("Guten Abend!") print ("") print ("Es ist zeit für dein Abendessen! :)") else print ("") print ("Geh mal schlafen du Handy Suchti! :)") end
@SchonKonnie
@SchonKonnie 2 жыл бұрын
Für einen Zeilenumbruch kannst du in einen String schreiben. Dann kannst du die leeren Prints weglassen
@Ranikama_official
@Ranikama_official Жыл бұрын
local Satz1 = "Gekauft" local Satz2 = "Nicht Gekauft" local Geld = 200 local Preis = 199 local Gekauft = false if Geld >= Preis then print(Satz1) Geld = Geld-Preis Gekauft = true print (Geld, Gekauft) elseif Geld
@Minnowrbraincellloss
@Minnowrbraincellloss Жыл бұрын
local Geld = 150 do local Preis = 150 if Geld >= Preis then print("Equipped") Geld = Geld - Preis else print ("not enough coins") end if Geld = Preis2 then print("Equipped") Geld = Geld - Preis2 else print ("not enough coins") end if Geld
@SchonKonnie
@SchonKonnie Жыл бұрын
Gute Idee, aber wenn du immer sicher stellst, dass genug Geld da ist, bevor du etwas kaufst, dann sollte das Geld ja nicht ins minus gehen können. Du könntest in das Skope aber noch sowas wie print("Achtung! Geld im Minus:", Geld) reinschreiben, damit du es merkst, falls so ein Bug aufkommen sollte.
@Minnowrbraincellloss
@Minnowrbraincellloss Жыл бұрын
Danke für die guten tipps👍🏼
@nue-p9p
@nue-p9p Жыл бұрын
25:22
@Notg00dmid
@Notg00dmid Жыл бұрын
local Money = 100 local Price = 50 local Sword = Price local Bought = false if Money >= Price then Bought = true if Bought then Money = Money - Price end print("Sword Successfully Bought!") print("Sword cost: -"..Price..".") print("Your Money: "..Money.."!") print("You Bought it: true") else print("Failed to buy Sword, you dont have enough Money!") print("You bought it: "..Bought".") end ^ Butte fragt mich nicht warum da soviele print() sind
@pizzahendygaming2046
@pizzahendygaming2046 2 жыл бұрын
nein es ist nicht wenn es ist falls ;)) hatten wir in englisch xD
@SchonKonnie
@SchonKonnie 2 жыл бұрын
In der IT ist es wenn überhaupt: "wenn", da "falls" eine Wertung suggeriert und es für Computer nur absolute gibt.
@pizzahendygaming2046
@pizzahendygaming2046 2 жыл бұрын
@@SchonKonnie okay
@pizzahendygaming2046
@pizzahendygaming2046 2 жыл бұрын
@@SchonKonnie würdest du vielleicht irgendein Kurs fürs programmieren machen oderso ka
@polarbear4896
@polarbear4896 2 жыл бұрын
Falls ist ein Synonym für wenn
@ThunderWarDe
@ThunderWarDe 2 жыл бұрын
9:18
@ThunderWarDe
@ThunderWarDe 2 жыл бұрын
12:13
@EliteUd
@EliteUd 5 ай бұрын
Sorry konnte keine hausaufgaben machen das video ist schon drausen
@Theo-3532
@Theo-3532 Жыл бұрын
local Satz = "RestGeld:" local Kauf = true local Geld = 100 local Preis = 1000 if Geld < Preis then Kauf = false elseif Geld >= Preis then Kauf = true end if Kauf == false then Kauf = "Nicht genug Geld" elseif Kauf == true then Kauf = "Gekauft" Geld = Geld - Preis end print(Kauf) print(Satz) print(Geld) meins
@hanneskoch3410
@hanneskoch3410 2 жыл бұрын
Ich verstehe es einfach nicht. Es ist so komplex
@CrafterSven
@CrafterSven Жыл бұрын
local Money = 18490 local Price = 15000 if Money
@florit3186
@florit3186 Жыл бұрын
local Money=100000 local Price=5000 local Sentence1="You have completed the purchase, you have "..Money-Price.." left!" local Sentence2="You do not have enough money, you lack "..Price - Money.." ." if Money=Price then Money=Money-Price and print(Sentence1) end
@Hero_Litty
@Hero_Litty Жыл бұрын
local Spieler = "Polarbearph_2" local Satz1 = "Aha. " local Satz2 = "Du willst also in dinge, die dich nichts angehen? " local Satz3 = "Geh bloss weg! " local Satz4 = "Beim nächsten mal ruf ich die Cops" local Konto = 69 local Kontobetrag = "Konto : " Erwischt = Satz1..Satz2..Satz3..Satz4 if Spieler ~= "Polarbearph_2" then print(Erwischt) return else print("Du erhälst 200 Münzen.") local Gewinn = 200 Konto = Konto + Gewinn print("Erfolgreich Aufgeladen") print(Kontobetrag..Konto) end
@harryklein7315
@harryklein7315 2 жыл бұрын
local Money = 1000 local Product = "Sword-Ultra" local Price = 500 local ItsBuy = false if Money < Price then local MoneyToPrice = Price - Money print("Only "..MoneyToPrice.." For "..Product) return elseif Money > Price then local Money = Money - Price print("You have buy "..Product.." for "..Price.." Money , now You have "..Money.." :D") ItsBuy = true end
Вопрос Ребром - Джиган
43:52
Gazgolder
Рет қаралды 3,8 МЛН
The Lost World: Living Room Edition
0:46
Daniel LaBelle
Рет қаралды 27 МЛН
Jaidarman TOP / Жоғары лига-2023 / Жекпе-жек 1-ТУР / 1-топ
1:30:54
Ich hacke @Florian.Dalwigk  (Nicht nachmachen!)
11:06
Programmieren lernen
Рет қаралды 89 М.
ChatGPT hat dieses Spiel gemacht!
17:08
Konnie
Рет қаралды 14 М.
Ich programmiere MINECRAFT mit 40 Zeilen Code!
17:25
Programmieren lernen
Рет қаралды 223 М.
Python laid waste to my C++!
17:18
Sheafification of G
Рет қаралды 223 М.
Warum du kein Java mehr lernen solltest (Pro und Kontra)
12:51
Programmieren lernen
Рет қаралды 44 М.
How To Make Classes in Lua | Advanced Lua Tutorials #1
7:27
Programmieren lernen | Luau Basics deutsch #4 Loops
23:59
Making a ROBLOX game with its new AI
6:28
DeHapy
Рет қаралды 889 М.
Вопрос Ребром - Джиган
43:52
Gazgolder
Рет қаралды 3,8 МЛН