#code-discussion
1 messages · Page 280 of 1
what are these searches bru
xD
btw what are u even searching
help me
i dont knw what to do next
Let's just say.. it's not about grass nor trees.
My game has huge map, so most of map is not loaded. Yet I want to set location marker to part outside of render distance, is that possible?
if it is outside of the render distance, it still wont be rendered in... buuut you can make it so that the character has a map of the map with the waypoints/landmarks written on them
What if I create workspace model that has Model streaming enabled always rendered?
you can try and look for tutorials on how to render objects from far away, i'm sure there are some
unless you wanna mess around with the billboard gui
Okay this solution worked 😄
Ty!
Jo
how do u make rigs do animations in loop
youre prob requiring each other
Oh im genuinely tapped
Is claude great to learn scripting in roblox studio
any ai is bad
effing hell i finally set up the type
oops small tweak made
I was rewriting a new table instead of modifying a global one
what ru making
im js startong to build a combat system
Starting witrh a basic stats module
that creates, fetches, and modifies a player's stats
@haughty sapphire this makes it that the Modifier Parameter can be either of tese right?
you can use it to learn, but letting it make code is a no go
Yeah
yes
@jade swift #1 thing to always prioritize in programming is essentially system design. Dont ask claude to make code for you, ask it to show you the architecture and design of the code, kinda like pseudocode but vaguer.
This will make you learn alot better and more effeciently as opposed to simply asking it to make code for you
Alright
At the very base of it, the roblox game and any system in general or game requires architecture. An engineer can only do so much to build something if they don't know or have the blueprint. But an architect has it much better because they have the blueprint and design, all thats left to do is the actual building. Its like driving without knowing the direction; sure, you're driving, but where to?
The same concept applies in game development or development in general. To code well you need system design, not just complex code
Did you mean to return PlayerStats[Player] instead of PlayerStats?
YEP
Okay yeah deffo fix that mistake lol
You're a smart guy
You can also say that the function returns the player stats type for autofill purposes
Driving without a direction will sometimes lead you to the correct destination, but often times it will lead you to dead ends(errors in code) or into a field in the middle of nowhere(forgetting correct architecture)
Me when I
local function kms<T>(foo : T, bar : typeof(newproxy(false))) : {[T] : (T) -> T}
bar[foo] = function(val : T) : T
return foo
end
return bar
end
what is newproxy
tbf when ur new u are struggling with implementation details so u cant really focus on design
why is the type of bar a userdata
it's just me bullshitting
is userdata even a table
yes and no
explain
It's just a fancy table
Here is an example of me using newproxy for a symbol:
-- Author: iGottic
--[=[
@class Symbol
]=]
local Symbol = {}
-- Types
export type Symbol = typeof(newproxy(true))
--[=[
Creates a blank userdata that can be converted into a string.
@param Name string -- The string representing the symbol
@return Symbol
]=]
function Symbol.new(Name : string)
local self = newproxy(true)
getmetatable(self).__tostring = function()
return Name
end
return self
end
--[=[
Creates a blank symbol.
@return Symbol
]=]
function Symbol.newNameless()
local self = newproxy(true)
return self
end
--[=[
Equivalent to `tostring`, gets the string name from a Symbol.
@param ThisSymbol Symbol -- The symbol you're checking
@return Symbol
]=]
function Symbol.AsString(ThisSymbol : Symbol)
return tostring(ThisSymbol)
end
return Symbol
Assuming a = Symbol.new("Hello") and b = Symbol.new("Hello"), then a ~= b but tostring(a) == tostring(b)
Wym
Username changes
If you change your username
Player.Name changes based on your username. For persistent data, use Player.UserId
He means does it change within the same play session
No
i dont mean that
I mean
if i store a player's data in a global table using their username
I.E for a datastore
and they change their username
Use their UserId instead, since that can't change
will it break
Aler
Yeah it will
ohk
When username changes, Player.Name changes
what is the difference between a value and a key in a dictionary?
Everything is the difference 🥀
They can be any value/type except a key will have some restrictions because not all datatypes will work well as keys in terms of indexing. But legit they are both values, keys are used to find the associates value in one go but you cant do that vice-versa without some other strategy
Nevermind I worded that wrong
I was trying to ask what difference it would make if I used [] in a key instead of just typing it out but now I know
Dot indexing is the same as bracket indexing, except bracket indexing will take an expression
tb["hello"] = 1
-- is equivalent to
tb.hello = 1
-- is equivalent to
tb["he" .. "llo"] = 1
thanks
they are essentially the same. But [] indexing can index a key with space which dot indexing cannot.
why do the comments make it more confusing 😭
so im using the free version of powerpoint which is quite restricted, and the servers are down for editing image format properties like brightness, so i had claude ai Create an entire addon, XML file, that sources from a free website hoster called netify, to then let me directly edit the image within powerpoint and then it imports it.
uhh
it flippin works
is advertising allowed?
well this isn't the minecraft reddit
i don't think they'll count your image showing your brand as advertising
so newproxy(true) just returns a table with its metatable already set to another table? is that it?
no
what does it do then?
so im using the free version of powerpoint which is quite restricted, and the servers are down for editing image format properties like brightness, so i had claude ai Create an entire addon, XML file, that sources from a free website hoster called netify, to then let me directly edit the image within powerpoint and then it imports it.
it creates a userdata with an empty metatable inside
a userdata can be used like a table, but isn't a table
so it doesn't hold any data
it just holds a metatable
typeof(newproxy 😨
they were setting keys in a userdata tho
no, he was only setting keys in the metatable of that userdata
he gave false to the argument so it didnt have a metatable
and even if it did wouldnt it not set in the metatable unless u override .__newindex metamethod
no.. he used newproxy(true) in his example
im talking abt the previous one
How to Apply
If you want to apply for a role in our community, the applications can be found here! It is highly recommended to check out our Application Rules to learn the requirements for these skill roles!
Pending Time
An application for a skill role may take up to 0-48 hours to be read. If pending beyond that time, please create a ticket using /ticket and then selecting the "Application" category in #cmds
Application Tickets
To ensure your ticket is being dealt with maximum efficiency, please link your application in the media section of the ticket. As well as specify which role you are after. Also, if you have any doubts or concerns related to applications, then you may create a ticket.
Application Tickets take 2-3 days and up to 1 week to be resolved.
Still don't know how? Watch this video to find out how!
oh that's just type stuff
in that example newproxy(false) is assumed to be a proxy with __newindex set in the metatable
i think
i don't use newproxy
im 5 months into scripting any tips
pretty much
kind of
but yes
sure
One message removed from a suspended account.
You can't store can attack client side for a start
One message removed from a suspended account.
One message removed from a suspended account.
just use an animation event, those exist for a reason
are you saying you rely on can attack being accurate client side tho
One message removed from a suspended account.
One message removed from a suspended account.
Yo does anyone here have experience with editablemeshes. I am trying to make one and no matter what I do it does not render but its there and I can walk on it and my camera interacts with it
One message removed from a suspended account.
also what do you mean by exploitable
One message removed from a suspended account.
just run a check on the client to see if they're on cooldown and if not, show the animation and get the server to check if they're actually off cooldown and then if they are, apply the global effects like damage etc
for more accurate execution of certain code blocks that specifically target animations
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
maybe because you're doing certain math that the server has to handle inside of a client, no wonder the latency will shit itself
One message removed from a suspended account.
One message removed from a suspended account.
I do systems like that all the time, that's what you do for everything, apply client side changes without reality checks server side and then the changes that actually matter like health you get the server to do if the player passes the checks
it's not hard compared to other elements of programming
or maybe use a remotefunction if you don't want too much latency
One message removed from a suspended account.
remote functions don't decrease latency rather than remote events...
One message removed from a suspended account.
yo im 5 months into scripting any tips, it feels like im stuck
in what way
like idk what to do or how to learn
go read this

how are you recommending this
this is purely focussed on lua itself
by sending it
loa 🤤🤤🤤
i wouldnt recommend it to someone who feels stuck
reckona he wont get past page 6
also a lot of it wont theres no use for in studio
most of lua applies to luau except for like the goto keyword and a lotta other stuff but generally it applies, I think the object oriented chapter is masterclass
I shoulda also mentioned he should skip the non-studio parts like the io library
or tuples
when was this book written do you know that
nah I Just pirated it and called it a day
pirate this 😭
its uploaded a million times on pdf library
bro
what
you send block oof code with 0 explenation
you mean comments?
like "--"?
that too
wdym
is the code ok?
any issues or smth i made bad
nvm, it's simple code so whatever
is code discussion only for Roblox Related stuff
not necessarily
there are people here who know stuff like C or Python or really anything that comes to mind
though sometimes people do talk about random things
who here has 2-3 years of coding just asking
i have 3 days
i have probably a month worth of coding in total
i think i'm qualified!
what happened?
Unnecessary redundant variables and incorrect documentation for the last function definition: @return Symbol but it returns a string
How did u make that in a seperate kinda text
you mean that?
local thing = 1
or newproxy?
for first one you need to write ```lua at the start, switch to next line and close with ```
no you dont need to separate ``` from lua
np
i need help, how do you get the 'respawn character' death/oof animation on an npc?
eveyrthing i try doesnt work and i cant find anything on the internet
r15 npc
you mean how to make death animation on an npc?
yes
Yes
like how the limbs separate and explode outwards
Disable humanoid's destroying joints
Humanoid.BreakJointsOnDeath = false
and try to disable dead state
humanoid:SetStateEnabled(Enum.HumanoidStateType.Dead, false)
if you keep this both together, it should let your npc last longer to be able to play death animation
and then you can destroy it by just writing ```lua
Npc:Destroy()
oh wait
you tried this and npc still got destroyed after dying?
if it's disabled then your Humanoid.Died wont get fired
it would just fall as one attached body
dont disable enum.humanoisstatetype.dead then
Did you try to anchor HumanoidRootPart and play animation with priority "Action"?
after dying?
uhm
there is no animation to play i think i had to delete motor6d
deleting motor6d was the fix
tysm for your help tho @celest grove
alr
Anyone know how to spawn brainrots and actually have them spawn on the floor cuz some spawn on the floor n others in the air and I can’t seem to find which part I should anchor
Attach a part to each one of them
Like a new part
Hellooooo anyone thats new to scripting wanna learn together?
What's new
Why is everyone making brainrot games 😭
"why is everyone trying to get money and blow up and be popular and get all the guys and girls at school and also a commendation from the pentagon 😭"
who can help me figure out why my sword isnt positioned correctly when the player is idle, and lunging it?
Fast + money
https://www.roblox.com/games/114640202062357/Swing-Obby-for-Brainrots how much would it cost to make a game like this for just scripting
Imagine some guy telling their girlfriend that they got all of their money from Escape the Brainrot School Admin Troll Obby on Roblox
shit only matters if you have a big ego
if you stacking more bread than the average walmart cashier than thats all that matters
That’s fair
I wish more people made genuinely good games though
Having a big ego isn’t really a bad thing in that regard, right?
no cuz pride becometh the fall bud
theres so many templates on youtube
what templates are the good ones
actually I'm not looking for an exact game
just like a similar concept
i already have everything made
i think she wont even care about it
if he's rich, then it doesnt matter
if it do matter, owner of "grow a garden" (jandel) wouldn't have a wife
ssigh.
who codes like that lol
name an ai that codes like that
claude
❌
lol?
its ok to be wrong
and then randomly come to the conclusion i call anything ai
yea u called it ai and i said ur wrong
i asked what ai codes like that u said claude and i said ur wrong
local DataService = require(game.ServerScriptService.Server.DataService)
how does this prove a point
normal people usually put requires at the top but AI often places them locally
comments that explain simple code lol
wrong lol
thats a human error
formatting is doodoo as well
"Does checking stuff for resonance acceptance"
you gotta be dense if you think thats an ai comment
heres claude's iteration of the script
i only mentioned claude as a guess
and u dont know what ur talking about
yes i do??
local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local function HandlePlayerChat(player, message)
if not player or not message then
return
end
end
look at this lmfao
textbook structure even when it's unnecessary 😭
what is this supposed to prove
.
correlation to screenshot?
what screenshot?
the one he sent that you said was ai code
ye
how does the snippet you just sent correlate to that at all
Anyone know if it’s possible to let players like the game from inside the game just by pressing a button or something?
i dont think you can prompt them to like the game but you can prompt them to favorite it
Some guy would’ve figured it out by now
And it would be in every simulator game
so no
Heya, super strange one basically I’m looking at possibly making a retro SCP game I’m talking 2019-2020 esque where SCP’s just run into players to kill them, etc. No real special effects. Was wondering how much people would charge for a handful of SCP’s with some very basic effects 10-15, basic raycasting gun system with 10-15 guns, team management, morph handler, door system (insert keycard into door to open), etc. How much would you guys charge in your opinion for a super retro game like this?
how are you rendering
ninjas argued for 20mins abr if my code is ai or not im crying
@normal solar
ur welcome
ai is a good tool for help with coding fs though it’s prob not the best for writing whole games
yo can someone teach me how to build or make good looking GUI
I would ask ui designers not programmers but figma is a good starting a point I suppose
figma?
It’s a tool ui designers use
i dont use it to make an entire game
all i did was to help me organize / format my module
Yeah then don’t listen to people who shun you for it
You recon it’s good enough for structuring?
guys should I become a software engineer? i already know luau and python but im scared Ai might replace software engineer soon because the entry level already got replaced by ai
don’t really know you’d have to experiment around with it
Human supervision is necessary for coding
Just keep becoming better and better to stay ahead of others
im 16 and already master luau and medium of python
Plus AI might not even stay around to be so accessible for long since it’s not profitable whatsoever
ah 
Still have to learn that
Don’t want exploiters demolishing my sh
should I just become cyber security since its the only job ai can't replace
why not becoming the one supervising the AI itself?
its already been supervising by millions of people
No?
when I join the college it would for sure be already completed
Nope
uh may I ask how
I honstly would become cyber security I guess they earn 200k a year not that bad
You can always change specialities if you know the basics
basics of which langaunge?
Idk, I never looked into that job market lol
I’m basing this off of CE major
they all get the same core classes and then stem out into their own thing either during or after graduation
dang, may I ask what job market are you interested in/in already
Civil engineering 
my college system is kinda different because of my country
fairs
great job man
Not in it yet lol
im just afraid i might become homeless in the next 5 years lol
Hope you get in it soon bro
Same lmfao

it’s the only thing I can imagine enjoying for a long time
otherwise i’m fried
im kinda cooked idk what should I choose
ai in 5-10 years would for sure replace meduim programmers I think or maybe even master
see if your school offers programs to explore future professions
maybe you’ll see smth that interests you
yes but again
it doesn't sadly 😭
its funding is already insanely questionable
im only interested in soft ware engineering because I already were learning them at the age of 14
I mean I already have 3 grands rn
student debt is the last thing I would think about since I already have a great side hustle
@lament hazel What langs do u know
python and luau
The AIs funding, not yours
oh
They spend billions without seeing any returns off of that
but I believe that more people will start use Ai more and it can be profitable
since sora 2 made billions of dollars
Ehhhh doubt it
Not off of normal consumers
and saw like 95% drop in user activity immediately
Shit died so fast after the hype
99% within a month mb*
it still alive and making millions of dollars though
It’s not
I believe there's gonna be an app that will do better than sora 2
but for now I will try not to stress about jobs ngl
AI will never surpass humanity. Ever
but entry level already got replaced 😭
Meh
Not quite
I mean to be fair entry level is like the average programmer or even less
AI is just how it sounds. Artificial intelligence. It can't and won't surpass human intelligence
I mean it still can replace mid/master level in the future but in like 10-20 years
To a point it can. But it won't indefinitely replace humankind
we’ll see
the point is we don't know what holds in the future plus I can't throw my future like that over (it can/it can't)
im trying to join a job with good income and not so many risks
I agree but still humans are the ones who's creating it
Man how can that help my case
Unless robots 😈
Technically if given a body it could establish an assembly line
AI will definitely replace things, just not on a global scale
Idk anything about ai like that anyways 
Every human on earth is smarter than AI. AI does not have an IQ
the problem is I can't throw my future like that
that’s the reality for all professions
theres too many risks
There are risks everywhere
yet software engineering has the most 😵💫
AI will never be as good as human in most things
😭
we Know bro we are talking about software engineers in the future
Oh. yeah were cooked
engineers might or can be replaced completely in the future decades
dude 😭

the job will transform completely and it wont take decades
ye that’s why do politics
should I just join tech instead of software engineering then
join what you love, because if you join anything else you won't go that far
the point is I learned luau and python for nothing 
Not true at all
but when I join any company to work as software engineer they say they won't need me
i mean you can do whatever you like. if ai impacts whatever u want to do, id learn how to utilize it thats all
If you dint enjoy it then yes, if you can create large projects that will make you happy and could have an impact on others then no
AI wont reach us for another few decades
if they didn't need you, you wouldn't be working as a softwareengineer in the first place
trust
to be fair roblox games right now be floping
these jobs won't be replaced by AI
I learned programming because of roblox
they'll be replaced by ppl abusing ai for now yeah
cyber security cannot be replaced but the other it can
raw ai still takes a bit
but AI definetly will become a skill, knowing how to use ai tools properly will be a tool in the future thats for sure
chances are the only way it continues development is to act as a weapon and surveillance system for the government
you know to use AI to its fullest for programming you have to understand and be able to write code anyways
so I just have to 50/50 my future 🥹
and theres people for that
most cognitive tasks will be superseeded in <5 years if its slow
And this was said like 5 years ago too
Dude have you looked at #scripter-hiring trust me, the money will not be running dry any time soon
man
im talking about my future
not rly no
@lament hazel We will be long dead when AI replaces the first software engineer
I made 3k off commisions but thats nothing irl
which is in the next decade probally
I mean depends how much time it took you
3k is a lot
41% of code on GitHub is AI generated
I work 6 hours a day for just 70 dollars dude
commisions is bad
That's why you don't focus on commissions, what I would do personally is take commissions until I have a setup that lets me handle my stuff properly > Use more commissions to build funds > put those funds straight back into myh own projects
Ouch
3k is not alot in real life
llm's started popping up late 2022 to early 2023 and they were completely and utterly useless back then... go 3 years forward and it has global impact and there are trillions being dumped into it with every reputable lab hard abusing it xd
that's how I'd do it
it pays rent
shit will NOT take decades...
comissions arent really meant to be long term
not horrible but ow
you can get jobs at studios aswell like salary based jobs
projects which will have 1k visits and 0 ccu
like $100K Anually even
its just up to you and how good yhou want to get at scripting
Nah
average macdonalds employee gets 20$ an hour
where 😂
what make you think 70 dollars a day isn't horrible
everywhere
Why do people measure in CCU instead of DAU
Who wants to work with me in a game
make a good project, build a studio, buy games, scale games.. its doable if you are ambitious and passionate
ccu mostly gets you the most montizi
bc the rate you gave me is above minimum wage?
most games flop now days
most games always flopped and will always flop, cuz they are bad xd
still a mc employee making more than a programmer is horrible
on contrary, I’ve seen more and more games do well
CCU ~= Monetization

brainrot niche isn't working anymore
then don’t do it
thats what I mean by mostly
brainrot is doing okay still, regardless i wouldn't go for that type of stuff anyway
other niches are dead only ones are working is anime stuff
Nahh its all about how your game is monetized, there are games with 1k ccu that be making more than others with 5k
Running AI's is much more expensive than just paying people to do things @lament hazel . This is one of the main reasons it wont replace every job
but yea ccu is goated
Then take a different major instead of coding if you think it’s so doomed
this is not going to be a thing in the near future
chatgpt/claude/gemeni LITERALLY cost 10-20 dollars for pro which can give u a good entry/mid level programmer
thats the point which one
you know bro on roblox there are jobs that be paying 6 figures anually, salaried and stable
like thats on roblox
STEM degrees or Medical field
The mona lisa will always be worth more than an amazing painting by AI. @lament hazel @hollow summit . It's the human values that people value
I'm speaking on physical jobs.
not commisions only by making games
we are not talking about art xd
no, im talking about working on someone elses games
at a game studio on roblox
full-time
DUDE how that CAN help me in my software engineering
like big do studios/indo studios?
would debate that employers care for cost efficiency over quality, as long as it passes the min req and makes more money than invested, it’s good
they just asks for commisions immo
obviously more bigger ones but yeah
but I see what you meant
noo
you can do a commission
but there are full-time long term roles too
lots of groups have long term employment
You earn their trust
some give you like hourly wage and others a set salary
isn't that just a normal long commision
you just have to be good
I take 5-6 hours per a commision depends on the script
brother its called a job 
which is just long time commisioning
a job that gets me paid less than mc employee
its called being employed? wdym commission xd
broo thats what im sayingm, its all based on how good you are at what you are doing
Facts, a lot of engineering firms technically hold you for the projects, if there are none and you aren’t working then chances are you are out
like what task for example?

studios asks for long term work which is like long term commisining
and with everyone using AI these days, it's insanely easy to get ahead of the game
wdym
they would give u low payment and if u don't agree they would just kick you out
most people just rely on ai these days
then negotiate for more over time
its easy to get ahead of majority when it comes to actual LUA use
*all
oic true, i thought u meant the opposite
thats called being employed bro
so I just ask for that?
one major thing is
stop thinking so negative
and i would still earn less than the min wage workers
you dont start at $100k a year
how can I stop thinking negative when my future is in there
you gotta build bro
you can make inf money in roblox if you want to xd
how much do u charge per commission? @lament hazel
the point is im trying to ask if software engineering will be replaced or not
5-6 is wild
75-100 dollars
oh ok thats fine
because worrying and stressing and giving up opportunites because you are scared is not going to be beneficial for your future self
^
by hosting a popular game
then you end up working at a mcdonald’s bc apparently it’s a stable job
😝
yes, its not rocket science
I already made 3-4k from my side hustles at the age of 16
@lament hazel @hollow summit Do you even have the slightest idea how complex software can become? Also Just like with WordPress. People said it would replace web developers. Instead, it created more opportunities for developers because it became much more affordable for small businesses to have websites. Ai replacing programers is like thinking autopilots will replace pilots. Ai wont replace programmers, it'll just help them code
I still don't know if I will be able to make 100-200k a year
yeah true but there are like actual stable jobs at roblox game studios, not comissions, but like actual full-time roles
lowk just go for what ur passionate about, since the careers ur thinking of all make good money
by "help them code" that thing anybody can do even a plumber can do that
the point is its risky and I can't be in a job thats require gambling/risk
No bc the plumber doesn’t know sh and AI doesn’t know context, only you do
if you think ai will take decades in order to do basic SWE work (have you ever used 4.6 opus or 5.3 codex properly?) then you are in for a bumpy ride, thats all i can say
there is no risk if you are good
Not sure what this means at all
any average person can learn the basics of programming then just go straight to AI
everything worth getting is a risk
uni is a risk
you could pay thousands just to end up working at mcdonalds
and then spend hours upon hours on the simplest task
can't be ballin withiout bein all in bro
dude entry level already got replaced in 2 years just imagine what will happen in 10-20 years
So may successful people go years and years without anything until they hit
uni risk =/ future job risk
they still cannot match the depth of problem-solving and design expertise that experienced software engineers bring
future job risk is like risking 70 years of your life
And not know what the hell they're doing lol
You’ll be fine bro, unless you are dumb asf you’ll be fine
I think you're just being too negative bro
even dumb people succeed
ai will completely transform every cognitive digital task yes. that shouldn't bother you as its inevitable. find your passion and niche and just go for it xd
just chill and work hard, and then your worst case scenario is just the average life
😭
if a person learns basics of programming they for sure will know what they doing
life too short to worry about allat
I'm sorry but this is insanely wrong
im trying but it keeps stressing me out
I don't want to work 9 to 5
not if the program is really huge and advanced with hundreds of scripts
if you are stressed then that just means youre not at a level of skill where you can be confident, just keep grinding
I was there before, eventually you realize that as long as you move on, you’ll be more than fine
meh, will take 1-2 more years until SWE is pretty saturated, thats just the improvement curve it has rn
A normal dude that learns to code and uses Ai will not surpass an experienced software engineer in literally any task
and you are young, you can afford to take a loss and try again bro
there is no specific way to succeed in life except for action
if you stand and wait for a blueprint you’ll be standing forever
how can I keep grinding I already finished everything for coding except learning new langaunges
doubt this
specialize in one skill man
but you'r interseted in politcals/civial stuff which ai cannot replace
"finished everything in coding" do yk how advanced coding can get
i dont think u understand the complexity of software engineering and the need for human creativity, design, and problem-solving. humanity will continue to create demand for skilled developers for the foreseeable future. It may accelerate automation in certain areas, but it’s insanely unlikely to fully saturate the field in the next 1-2 years
Civil engineering, it can be replaced by AI but it won’t
I finished luau completely and still with python
this exactly
how ?
I mean't as for passtion and grinding
what else would I grind for in coding
💸
AI can learn all the fundamentals and create projects 🤷♂️
it’s really linear too
the point is if job were to be replaced that thing won't appear to me
you are simply unaware of what ai is currently capable of, what it was 1-2 years ago and what it will be 1-2 years in the future... same thing applies to math
lowk the real question is why is ai not regulated? 🤔
I mean in 5-10-20 years it for sure can replace many jobs
it is
keep talking about if bro, and if you can be replaced by an ai then that means that you did not know everything 😭
and software engineering is the highest of them
nope
Computers didn’t replace jobs and so won’t AI
a good programmer is irreplaceable
im just scared if the job will ever be replaced and it has alot of risks
and if it will then become a blue collar worker
? xD
you know what guys I will just wait and try to see what the future holds for me
Everything became digitized but pepe remained, even when everything could be easily calculated
idk why u even bother that much. UBI will hit in like ~15 years anyway if not earlier
whats a blue collar worker? physical work?
I will also study other mech stuff
I think stressing about what's risky and what's not risky, being too scared to act. I think that this mindset is far more riskier
yes
o alr
they make good money
how can I act as for now
AI in software engineering still has many limitations in areas requiring human judgment, creativity, and again... complex problem-solving. Just as advancements in math don’t eliminate the need for skilled mathematicians, AI will enhance development processes rather than fully replace the need for experienced engineers. same with autopilots and licensed pilots
I bet this message is writtin by ai isn't it
😭 bro what
the Ai marks
wouldnt ai write
engineers. Same
I mean i cannot say its made by ai but I guessed it by looking at the marks
what if you are AI trying to give us humans fear that ai is going to replace us so that you can get the jobs @lament hazel
maybe YOU are AI
HMMMMMMMMMMM
What
ok guys its enough for today its already 5 am at me
the "-"?
and I didn't sleep
chadste that sounds alot like chatgppt
no no
its not.
Sayonara guys have a good day
wait why did you add puncuation that is awfully AI seeming..
👀
Bye bye homie
It was nice talking to you
I enjoy talking about these kinds of things
it's a pretty interesting topic
me too 🥹
You do realize that im not arguing that ppl will stop doing anything. Its a complete transformation for most cognitive tasks and jobs, thats all. Ppl abusing ai will completely zoom past ppl that desperately try to fight against it. Again the rest of your comment is just unrelated buzzword spamming, its the same goalpost moving that ai has been plagued with since the very moment chatgpt first launched. "But it cant do x!".. until it does
and man
i fucking hate doing ui in roblox 
this skill tree is killing me
one last question how can I act for now as a programmer though
I was wondering how much you get paid as ui desginer? per commision
idk
welp
all depends on how good you are and what you are working on / for
Nothing was unrelated or buzzwords... but I'll personally hand you a $30,000 check if AI replaces everything in 1-2 years.
I also do vfx but i get paid really low like 5$ or 1k robux
its not "replacing" "everything" in 1-2 years no
per commision
big studios certainly will pay you a * lot * and you can prob squeeze in high tier commissions on the side too while being perma employed somewhere
its gonna "automate" "certain" tasks
at the end it all just depends on your skill
But never will it replace Software Engineers.
It will be used extensively by most ppl if we are talking about swe
and as i said before, transform the profession
I honstly want to create a channel like this since this guy already has hype up for his game
@hollow summit it will still require skilled professionals to leverage and integrate these tools effectively...
but as a anime character like luffy or goku
I believe personally, you should invest all of your energy into one skill
you'll make a lot more if you specialize in one thing specifically
Obv
I do in programming
alright I will try then
Im almost mastering luau
hold up
It still will have nothing to do with what swe used to be like 5 years ago. junior positions will be hell (they are already hell), and the saturation will more and more gravitate towards very experienced ppl doing a * LOT * of work * very * fast.
exactly
a very similar schema will be applied to most cognitive jobs that arent very related to arts or physical stuff
We all view AI as an assistant and nothing more
@hollow summit @lament hazel @lofty terrace
It won’t replace them, it will minimize them. The real winners will be those who can use both
physical stuff will have a pretty decent delay until you have the robots + cost factor is properly worth it. some jobs will stay untouched (kinda the unlucrative ones too), a great portion will get heavily automated in the future though
that way you become an efficient worker
I think AI's are good at being personal assistant or jump up like calculator, back then they would use paper or writing tool to perform simple mathematical work but now we just type that in calculator and boom you get answers. And i doubt that can replace humans in fields because it will cause collapse of system, like who is going to buy a product if there's only a few people who can afford it
bro
I was going to say all of this
Legit about the calculator 😭
roblox studio updating smh
AI is NOT replacing a great portion physical jobs
The earth ends before that happens
oh it for sure will xd
wdym? xdddd
There is nooooooo way
You won’t live to see that
it'll start rolling out properly in like 10 years or so xd
there will always be a need for human oversight and craftsmanship
not really no
Always
Literally always. Name one business ran purely by AI
We aren’t even on AGI
Do you realize how long it will take to build a model that will replace human function
It would have to go beyond AGI
More years than earth will exist for
there is nothing, like genuinely nothing outside of arts that will really be blocked from ai in terms of cognitive tasks in the far future
yeah agi will take ~5 years or so give or take
LOL
only issue that might delay things if the infrastructure for robotics is just getting built too slow, but its hard to predict that
but thats really it
@snow veldt here sorry for the light mode my roblox studio just updated, a good gem and leaderboard stats system
delay up to max 10 years is technically possible, but it'd really surprise me
there isnt really any slowdown, and the potency is already absurd given for how many absurd bottlenecks modern llm's still suffer
there will always be areas. like ethics, complex decision making, and roles requiring deep empathy or human insight. always. Even as AI grows, certain tasks, especially those requiring judgment, context, and emotional intelligence, are going to remain human centric
arts sure ethics empathy perhaps if ppl just fundamentally wont entertain the idea... again all of that doesnt really matter to most truly physical jobs xd
The human brain is infinitely more complex than AI
that is true
It cannot be replicated
Ai is created by humans
that is not true
Intelligence cannot be replicated to that degree of a human brain
that is also not true
exactly
Been learning luau 3 day now, I’m so happy I can actually understand most of this 
PLEASE explain this...
which make it worse
what do you want me to explain
How AI will replicate the human brain
loops and raycast system will make you cry ✌️
You can live and in realtime watch how ai is exponentially getting more potent
tweenservice the most fun thing
😭 don't learn from brawl dev tho if you don't wanne waste time
Please suggest
I’ve been watching his stuff for now and I like the pace although I skip through the water
devking(outdated) but still good, best thing to learn from is Ai and yeah its true, brawldev is good but he keeps talking long and waste time
u can actually learn from ai themself
AI helps reinforce but it’s shit at teaching if you don’t what to ask
😔
just use all api's + 4.6 opus and ur good
roblox place have them too
fairs
ask either claude or gemeni dont ask chatgpt
I use claude
and they will make you learn it in like 5-10 mins at max
for better perfomance use gemeni if you wanne learn
I see
eh I don't know what that is tbh
also brawldev is not bad I would say you should learn from him but after that u can learn from ai as well
@lament hazel @lofty terrace @hollow summit
Replicating the MERE complexity of the human brain goes FAR beyond simply processing information like AI. it involves consciousness, emotional intelligence, and deep contextual understanding, which are shaped by MILLIONS of years of evolution. The intricate network of BILLIONS of neurons and the brain’s ability to adapt, learn, and makedecisions based on diverse, nuanced experiences is something AI has yet to even come close to replicating and never ever ever WILL replicate. Even with exponential progress, AI STILL lacks the biological foundation and evolutionary history that humans possess. its impoissible for AI to reach human cognition
after that it will take you about 1 month to learn advanced system
I just need the basics really
That’s surprisingly fast 
chill didn't need to type all that we all know humans are better than ai
I mean if you stay consist
i should make a buzzword counter
you can learn advanced stuff in 1-2 months
See you in this chat in 1-2 months 😈
You prove absolutely nothing
all of this work just to get mogged at GO / chess by dogshit ai eons ago
Bet
I dont understand how you think AI will reach the level of the human brain. I really dont
You dont have an argument. It can be distilled to "its complex therefore its impossible". You are looking at exponential improvement and just ignoring the implication of it
The brain is unpredictable
AI would explode trying to replicate that
well it isnt random, but it is still not understood well enough
We havent even studied the brains full capacity
Not enough storage at all
Or energy
i mean a fly brain was fully mapped
SSDs boutta cost 10 grand per gigabyte
Yoo I saw that video too
what im saying is coding already have limits for now and Ai knows from the start to limit so it can generate good/advanced scripts already by all means it will even reach master level for sure in like the next decades
a FLY
They even made its model and had a simulation
years*
well maybe
Do you know how much more complex the human brain is than a FLY's brain
yeah it doesnt really matter
meh not so different
It will still look like garbage AI slop
listen man comparing human brain to Ai in programming is nothing Ai will obv win if you gave it more time
yet alot of companys uses it
*all
bc it increases their value
trust me, you will see in the future
that’s it
This just will never be true
you are just oblivious man
we need more ai bros plaguing the front page with brainrot games
because hiring employes takes alot of money which they dont like
implementing that AI takes even more money
😂
it will if humans keep on creating Ai which already is
ai cost gets cut in like 1000x every 1-2 years xd
If you genuinely think AI is going to become more cognitive than the human brain, you have some sort of issue
yet it is nowhere near profiting
and it’s gotten to a point where ai companies are asking for bail out money from the gov
Ai takes less a normal AI works for 30 days for only 10-20$ while a single person would work for 30 days 8 hours a day and still demand 6k a month

It is actively being used by every lab arguably working on the most important human achievement ever, but sure ig
WHO is demanding 6k a month
Were just throwing numbers around
you would be suprised by how many programmers get paid
if ai ever = human brain i feel like that would bring up a lot of ethics issues
And they are STILL underpaid lol
cyber security and top tech companys pay 6k a month
it will
It just cant happen
I guarantee you that AI is nowhere near in assisting true human achievements
as of now it can’t think beyond what already exists
The human brain created AI
both statements here are just factually wrong
if you truly study programming you would know by now that Ai for sure will replace programmers tbf
In fact it manages to make simple mistakes even after being fed the data
No?
Google it
Literally
It cant handle a chatlog over 600KB. Memory starts to get fuzzy
I gotta sleep guys, See you later when Im homeless 😮💨
AI is based off of existing data 😭
ai has solved several open math problems (not super hard ones tbf but thats not the point). additionally as every lab is using ai and expressing the start of recursive improvement - thats just factually wrong too..
nooo
trained off, not limited to
i just showed you that it isnt
Do more research
ai made tung tung tung sahur
you are just wrong and it is easily verifiable. idk what the point here is
Then verify it
😂
I even googled your lab claim and all I see is that it acted as an assistant for things that have been done by humans
yeah... its limited to what its trained off
Literally not a single thing done on its own outside of its data scope
We are still on the first stage of AI
@hollow summit Do you understand how AI actually... yk... works
youre wrong
ai has been around for almost 70 years though
not sure how that classifies as a first stage
https://github.com/teorth/erdosproblems/wiki/AI-contributions-to-Erdős-problems take a look at this
A community database for the problems on the erdosproblems.com site - teorth/erdosproblems
41% of Github is AI btw
Ok, I agree with this
let me rephrase it into
yeah thats cool
its just factually wrong
ai's are not just a database index
thats not how they can do * anything *
what that guy said
AI is specialized and task oriented, not "intelligent" in the same way humans are. It can surpass humans in certain areas, sure... like calculating large numbers or analyzing massive datasets, but it doesn’t have the capacity for creativity, emotional intelligence, or complex reasoning across a wide range of tasks like a human brain does. i mean it doesnt even come close
they can spit out stuff that has nothing to do with the training data, and they can be fed things that have nothing to do with the training data. that is the point of the training data.. how general and consistent ai can keep the "logic" on stuff that its unfamiliar with depends on how well the training data is + was utilized
distilled very far, in that sense it is very similar to us human
most people just arent aware of that
ai has a lot of emotional intelligence i ask ai everday to be my therapist
🙂
Oh hell no
even with extensive training, AI still operates within the boundaries of its programming and data constraints.you should know this. while yeah its ability to handle unfamiliar inputs improves with better data and training, it still lacks true understanding or reasoning beyond patterns.... unlike human intelligence, which adapts more holistically and intuitively to COMPLETELY novel situations
modern llm's are not very specialized anymore no. specialized ai's for aspirational research exist though of course
this is just another mess of buzz words
none of the words are in any way verifiable or hold any meaning
How are they buzzwords. Are buzzwords just words you dont understand or what
Read it again.
you just have to accept that your entire argument is false because he said so what can i say
Youre right bro
Nothing you say here is a genuine metric of verifiable
the statements are completely unconditional
yeah sure
I can take the same logic and apply it to * anything * it is not an argument
netting
-
AI still operates within the boundaries of its programming and data constraints
-
it still lacks true understanding or reasoning beyond patterns
0 buzz words. keep reading
grind
jdjjdfnjfnjfjfjfkfcjjffjffifjdjfifufufujfjf
jdjjdfnjfnjfjfjfkfcjjffjffifjdjfifufufujfjf
hetero
uurr our brain operates within the boundaries of its dna and biological / chemical constraints durrr, it can never beat the endless stacking of computing power that never fluctuates or corrodes 
like cool! it really is just a huge meaningless mess
t’s also important to recognize the adaptability, emotional intelligence, and intuitive problemsolving that come from evolution, experience, and consciousness... none of which can be replicated by raw computational power alone
so you still make no sense
"intuitive problemsolving" "adaptability"
gl trying to beat alphago at go btw
Ok so, after looking into this. There was only one single problem (124) that was done fully autonomously without human intervention. The problem was university level mathematics and the only reason it wasn’t solved prior it because nobody cared to go over all of the loopholes that could have been in place for it
what is go
do you know what those words mean or not

fully autonomous is not required, and the low hanging fruit portion (which applies to almost all erdos problems) is also irrelevant
a very complex game
???
Buddy wdym fully autonomous isn’t required 😂
bro who tf plays go
The whole point of this debate is that AI can think on its own without any intervention or extra data
@hollow summit AI is a tool. It still doesn’t get everything right or correct. You still need human interaction, intervention, monitoring, correcting, etc. Learn to use the tool to improve upon your own skills/abilities and improve your workflow. Simple.
your claim was "no assisting true human achievements" and "cant think beyond what already exists", which is untrue as you hopefully realized yourself by now..
im a robot acting on my own volition right now
its quite popular in asia
beat that
yea that makes sense
it can NOT think beyond what already exists
it can tho
how
i literally showed you how it can...
idk i wanted to lie for no reason
@hollow summit Also...If AI will replace programmers, who still has to tell the AI to do it...
programmers
ur going in circles man
we get more ai to direct the ai
what does --native and optimize 2 do and strict!
Ok, I agree that it is assisting but only on taking the large task that have already been researched and done before by humans
@hollow summit There's something that AI can't do that's why software engineers exists till today which is AI can't create a new data... It can only give us data that already exists and combine those datas and not everytime it's correct also like it's also a coded software it also has flaws like using AI for complex situations you will get a grasp that AI itself cannot change but needs a human constantly altering or feeding AI... Since it's a coded software it cannot generate out of thin air like a human so it's safe to say there are sessions in software engineering that are going to be safe but I don't think there's even a slightest possibility that there's going to be an AI that can think and act
i wish there was an ai that would slap me every time i tried to nap in the afternoon so i could fix my sleep schedule 😞
"AI can't create a new data" what does that mean bro
i think hes trying to say sm like "ai cant create new data"
as for the second part I still stand on how it is incapable of thinking beyond what it was fed
cant create new data...
the example you gave had an AI that was fed existing math concepts
and all it did was spend time mashing it together
Building upon problems that do not have solutions or training data.. how exactly does that work without going beyond?
to get a proper outcome
define data
look into the question
bro
it simply had the time and resources to find the right pattern that would match
info..
well for the math problem it was math literature
things that people actually uncovered
speed does NOT = intelligence @hollow summit
Here the AI did not find a new concept
hence no actual progress was made in the math field
idk how you could possibly come to that conclusion when you have ai playing stuff like go...
is the saying "if worse comes to worse" or "if worst comes to worst" help me out here
emegrency
i need to say something smart
dude what
There was training data


