#code-discussion
1 messages · Page 163 of 1
Thanks
Best tips for scripting?
i am making a two player obby and cant seem to grasp how to put player on the same team and only they can intract with the samee object is their any code help on the internet
learn how to optimize your code as much as possible
Does anyone know how to make a 2d game on Roblox?
yes
lua is same as intermediate python MAX, its way easier than ml
Aight ty
gets the type of passed argument in plain lua
ty
good luck
i deadass saw a skid with the luau programmer role yet he still uses datastoreservice 🥀
whats wong with it
i dont make roblox games
connectivity problems and throttling lol
profilestore is better
while its still built on top of datastore service, its better than it
if not Bool or not Check() or NumberA > NumberB then return end
``````lua
if not Bool then return end
if not Check() then return end
if NumberA > NumberB then return end
Which one is better, what do you guys think?
i would say 1st one
damn bro thats crazy
Guys am i need a remoteFunction for local script item picker? so it will connect to global if player pick item

My bad for being stupid
Guys how can you type in a print statement both a variable and a string in one sentence?
Do you mean
Print("example string" + examplevariable)
Sorry if i misunderstood the question i use python and this is the way it works
yes thank you
It works fine in luau
but using , not +
Ah i see , I'm still new to luau
u can either concatenate ("hello"..world that is like "hello" + world), u can use the comma or u can use string interpolation `hello {world}`
last is always preferable imo
tbh the last always slips my mind, just got use to using concats often
@dry willow
Hey I help
Bro stole my ye ye gif 😞
a lot of things
they can be used as arrays, dictionaries, classes, hashmaps, structs, linked lists, queues, stacks and everything fucking combined
Yo, i created a discord that give free assets that i dev every week if any is interested 😄
what
so like what i know only is that tables are used for saving sh
thats what chatgpt told
wait do u have any experience with other programming languages
oh
ok in that case dw about what i said too much for now
just know that tables can be used to contain multiple variables essentially
Ohh okay
and each value corresponds to an index
thank you
that is if you use it like an array
where numerical indexes will correspond to a value
a box
for example:
local t = {}
t[1] = 5
t[2] = 8103
tables are a huge topic tho since they can be used for almost anything, so for now, master the array structure for tables then try dictionaries. dictionaries are tables where string keys correspond to values. for example:
local d = {}
d.a = 5
d.A = 20
d[“spaces in between”] = 500
sounds confusing.. but ill try
you can also initialize them like this:
local d = {
a = 5,
b = 2,
c = 9,
}
yeah as i said first learn tables
it can also help to learn a lower level concept of tables/arrays
ill learn tables
lwk @fresh stream jus go to alvin blox or something he will teach you 🥀
like how they work in C or C++ or rust
devking better
maybe
hell nah
both are good
ong gng
read luau docs
i have only used devking he teaches pretty good
dont
website?
brawl dev ive been learning on him since 2017
he is outdated
search up luau docs
and really bad at explaining
he is outdated but his humor and explaining is good
humour 🥀
ill try watching brawldev
dont use him you are going to shoot yourself in the foot
there is no humour in coding
use brawldev
only suffering and pain
no hes funny sometimes
but coding makes me kill myself
you are getting the hang of things then
that is roblox docs, they are good. what he is referring to probably is https://luau.org/
yes u can also read this aswell https://luau.org/getting-started
A fast, small, safe, gradually typed embeddable scripting language derived from Lua

also learn how computers work in general, it will help with any programming language
@fresh stream tables are just boxes to store any data in them that can be accessed via indexes thats it
unction ispositive(x)
return x > 0
end
print(ispositive(1))
print(ispositive("2"))
function isfoo(a)
return a == "foo"
end
print(isfoo("bar"))
print(isfoo(1)) WHAT THE FUCK IS THIS
First thing i see when i click get started
thats basics dude
.
syntax
i wanna die]
its not that tuff bro
tbf alot of it is common sense but alr
luau website does have some more advanced topics but keep to basics for now until you master them
It's the tip of the iceberg bud. If you think this is hard, just give up.
show me the end of the iceberg
Hmm idk what's at the end
Personally the only problems I'm having are with Roblox Studio itself
Physic kinda wack
this is the most advanced you can go in terms of syntax and language features
https://luau.org/typecheck#type-functions
https://luau.org/typecheck#generics
A fast, small, safe, gradually typed embeddable scripting language derived from Lua
theres also metatables but fuck metatables
they are useless most of the time
metatables are indeed useless, but they make organization better
modular is the way
nah
u dont need them for organization
they make it less organized to me
well also depends on the coder
right I can understand Ig
using metatables are always slower than just local functions + they look ABSOLUTE TERRIBLE
he will need to learn oop eventually
actually the one real use for metatables is exploits ☠️
u dont need them for oop either
not really
no
Like a dumbass I didnt know remote functions were a thing
it makes it worse
make its easier for me
i made scripts for many big games and i never got to use then
i dont have to pass the object to the first argument everytime
hookmetamethod
its how they avoid the client side anti cheats
hooking __namecall to remote
iirc
getrawmetatable and hookmetamethod exist
do you even know for what is hookmetamethod used 
says in the name dude
well yeah it hooks any metatable
it hooks metamethods and uses hookfunction internally
Me before remote functions
function Module:Function(callback)
table.insert(self._onFunctionCall, callback)
end
function Module:_fire(functions, ...)
local args = { ... }
for _, f in functions do
task.spawn(function()
f(unpack(args))
end)
end
end
i was talking about game's localscripts/modulescripts
???
nevermind
what if u want to capture or modify a remote call
u need to hook __namecall
of game
completely unrelated but this makes me wonder which is better between unpack and table.unpack
and what the difference is if any
idk ngl
i just use table.unpack i heard from somewhere that its newer
they are probably the same thing tho
me too
not to sure
im gonna test it rn
yall ever made plugins?
plugins are fun to make
but the problem is getting an idea for one to make
from my testing i have concluded that table.unpack is slightly faster than unpack
you are assigning the value of 3 to t
yes
3 is not a table
wow
syntax for table is {}
3 is a number bro
oooo
if you wanted to assign 3 as a value in a table you'd do t[index/key] = value
wow
uh
or table.insert()
t = {b}
print{t} 19:01:20.227 ▶ {...} - Server - Script:2
print is a function
this guy told me to
he meant referencing tables bro
wha
its better to use t[#t + 1] = value, unless the behaviour of insert is intentional
^^ its alot faster
or if indexes dont follow on each other
im suffering
hello suffering
good
function use parenthesis not curly braces
erm actually…
generally
???
why is session locking a thing considering roblox disallows multiple instances of the same client
if function takes a table you can call it like this
local function lit(a: {})
end
lit {}
just a safety measure
mabye
like i understand allat
you can do the same with strings
local function st(a: string)
end
st “hello”
why, you can even do print"hello world" and it will work
why make a safety measure when the problem is impossible to exist normally (only studio people can make multiple client instances)
is there a use case for this
what
not really
lmao
Right?! I made a simple one that I haven't seen before. But it's too simple.
not with table or string variables
functioncall ::= prefixexp args
args ::= ‘(’ [explist] ‘)’ | tableconstructor | string```
amazing
print("hello world")
my best script
amazing
have you ever coded before
i can
its just that idk how tables work
try this random video i found https://youtu.be/NptnmWvkbTw?si=crO4Kr8-jKVJcT4M
This covers looks at the concept of an array and why we need them.
Book: Learning Processing A Beginner's Guide to Programming, Images,Animation, and Interaction
Chapter: 9
Official book website: http://learningprocessing.com/
Twitter: https://twitter.com/shiffman
Help us caption & translate this video!
📄 Code ...
array in luau 💔
My fucking laptop overheated in roblox studio I cant
do you have like 2 gb ram bro
I have 8 and im fine ✌️
anyone looking for work rn?
sure
dm me
de
u script?
who knows how to code UI's for steal a brainrot type game
create
?
yoo guys i swear roblox voice chat is proximity why can i hear everyone in my roblox game bro
@static coral
why is it when the volume of the music is set to 0 (set it on a local script) present in soundservice the music STILL plays ?
script:
if toggle then
for i,v in pairs(game.SoundService.BGM:GetChildren()) do --BGM is a soundgroup
v.Volume = 0
print(v.Volume) --prints 0
--music still plays
end
else
for i,v in pairs(game.SoundService.BGM:GetChildren()) do
v.Volume = 1
end
end
programmers, how long you guys reckon steal a brain rot took to develop?
my only guess is respectfilteringenabled in soundservice
anyone know how to fix this problem ''workspace is not a valid member of'' my user im tryna make my punch make dmg but i just cant fix it if any of you want to help out just dm me
ive iterated through a model to turn off collisions but i still cant phase through it, anyone know why?
local clone = modelToSpawn:Clone()
for _, part in ipairs(clone:GetDescendants()) do
if part:IsA("BasePart") then
part.CanCollide = false
end
end
ive anchored the model so it doesn't move
it means that "workspace" that you provided doesn't exist in the subject you directed
too late deleted the script
too late im rewriting it
returns from the code basically just ends the code without executing rest of chunks of code that's left
uzbekgpt
I think you can use PhysicsService
this looks cool
possibly support for that cool thing that the roblox handles do where they become tinted behind objects
i see
it was enabled and i disabled it but it still does the same
yeah i got it working
got another question though
how many times can i use scaleModel on a model becase ive used it once and it works but then i try to do it again and it doesn't work
now ive printed out the size of the head of the model and it does show two different values every time i scaled it
but appearence wise it stays the same
yo so i have this ui and im using ui page layout how can i make it so that there is the itehr image on the left, center, and right while maintaining a ui page layout?
Yo guys does anyone know how to script a currency pop up? Ive never used tween service, plus im new to this type of coding cause i usually do UI management and data handling
Just asking if its simple to script
yeah
And if i should use a module to Run in different scripts
Instead of writing 200 times the same function
your choice
I dont really wanna ask people to make It cause im here to learn but do u have any video reccomendation
should prob try making it yourself
if you face issues go #code-help
I have 0 experience with tween service i know NOTHING bout it
But
Its my journey
Andnto be a good scripter u Need to know lots of things
So i'll try to learn it
Thanks Bro
Im in vacation in south Italy rn coming back the 19th
Excuse me im on a call right now
lmao
Bah but like they make a tutorial and then Just show the plugin
Guys is there anybody who could review my shitty code that ill use to apply for the luau role? 
yes'
send!!!
can i dm you if youre not kidding
yeah
is roblox down bruh
kinda crazy looking at it
thinking that theres people who dont (yet) know what arrays are
its like watching monkey rock a rock
and then the rock becomes a processor
and monkey starts programming
send through
could i dm please?
yeah
Keep your mouth shut 🙏🏻
how can I fix the base R15 idle animation from clashing with my replacement?
Yo would any scripters like to try out joining my advanced Developer Team
Animation priority
can you get scammed out of a commision
I need a developer
Hey curious how easy it to set up like a admin spawner only kinda thing I wanted to be able to spawn in a car for example
Lol
Cloning and repositioning a model
Is it hard for you
With no scripting experience yes
Aight
A ui button and a remote event basically
Fire the remote event when the button is clicked and on the server side clone a car and position it when the event is received
This wouldn’t be accessible to any player right
oh it 100% would be
but you gotta figure out how you want to define admins
is it a username, userId, groupId, a trello list?
uhh
guys
i want to create a system where my hand will be moveable by a custom joystick
something like this
https://www.youtube.com/watch?v=26FqM24KcY8
Vr Fake(FE) → (2025!)
Script:
https://rekonise.com/vr-script-rigwd
Roblox account: https://www.roblox.com/pt/users/4317877872/profile
If you don't want to wait an hour on the website or don't know how to do it, I'll teach you in another video👍
ib:@F8DYT
…
Oh okay username mainly
any idea on how i can get started?
i am not rly a scripter or anything (just need this single setup)
Or maybe by group role?
dm me if your investing in game ideas (really high potential)
okay, then figure out how you get that information, verify it, and execute it
I’ll try and figure that out thanks for the help!
who can help me fix the admin system in my game? helper get free admin
guys
its possible to create a Camera System who streams in real time to another part? without showing it using Camera.CameraType = Enum.CameraType.Scriptable
like it
viewport frame/raycasts
thank you
anyone know why my spawns are dissapearing if i play the game via client but they come back if i put it to server?
their dissapearing not moving to somewhere else
bro does anyone know a fast way I can learn coding, not like an easy way but just any way I can learn it and absorb it faster so i can climb the ranks yk
scripting yourself and reading documentation
experimenting and truly understanding why it happens
chatgpt
or chatgpt yeah
what
ask chatgpt for code with explanations
ohh
only if it works tho
alr ty
doint read if it doesnt
ye
chatgpt is a jokester
but u also have docs
chatgpt has prefered methods of doing things most of the time
so it wont teach you some useful things just because
so read docs
at least to the point where you know something exists and what it does
alr
and wit hdocs like where do i even look
theres so much stuff
am learning it to we could help each other
go to rodevs
you look for what you need
try making a game and just search up stuff when you need it
sure i mean im niot crazy advanced but im likke
scripter 1 level in roblox studio comm
alr
but example; if i was making a sword system like idk what i would search up for say parrying or a swinging phase or something
am starting today man
dw i was hoping to learn from you
hitbox
animator
tho for hitbox youd use premade module
unless you feelin brave
wouldnt start with that though
Is this why there's so many skids trying to hire in help 
yes they got lost
we have to direct them to rodevs
Lol thanks they are all unfinished asf tho and some people say they are quite bad
but bad or not, u can do basically any of those after 1-2 months of scripting
wow
i see
am exicited now icl
tbh most games actually are simple features- but a ton of them. thats the hard part. making 1000000 features for a game
its actually awesome, like maybe the start kind of sucks but its sooo much fun to make anything u want
and everyone wants to work with u too
i see
Is anyone good at scripting squid game games?
What do you mean?
Yea i know, just to keep me busy though and ill ask people if they want it released. If they do then thats what ill do.
Hello What is the yellow sponge called
theres no error but, the animations didnt played, can someone help? ill send whole code if needed
how do games like roblox replay (game that shows you the past games youve played, all the way back to the first) work? like do they use an api or is it a roblox function, and if they do use an api can someone tell me it? :D
id assume an api cyz there is no core function that would let you do that
I have no idea what api that could be tho
damn
Badges and stuff
any script to make a text label
pop up on screen random areas
like when u get close to a monster in the mimic?
is 50$ for having someone script a data store, a pls donate type stand system, leaderboards, live donation leaderboard and all time donation leaderboard, and a global promotion board that puts ur gamepasses up on a board that all the servers can see
It doesn't show the games without badges
damn
Making walkspeed overide but more fun. You stop if you either speed for a certain amt of time, hit a wall, or hit a player
how do you expect us to help when youre showing it in this way
its abt this game btw
I might know why
ur using a free model double jump script, i used to use the same one.
if ur using a custom startercharacter, you need to go into its humanoid, and set 'UseJumpPower' to false
There’s no need to add the number indexes btw
How can i get into scripting
Wdym
Tutorials, documentation, dev forums, and most importantly, trying to code stuff
lf someone to script an emote try on game for me. more info will be provided in dms
Roblox scripting is so easy. Just copy me and you'll understand everything.
⭐ Best Book for Learning Roblox Scripting
https://www.youtube.com/watch?v=w80gGTovps8
⭐ Hire me to teach you scripting (1 on 1 calls)
https://scriptsstudios.com/products/professional-roblox-scripting-coaching
Hey there! I’m Kushal, and if you’re someone who dre...
Hey I scripted on that game
uh...
Probably best to use another tutorial
For me, his way of tutorial really helped me a lot
The BRAWLDEV tutorial arent good for me
Hey there
Anyone here capable of doing Real-time Aerodynamics in Roblox?
does anyone work with cmake
kinda but more of just make/Makefile
When making a turret, should I use hinges or motor 6d?
hi
It wouldn’t if you add some restrictions
Google how to replace Roblox’ default animations
alright alright
@remote oyster is that picture you put in creations a self portrait
Hello I’m a new to Roblox scripting looking to gain experience, and I’m happy to offer help or take on small scripting tasks for free. Whether it’s fixing simple bugs, adding minor features, or building small systems, I’d love the opportunity to learn while contributing and improving my skills, please DM me if anyone needs help.
Ye
guys what would u say is easier: modeling, scripting or building?
i need help with a simple code, dm pls
hey i can help u out
ur pretty hot then bro
Is it possible to script gun skins if the gun is more than a single mesh/part?
👨❤️💋👨
🫃
you can swap the textureid or material/color directly
local grocerylist = {"carrot","bread","milk","potato","carrot","carrot"}
print(grocerylist)
local item = grocerylist[1]
print(item)
Do you know how to make the character change every round?
like randomly?
change in what way
you would need to create table of all these characters
like store these characters somewhere, fully ready for gameplay
and then make some randomizing pattern to give these characters to ur player and add stuff like, if someone has naur others cant have that
alr
if u want
ye right
as if I would want everything random
characters
that other player can have it too
but no all time
example 3 players are separated on 3 games 1 has naur and 2 player has naur 3 has haur
i mean in this sense
yeah well u need to add these conditions etc
that the chances are random
make a module for randomizing things
i dont do comms sorry
oh alr
mp4
?
Whats the event that deletes a part
Destroy
we have to download mkv files to actually view it
use obs or something to record brah 🥀
i used it on obs to record bro..
then set it to export as a mp4
ok thx
anyone got any game ideas
💀💀
so
if u want to learn
u can start from official lua tutorial
it will get u trough syntax features
alr
then practice, use roblox docs as reference for features
yo i dont understand english that well, so wdym by us it as reference for features what that mean?
roblox docs have each thing roblox engine can do listed
u can use it to know what u can do and what cant
Does anyone have any assets, if you do dm me please.
what assets
any type
yeah np
Aight sure
r u just sending ts to look cool at this point
fym bro
like chill out with ts why tf speed getting penetrated
u the one trying to roast

U started it ngl
ok so i cant post pictures then?
you can just why reply to me when doing itt?
first of all why'd you ask for stuff for a steal a brainrot game 😭
and second of all idea's got to be cringe posting here
Oh my pc
i clicked this and got 156 trojan viruses
tried copying blox fruits dash system
Late reply but what if the gun doesn't have textures?
guys im kinda new too learning code. whats u guys best tip to start learning. i know the basics. like click on a gui button to make a textlabel pop up with customizable font and things. but thats the most far i can come
does debounce just prevents the script from running more than once?
Its aight just needs an anim
i wanted to see some code discussion wth is ts 😹
Use as many tutorials and chatgpt as you need, when it shows something youre unfamiliar with read its documentation
the script doesn't run the 'if debounce then return end' line right?
yes
its the same as
if debounce then
return
end
just 1 line because it doesnt need to be expanded
that is what makes the debounce work
alr thanks bro
ty
hi guys
anyone watch hiatus tutorials?
if you have finished
i js need to ask a question
theres a huge stigma against using ai and while it's mostly justified, it actually helps you learn so much. Ive been scripting for over a year now and I'm at the point where like 80% of the time i can do whatever it is I want to do without having to look it up. The way I learned was just by trying to make whatever game I wanted to make and if I didnt know how to make something I would use a tutorial or chatgpt.
Another thing is it's ok to make your dream game early on bc theres no hurt in never finishing it or making it bad bc you can always remake it, I wouldnt invest money into it though,
stigma? sigma..
😐
u just gave me my motivation. everyone says to make easier games first but ur smart. Tysm bro. u dont know how much u helped me to my dream❤️
wow thanks
man i want to make a roblox super smash bros game dud
so badly
characters can be mascots from many different games
i disagree
i agree with using chatgpt and tutorials are good for learning
But 90% of the time making your dream game early on is a bad idea
oh
Although your right you can easily remake it into the future and stuff but you would get discouraged after realising how hard it is and might lose motivation
i tried making my dream game early but quit beacuse i barely know scripting
ill turn back to it when im more advanced
exactly why would you waste time trying to do it just to quit
yea thats the right move
i guess so
what games would be good to start off with
does anyone here need a scripter?
do i have to pay you
ummmmmmmmmmmmmmm
its the same thing as trying to make a system you dont know how to make and spending ages on it then saying you can remake it
It makes you lose motivation and wastes time you might learn a bit but you would learn alot more if you focus on re practicing the things u already learnt in smaller games
700 robux 😏
yeah im good
the thing is you can always revisit it
soooooooo
yeah i cant spend money
It doesnt matter moist likely you wont because you wouldve gave up and theres no point
what do u want to make?
waste of time
i mean i wanted to make a super smash bros game but its gonna be really hard
usually you just start working on a different thing with all the knowledge youve gained
its my dream game but ill start off with something more simple
The only time iw ould say it isnt a complete waste is if your at a good point or you are like REALLLY dedicated which rules out 90% of begginners
and then rinse in repeat. its not a waste of time because you learn so much
Not really
You will get discouraged
you need to be really dedicated if youre gonna suceed anyway
Yea but it takes time still
im not saying its a horrible idea
im just saying its less efficient
than making smaller games
wait what about just a fighting game
thats ez right
not as hard
like semi-advanced type shi
Making smaller games are better because>
You can learn how to make common systems quicker and better instead of learning knew systems right off the bat and you can elarn how to connect systems
You get more motivated seeing progress quicker
You learn how to link new systems with your exsisting ones like you can make a basic obby then a simulator then an rpg then u can combine all those skills
oooo
ok so i should start off by making an obby
I mean
me personally
i would say a simulator is better
if you got decent experience
ah alr
because obbys are mostly building too me
i have some experience with coding
not too much tho
and dont teach too much exept some basic data saving (for checkpoint saving) and like alot of kill bricks and simple cframes
true
but i feel like
there are too many simulators on roblox sadly
i dont think that should stop me tho
Hello Scripters! I had a question, what would be a reasonable price for a:
relatively easy script (Basic Scripting)
medium easy (Basic Scripting)
medium (Medium Difficulty)
advanced (advanced difficulty)
hard (Hard scripts)
Thanks for helping out!
whats a good ragdoll module?
Im using a remote function
Client > Server > Client communication
But the server value is firing double but it doesnt make sense because the client only fired once, and because it is firing double, the value I'm trying to return comes back as nil 😭
whats a good ragdoll module?
I have a question does anyone know what I can do to get good at scripting besides YouTube tutorials. I am currently watching brawlsdev scripting series but I don’t know what else I should do
Think of something you want to make and try making it using documentationsand stuff
stop watching youtube tutorials and just go script. Experimenting and failure are the best teachers
still like the paid positions are freaking impossible
when do I actually get good at scripting?
like how many hours in studio?
Anyone answer?
how are we suppose to define the difference between easy and medium
like longer taking time scripts
for every person it takes a different amount of time
it would be helpful if you could provide examples for some if not all mentioned categories
Anyone got plugin ideas?
Yes
Make generating images with parts
From s decal
is that possible?
easy, like door script, music script
medium, scripting complex things
hard, like scripts that take 1+ hrs
because you would need external resource i'm guessing. Roblox doesn't provide you with enough to examine decals.
you need to define complex things and every scripter writes code at their own pace...
bruh just tell me what the average price for scripting is
1+hrs doesn't mean that the code is complex
something easy medium and hard
1k robux is good pricing for scripting?
and more for harder things
entirely depends on what you need, sorry
define good?
yo
ngl if you've got the basics down and know how and where to search for things you don't know
you could probably get hired
after you've done a project or 2
I have a table of 2d buttons, how can i check one of them clicked w using for in pairs
Is there a specific use case you're implementing? If not, the buttons expose an Activated event you could use
ik ui buttons
wait
If it's on a UI, then a regular 2d button object. If you'd rather click a part, clickDetector
Can I see this full thing?
here
You're meant to iterate over the players PlayerGui -> TowerFrame, versus manipulating StarterGui
oh
you're right
thanks ❤️
IT WORKED!!!!111!!!
im working on my first project
tower defense type thing
appriciate it
btw does Value on values considered as nul? @forest hinge
default one
Which one?
so how can i check there is a value or not in script?
if stringVal.Value then ?
like this
nvm i got it
string functions?
If you mean functions in the string class like string.sub, those can be useful in advanced scripting, but if you're just starting out, i don't think you'll need them that often. I'd recommend learning a little bit about them, but you don't have to memorize and perfect everything about them until later on
thanks
Is it true that when becoming a dev most people only choose 2 skills and rarely 3? Like for example a dev has skills only in scripting and aniamtion.
i guess just move the neck motor6d tbh
but you resulted into a fidget spinner
it depends on your imagination tbh and your willness
some solo devs have these skills and tbh they can make really good games
not for me because i only do coding & sometimes ui
Thats what most of m yfriends say
oh
The schelp situation is getting really bad and I'm curious what's gunna happen to the develooper community like are we guna lose money? Will there be dev ex? Roblox gunna get banned?
who knows bro
it will be over if saul goodman takes over the lawsuit
if it gets banned I'll emigrate to source engine
🗿
I'm genuinely kinda worried since I'm learning luau to build my dream game and to make some cash but idk if I'm too late and now It's pointless
from this point i think not since people are still playing
depends where it's banned it's gonna be vanished
😔 If only David Baszuki would've stopped snatching minors and actually do something
Anyone here have experience with vehicles?
Unban Diddy that's it
Anybody need any help with scripting just dm me.
And i promise I’m dirt cheap
Trust me
You wont regret it
I think eric cassel be better ceo
Low key, learning to script is kinda fun tho
Yes you can do so much silly stuff
are there downsides to having pretty much everything in your map a collision group of something other than Default?
I choose every skill
lol
Idk why
Ig I like doing all of them
long
months?
There is nothing to be worried about
Probably years
dang
Roblox will probably win the law suit tbh
Or just apologise
And unban schlep
Is give this a month max to continue it will die before then
Apologise 😂😂😂
sooo are all scripters offline or just dont wana respond to dms when they posted they looknig for comms..
so is my avatar aura
becoming a dev means 98% chacne of quiting after watching like 3 tutorials
i did that once
Guys does anyone know WHATS the best way to make roundsystem e.g round 1 then round 2 in order
Are there any downsides to using Remote Events instead of Remote Functions for 2 way communication? (In my case, Client > Server > Client).
I can do OnServerEvent for the server and OnClientEvent for the Client so it basically acts as a remote function, right?
I find it easier to use Remote Events than remote functions so I’m wondering if it can be a preference thing or if there are specific parameters that make Remote Functions better for 2 way communication?
no
if its easier with events just use them
local rig = script.Parent
local humanoid = rig:WaitForChild("Humanoid", 5)
local animator = humanoid:FindFirstChildOfClass("Animator")
task.wait(0.5)
local animationId = "rbxassetid://102459832157383"
print("[AnimateRig] Using AnimationId:", animationId)
local animation = Instance.new("Animation")
animation.AnimationId = animationId
local success, trackOrError = pcall(function()
return animator:LoadAnimation(animation)
end)
if success and trackOrError then
local track = trackOrError
track.Priority = Enum.AnimationPriority.Action
track.Looped = true
track:Play()
print("[AnimateRig] Animation loaded and playing!")
end
what is wrong with this script
i tried to debugg it like 12 times yet still cant figure it out
yh pay me
why would you pcall an animation tho?
and also are there any errors in the output?
nah it just doesnt animate
i got a question for yall (coders obv), how did yall not lose motivation or if you did what did you do to bring it back? im freshly starting to learn scripting so right now my motivation is actually pretty high and consistent, but im worried that itll fall off with time
How can you find people to team up with on a game?
Interesting project with an active and interesting/supportive dev team. If the project isn’t interesting, the motivation is hard to find
Thinking of interesting/niche concepts or finding ones that other people came up with or looking at what others have made also helps
Boredom is also a big motivator for me
Hiring and for hire sections of the server or just work on different projects/get to know other devs
where is it to start best when ur tryna learn scripting?
Yo would the mantis lords boss fight from hollow knight work for Roblox?
learn basics from videos, then make small projects, and look at other peoples code
Money
You are definitely gonna be finishing a project if you know there's a few hundred dollars at the end
Also, make systems that you can reuse
Small systems that work with each other to be build up a game
If anyone here can animate UI to a crazy level, DM me. Will pay USD
can anybody help me improve/fix my script?
what others said, for me it’s about the project, if I get bored I’ll start my own game
Finishing stuff feels rewarding, even if it’s just something as simple as an item holding system - I also try to make things I enjoy, not cashgrabs for example, can’t imagine getting myself to work on one of those
Still worth learning languages like python?
Technically yes because you can do other stuff that lua can't with it
But no because it's a different coding language setup
Learning other languages will always be good
Yeah exactly it's always good to have a diversity
Specifically what I mean is that AI is rapidly expanding, would it still be worth learning?
what do you consider a crazy level
People will always perfer authentic human work then ai
Is the level massive
AI isn’t always correct while it can be useful to a degree being dependent on it is bad
learning AI related fields is ur best bet
future proof job
💀
elaborate
theres lots of ai related positions open for hiring
ofcourse, the people developing it.
if agi is possible everything can and will be automated
strong if
nobody knows
everything about AI is speculation
it can hit a wall or exponentially improve
exactly, so why assume the most unlikely outcome
I think the idea of choosing a career based on the idea of 'ai proofing' is dumb
correct
but the person talked about it, so i gave an answer
i doubt ai can and will take my job
Could anyone help me?
im making a game similar to walk 127,836 studs for a burger
but instead of a burger im making it a pizza
this is my first official game
so basically i want help to code a pizza when equipped it makes my speed +10 and when i unequip it, it makes my speed go as it was
local tool = script.Parent
local humanoid
tool.Equipped:Connect(function()
humanoid = tool.Parent:WaitForChild("Humanoid")
humanoid.WalkSpeed += 10
end)
tool.Unequipped:Connect(function()
humanoid.WalkSpeed -= 10
humanoid = nil
end)```
Put that in a script inside your pizza tool
wowie good job
why would you need a waitforchild
Prevents errors
oh ok
Technically the thread will yield forever this way but
that's both rare and prevents big red error
so good enough for me
i honestly dont know a situation where humanoid wouldnt exist but still being able to equip the tool and use it

if theres no humanoid at that point just get rid of the tool!!!
I just use WaitForChild by habit
oh man
descendants of characters tend to be annoying and replicate slow
In retrospect though the majority of my issues were because of StreamingEnabled
dam
god my targetlock is fucked
Hi Devs
I have an issue in my react application . I am using react redux and java as a tech stack in my application . It’s an issue of reload and rerouting the page.
Also I have tried solutions from copilot but didn’t work that as well. So the issue is -> I am logging in to the application with the saml login , it works perfectly fine and apis are success we are getting response , its hitting out main index.html file and calling our new bundle file main.987.js and ui is getting loaded . Now when I try to reload the same page , it’s not hitting our new bundle file and calling an old bundle file main.453.js and apis are failing and page is not getting reloaded . I tried with the browser history solution also like maintaining the history and all and also tried to write the rewrite rules but that also didn’t work . It’s a hot and assigned to me . Backend team is saying it’s a ui issue but I am suspecting a backend change . Anyone face the same issue or know any solution ,I would really appreciate.
Also,we are not using express js using react router only
lf scripter
im too broke to get one
send game in dms
how much would a basic custom vehicle system cost
hireable
just do projects build a small portifolio
yh, thatll prob take a week or 2 to reach
Remote events might fix my gaps
trial and errors
yh, js gimme 2 months or so to learn atleast how to find all the info I need
pretty sure I got past the deppresion part of learning
i can suggest u where to start
sure
start with networking libraries
if ur familiar with a bit of coding and networks u should prob study networking libraries and learn implementing them in ur practice
then study about frameworks and start applying their principles in ur code
rn I'm still in the practice part of learning but ill get to that asap
you'll be like 60% ahead of general people
if u just get these 2 things right if its about roblox
yeah well it takes time to get it through ur head
but its wworth it and saves u 3-4 system redesigns
cuz eventually you'll realize the drawbacks of coding without these principles in ur mind and would have to redo ur projects

cuz like acc earning from this will make me not have to work a part time job at mcdonalds once I go to college
well i would appreciate taking time into failing and like
going thru them urself
but if ur short on time and determined you'd wanna start by learning about frameworks, networks, backend first
atleast thats how i did it
I didnt start junior year yet, dw
aight yeah
is this a good anticheat message
LOL
look, if ur doing a custom message, better go all in
fr
we dont bro
we vibe code
and larp in code help
me and @sleek shuttle do ts all the time
while having neovim and linux open
there are plenty of resources in you tube to learn Luau. theDevKing has a starter to intermediate coarse in it. Luau is a good language to start with
I do Roblox and ts the hardest thing iv ever done
I tried that twin didn’t pick Shi up
I understand functions and tables and variables and Shi
Just like stuff like function(player: player) and stuff like that WHY IS PLAYER IN THERE
it takes time to learn your first language but if you start with the basics and work up you should be able to use it easier
3 months gang
that is just a naming convention you don't have to add it for it to work
And like idk when to put stuff where and like most the time I don’t understand how to use the knowledge iv learn to do something
Also no clue how model scripts work ik there like date holders
goated error
module are great to learn you could learn from videos talking about how you could use them or forums/ documentation
There that useful?
ive programmed for over a decade and still will look at docs bc of forgetting stuff lol
did roblox for like 4ish years now
3 months is hardly any time gng, keep up the grind. Even in uni, intro to programming classes take a year
if you don't want everything in one script and you want systems to be easily added to new projects then yes
Oh I’m not givein up for sure but like damn
Oh alright I’ll look into them
And a lot of the time I need a video to do the things I’m doing
its similar to the art saying -- you have 10,000 bad drawings in you, you just gotta get em out.
For programming, the overall message still applies. You gonna struggle a bit before everything just clicks.
when i was getting my cert in IT they said we would be using python in the programming introduction. but then they swapped it for C# 
id quit if I had to do either or. If im taking a programming class, its for advanced applications of C or ASM
That makes sense cuz over the 3 months I have been like kinda picking up on things
I take no classes cuz im 15 and in highschool 😭
eventually ive been meaning to make a tutorial series on YT, taking a different approach than people like byteblox.. i just havent gotten a chance to plan stuff out yet sept im still working on projects
no it was alright i just had to get used to the OOP format and syntax, i passed the programming introduction and i am still using C# for fun and i plan to swap roblox with monogame for more freedom among other reasons
Thanks for the help tho guys what lil tips yall had will help a lot
id quit bc i already know both lol. I use python for automation (when it doesnt make sense to use a make file or bash/batch). Then used C# when learning unity
I’m actually working on my first game it’s a clicker but the clicking isn’t workin and im trying to fix it
alright
you dont need to there are plenty of free resources online. programming courses are more of something you can use to prove that you can code for a job. i have learnt lot from videos and forums online
I’ll go online to then
it was only one unit in IT out of around 7
Chat iv been cooking even if 0 of the code work
anyone wanna make a troll tower obby anime themed game?
Nah I lied data saveing works
can confirm
added mesh wind and animation
i have watcjed brawl devs first beginner scripting toutiral, he has more videos but its so boring. what should i do?
nobody is paying money for allat LMFAO
maybe
wym by that like you need to hire someone or you need quick immediate help
I know a bit of C#
depends on why youre asking
@fallow yoke @mental shore
