Print Statements Aren't Honest About What They Print

  Рет қаралды 9,036

ByteBlox

ByteBlox

Күн бұрын

Пікірлер
@byteblox100
@byteblox100 2 ай бұрын
get my full Roblox Studio course here: linktr.ee/ByteBlox photos of my pet pigeons: instagram.com/subnautica_man
@namitabsane6194
@namitabsane6194 2 ай бұрын
WHY THE PIGEONS
@user-vk5xi8ji9p
@user-vk5xi8ji9p 2 ай бұрын
hello
@user-vk5xi8ji9p
@user-vk5xi8ji9p 2 ай бұрын
maybe the client can print the source if they somehow insert a remote event into replicated storage or somthing
@jujhar.
@jujhar. 2 ай бұрын
Daddy
@SlayTh3DraG0n
@SlayTh3DraG0n 2 ай бұрын
local brainrot = {"rizz", "skibidi", "sigma"} print(brainrot[2].. " ".. brainrot[3])
@CircleGuyAndEnemies
@CircleGuyAndEnemies 2 ай бұрын
*skibidi sigma*
@minicup
@minicup 2 ай бұрын
😂 using.. “ “ .. in a print statement is very stupid, use a comma it adds the space for you (print onlyj)
@disp4754
@disp4754 2 ай бұрын
local TableModule = {} TableModule.__index = TableModule function TableModule.New() local self = setmetatable({}, TableModule) self.Dictionary1 = { Dictionary1OfDictionary1 = { MoreDictionariesofDictionary1 = { Value = game.Workspace.Idkman, }, }, Dictionar1OfDictionary2 = { MoreDictionariesofDictionary1 = { Value = Workspace.Idkman2, }, }, Dictionary1OfDictionary3 = { MoreDictionariesofDictionary1 = { Value = Workspace.Idkman3, }, }, Dictionary1OfDictionary4 = { MoreDictionariesofDictionary1 = { Value = Workspace.Idkman4, }, }, } return self end function TableModule:PrintValues() for _,v in pairs(self.Dictionary1) do for _,v in pairs(v) do for _,v in pairs(v) do print(v.Value) end end end end return TableModule --serverscript past this local TableModule = require(script.TableModule) local newtableinstance = TableModule.New() if newtableinstance then newtableinstance:PrintValues() end -- Might be wrong who knowsss since I didn't bother looking too far if my code sample was correct. If u guys can understand what's happening here I wanna say congrats! You r probably on the right path for understanding roblox programming (mb if u r tryna read it without syntax colors)
@robloxcheatreport
@robloxcheatreport 2 ай бұрын
@@minicup just use ` string
@ihatemylife-0O0
@ihatemylife-0O0 2 ай бұрын
*_-hello-_*
@Maskrade
@Maskrade 2 ай бұрын
ByteBlox's april fools will be an actual serious video on Roblox scripting.
@CreatorProductionsOriginal
@CreatorProductionsOriginal 2 ай бұрын
Local commentSection = script.Parent Local Video = commentSection.Parent Video.Ended:Connect(function(vidTopic) If vidTopic = “Scripting” then commentSection:MakeComment(script) end end)
@HarvoxRBX
@HarvoxRBX 2 ай бұрын
cringe skid
@CreatorProductionsOriginal
@CreatorProductionsOriginal 2 ай бұрын
@@HarvoxRBX local reply = script.Parent reply:Dislike() reply:RemoveDislike() reply:Ignore() error: ignore function failed
@GamerKaiden
@GamerKaiden 2 ай бұрын
Unknown Global: “Scripting”
@CreatorProductionsOriginal
@CreatorProductionsOriginal 2 ай бұрын
@@GamerKaiden print(“fck”)
@madrondc2
@madrondc2 2 ай бұрын
​@@GamerKaiden local CommentService = game:GetService("CommentService") local video = CommentService:GetVideo("ox6T9gRrDM4") local comment = video:GetUserComments("CreatorProductions")[1] comment:ReplyAsync("GamerKaiden", "he used scripting as a string not a variable, dumbass.")
@boreddragons
@boreddragons 2 ай бұрын
Bud, it’s too late for an April fools joke.
@UhM_D3V
@UhM_D3V 2 ай бұрын
This is very true. I have a game that uses printing with tables and it prints a random piece of text in the game when you press F9 instead of the table in studio. Very annoying.
@hexarium4817
@hexarium4817 2 ай бұрын
that is because table is a adress that points to other adresses F9 menu just isnt capable of displaying a table like studio would
@Swervy2K
@Swervy2K 2 ай бұрын
@@hexarium4817 everything in roblox is an "address", it is just coded in the back-end (in C++) to give us readable values or what not
@somenerd8139
@somenerd8139 2 ай бұрын
4:18 “What is the unique identifier of each item or, in other words, what is the unique identifier of each item” where are the other words 😂
@samma-pixelstudio
@samma-pixelstudio 2 ай бұрын
All of this is just because doing print(a+b) is just the same as doing local c = a+b print(c) a+b is just and expression and expressions get calculated to return a result that can be stored... This is also the reason of why we get the memory address of functions when we print them Over all you explained it great... I just wanted to specify this one thing
@CANSHEMAKEAGRILLEDCHESE
@CANSHEMAKEAGRILLEDCHESE 2 ай бұрын
Can you do a totorial on how to make a fuse players 2-8 pls?
@Kitoucher
@Kitoucher 2 ай бұрын
print("oil up")
@ArzenikDev
@ArzenikDev 2 ай бұрын
DAHHGGGGG NOOO YOUR DOING IT WRINNGGG you should do while true do() Print("oil up") wait(0.001) End
@TDXC------
@TDXC------ 2 ай бұрын
​@@ArzenikDev while task.wait( ) do print("oil up") end
@Noylim69
@Noylim69 2 ай бұрын
While true do For i =,1,100 do Print("oil up") End End Much better
@peterwild2974
@peterwild2974 2 ай бұрын
@@Noylim69 bros gonna freeze the game with that code
@Noylim69
@Noylim69 2 ай бұрын
@@peterwild2974 while true already crashes it
@okage_
@okage_ 2 ай бұрын
to get the return value from a function, you need to call the function which is what you do with the (). and the compiler is smart to optimize that into just the return value so basically its the same as writing print(123)
@spok_7300
@spok_7300 2 ай бұрын
im honestly just shook you said the print function is the hardest thing in roblox studio (maybe i came from rust but whatever
@blueapples7915
@blueapples7915 2 ай бұрын
Can you make a tutorial on how to make a shelf that you can fill up if you get close to it with a tool equipped?
@dertyluck
@dertyluck 2 ай бұрын
are you trolling in the beginning?
@AisarRedux
@AisarRedux 2 ай бұрын
yes, he is
@impala831
@impala831 2 ай бұрын
Yeah print is like the first thing you will learn
@dertyluck
@dertyluck 2 ай бұрын
@@impala831 i know, sometimes this guy is just so confusing the way he talks
@100s_Legacy
@100s_Legacy 2 ай бұрын
random question but could you (or someone else) please make a tutorial on how to make an animation game (something like unknown meme animations). If you could I would really appreciate it because i cant find a tutorial :D
@BelugaRoblox_YT
@BelugaRoblox_YT 2 ай бұрын
I wonder what happens when you do print()
@hexarium4817
@hexarium4817 2 ай бұрын
prints nothing just empty space im pretty sure
@dominiccaesarok5077
@dominiccaesarok5077 2 ай бұрын
may God bless yall
@Not-a_name
@Not-a_name 2 ай бұрын
this is somehow giving me "Do Chairs Exist?" vibe
@JeLeff.
@JeLeff. 2 ай бұрын
make a video on camera shake effect
@FluffballWiNg
@FluffballWiNg 2 ай бұрын
0:01 LOL SOOOOOOO TRUE
@__Paradox.UI__
@__Paradox.UI__ 2 ай бұрын
Ill send you the print function source code since it looks so complicated
@SgRulz
@SgRulz 2 ай бұрын
8:58 it sound like ur about to say a nono word😭😭😭😭😭
@AustinLuZhiQi
@AustinLuZhiQi Ай бұрын
local momplsdontkillme = “I want to taste the Milky Way” while true do print(momplsdontkillme) wait(0.5) end (I edited this because I accidentally didn’t put a string)
@alast6624
@alast6624 2 ай бұрын
error("Yeilded script")
@CeruleanYTube
@CeruleanYTube 2 ай бұрын
They are honest
@TopHatSquad667
@TopHatSquad667 2 ай бұрын
While true do Print(“Erm what the sigma?”) end *Game proceeds to crash*
@rockyes3239
@rockyes3239 2 ай бұрын
While task.wait() do* 🤓
@CaseAB
@CaseAB 2 ай бұрын
Global 'Print()' is deprecated; use print()
@rockyes3239
@rockyes3239 2 ай бұрын
@@CaseAB maybe because of auto capslock when pressing enter.
@FluffballWiNg
@FluffballWiNg 2 ай бұрын
@@rockyes3239JUST USE wait()
@ZoomGameClips
@ZoomGameClips 2 ай бұрын
​@@rockyes3239He specifies that it crashes the game. He knows.
@mezohx
@mezohx 2 ай бұрын
Do the thug shake
@namitabsane6194
@namitabsane6194 2 ай бұрын
banger vid
@HellsWaffle
@HellsWaffle 2 ай бұрын
4:19 Disting-ish
@The_world-v1n
@The_world-v1n 2 ай бұрын
"That’s reserved for the experts". Print() is the first thing I’ve learned.
@sly_9793
@sly_9793 2 ай бұрын
Im an expert coder who worked on many complex and popular games and i still have problems with print bro
@The_world-v1n
@The_world-v1n 2 ай бұрын
@sly_9793 I’m most of the time using it for debugging (and for fun :D).
@FluffballWiNg
@FluffballWiNg 2 ай бұрын
1:53 who needs a calculator?????
@Xebsec
@Xebsec 2 ай бұрын
you know I am thinking of buying your course
@Wha_ffle
@Wha_ffle 2 ай бұрын
don't do it, from what i've heard and seen from this dude, you are not taught any kind of OOP (object oriented programming) or even basic code structuring. you're better off buying literally anyone elses course or even just learning yourself. also i wouldn't trust this guy period (there is some insane degenerate behaviour that i don't want to talk about in his discord server and he's in on it) tldr; insanely overpriced course, you learn nothing & he's pretty shady guy may the gods now strike down & silence this comment for heresy
@Xebsec
@Xebsec 2 ай бұрын
@@Wha_ffle alr then it is kinda over priced but thanks for the info
@blueguytutorial
@blueguytutorial Ай бұрын
dont hes lowkey a loser, and he is not that experienced. some of his other videos got hate because he doesnt know what hes on about
@CeruleanYTube
@CeruleanYTube 2 ай бұрын
Great video
@yes220ffjf
@yes220ffjf 2 ай бұрын
alive internet theory
@Smiling_Inverted
@Smiling_Inverted 2 ай бұрын
local yippe local repeatedstring = "i love skibidi toilet" for i=1,100 do yippe = yippe..repeatedstring end print(yippe)
@yacmag
@yacmag 2 ай бұрын
you never set yippe to something so this code wont work
@Smiling_Inverted
@Smiling_Inverted 2 ай бұрын
@@yacmag Yeah I realized that when I was going to bed lol
@Smiling_Inverted
@Smiling_Inverted 2 ай бұрын
Correct : local yippe = "" local repeatedstring = "i love skibidi toilet" for i=1,100 do yippe = yippe..repeatedstring end print(yippe)
@JeLeff.
@JeLeff. 2 ай бұрын
prove it
@dominiccaesarok5077
@dominiccaesarok5077 2 ай бұрын
Praise Jesus!
@yacmag
@yacmag 2 ай бұрын
its a coding video smh
@Ergo288
@Ergo288 2 ай бұрын
Pov a bot commenting random stuff for likes:
@user-vk5xi8ji9p
@user-vk5xi8ji9p 2 ай бұрын
Hello everyone and ByteBlox
@keyhitt952
@keyhitt952 2 ай бұрын
Cool!
@Kitsune_Dev
@Kitsune_Dev 2 ай бұрын
what are you talking about 🤦‍♂️
@hiranpeiris877
@hiranpeiris877 2 ай бұрын
tr
@KenDGGs
@KenDGGs 2 ай бұрын
B
@CeruleanYTube
@CeruleanYTube 2 ай бұрын
Heart this
@CeruleanYTube
@CeruleanYTube 2 ай бұрын
Or pin this
@juhmop
@juhmop Ай бұрын
table.concat my goat
The Genius Way That Roblox Prevents Exploits
17:35
ByteBlox
Рет қаралды 45 М.
What happens if my hp value isn't a number?
2:57
Element X
Рет қаралды 884 М.
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 120 МЛН
Арыстанның айқасы, Тәуіржанның шайқасы!
25:51
QosLike / ҚосЛайк / Косылайық
Рет қаралды 700 М.
Support each other🤝
00:31
ISSEI / いっせい
Рет қаралды 81 МЛН
Can We Use Roblox Games to Store Personal Files?
29:03
ByteBlox
Рет қаралды 19 М.
HUGE Roblox Problem...
13:01
KreekCraft
Рет қаралды 392 М.
Why Game Developers Shouldn’t Start With Unity
24:08
ByteBlox
Рет қаралды 18 М.
Making a Game About Weak Points
21:27
Emis
Рет қаралды 626 М.
How Villagers "Read" Your Letters in Animal Crossing
9:47
Hunter R.
Рет қаралды 601 М.
Proving That Randomness is Not Actually Random
16:47
ByteBlox
Рет қаралды 29 М.
Why Do Most Games Make Death Boring?
26:27
ByteBlox
Рет қаралды 52 М.
Roblox Has A HUGE AI Problem.
13:32
roblox_dude993
Рет қаралды 860 М.
The MUST Follow Roadmap For ALL Solo Developers
14:41
DevWorm
Рет қаралды 28 М.
I Didn’t Know Roblox Could Do This
24:34
ByteBlox
Рет қаралды 19 М.