#code-discussion

1 messages · Page 322 of 1

arctic belfry
#

The best one in terms of advancement is closed right now for testing I’ll send you a YT video

slow drift
#

nope
thats the guy I sadly sold it to

subtle fractal
#

Tycoons, especially prolly at that level, could have really nice and well engineered backend code

subtle fractal
#

and IIMA

slow drift
subtle fractal
#

kk np

slow drift
quasi light
#

Combat games for example could look really hard but most of the works are into animations, vfx and models

slow drift
#

the new owner did nothing with the game and its somehow still alive

subtle fractal
subtle fractal
#

its much more than just m1 scripting

slow drift
subtle fractal
#

alot goes into ping compensation, netcode, and etc

quasi light
slow drift
arctic belfry
#

Combat games aren’t hard if it’s pure PvP

slow drift
arctic belfry
#

If you make PvE and you actually care about making something you can be proud of it

quasi light
arctic belfry
#

That’s where it gets more difficult

slow drift
#

pve is easier to make

arctic belfry
#

It isn’t

quasi light
slow drift
#

oh bruvhmalaw

arctic belfry
#

If you make slop where the NPCs all take the same position on a hive mind and all a player has to do to beat them is click M1 and a couple skills

#

Yes thats pretty easy

#

But it’s slop, nothing you should be proud of

arctic belfry
subtle fractal
arctic belfry
slow drift
#

youre probably not 16+

subtle fractal
arctic belfry
#

If you read shit instead of assuming your the smartest person in the room with an unwavering opinion

subtle fractal
#

aged in roblox 16-17

slow drift
#

nevermind its straight up set to limited

#

I set it to 16+

subtle fractal
slow drift
slow drift
subtle fractal
quasi light
wise turtle
slow drift
quasi light
#

The optimization it needs is big

#

for a proper NPC*

arctic belfry
#

The logic it needs to actually be a challenge for players

#

Is challenging

#

It isn’t the hardest thing to create

#

But there’s a skill to it

quasi light
slow drift
arctic belfry
subtle fractal
slow drift
#

why

subtle fractal
quasi light
subtle fractal
#

no pfp

#

barely a bio

#

barely in any servers

arctic belfry
#

Ask his social security number next

slow drift
#

thats alot

subtle fractal
#

im in quite a few

#

around 40

somber blade
subtle fractal
#

Also saying youre a programmer in your bio isnt much

slow drift
subtle fractal
#

Are u being serious

slow drift
#

dont know what big optimization would you do

somber blade
subtle fractal
#

"just because you have a name doesnt mean you should say what it is to people who ask"

subtle fractal
slow drift
#

for others atleast

subtle fractal
#

ofcourse you joined today

wise turtle
#

my dev servers

somber blade
subtle fractal
#

it was a question

arctic belfry
quasi light
arctic belfry
subtle fractal
#

@somber blade read context before you yap

somber blade
slow drift
subtle fractal
subtle fractal
somber blade
subtle fractal
slow drift
somber blade
slow drift
#

💔

wise turtle
#

blue roblox one is roblox central don't join it

slow drift
subtle fractal
wise turtle
subtle fractal
#

i cant even join

slow drift
quasi light
#

Guys, is there any issues that needs to be fixed in ProfileStore by loleris?

slow drift
#

I had to make 2 separate stores

wise turtle
#

u can't atomically modify 2 keys

arctic belfry
# slow drift how would you do it then?
  • Create NPCs on the client
  • Let the server handle decisions and authorization
  • Sync actions using server time so everything stays lined up
  • Transfer primary authority to the targeted player’s client for smoother movement and combat updates
arctic belfry
#

It is not

slow drift
#

yes it is

slow drift
#

he wanted optimization

#

bruhvmalaw

quasi light
wise turtle
#

later am playing a game rn

quasi light
#

Any other suggestions for issues in ProfileStore by Loleris?

agile skiff
#

Sup

quasi light
agile skiff
#

Good what about you

quasi light
slow drift
uneven solar
#

boys

#

animation doesnt work

#

dont plkay

quasi light
slow drift
weak bridge
#

double tapping is probably your best bet

#

1st tap for tool tip, 2nd tap for selection

icy heron
#

yeah

#

what person above said would prob work best

slow drift
weak bridge
#

could work also if you can fit that button in nicely

versed arch
#

or just hold down tap

quasi light
slow drift
#

that straight up seems useless

quasi light
versed arch
quasi light
#

Yep

slow drift
#

I dont see why it is necessary to have two

versed arch
#

this is useful even for something as simple as badges, for example, the guy joins during alpha, does nothing and leaves, then comes back to beta

#

its important so that you save his progress from when he joined during the alpha stage of development and then bring it back up when he joins during beta so that no data is replaced/lost (for example, something the alpha badge would give and you don't want to get rid of it by accident when the player joins again)

#

from what i see

quasi light
quasi light
quasi light
honest flower
versed arch
quasi light
quasi light
slow drift
slow drift
quasi light
honest flower
#

so it wont be an issue

slow drift
honest flower
#

for rate limit

#

**

slow drift
#

yeah

#

size you need to buy

#

iirc

quasi light
#

something like 10 max requests per second

honest flower
#

but i dont think size will be an issue in general if you actually know what youre doing and save what you need

quasi light
#

500 requests per minute

quasi light
agile skiff
#

Json

solemn swift
quaint charm
#

how do i send photos

agile skiff
prime plank
# slow drift

Hovering on mobile is js getting the centre of the screen

#

i have a .gettarget modulr thay works on every device

#

including vonsole

#

and it uses raycasts so it supports raycast params

prime plank
#

otherwise hover isnt possible on mobile

#

or atlesst yu need a specific frameoerk

lusty slate
#

"hello world"(print)

drowsy pumice
exotic cedar
#

How could I create a system in Roblox where players can paint directly onto their own character in real time using a brush tool?

Would it be better to use:

  • Decals
  • Small welded parts
  • SurfaceGui/ImageLabels
  • Mesh-based solutions
  • Anything else?
lusty slate
keen sun
#

tool = script.Parent
tool.Activated:Connect(function()
local debounce = false
local part = Instance.new("Part")
local hey = math.random(-256, 256)
local hey67 = math.random(-256, 256)
part.Position = Vector3.new(hey,100,hey67)
local yo = math.random(1, 10)
part.Size = Vector3.new(yo,1,yo)
local light= Instance.new("PointLight")
light.Parent = part
light.Brightness = 100
light.Color = Color3.new(1, 0, 0)
part.Color = Color3.new(0.666667, 0, 0)
part.Anchored = false
part.Parent = workspace
part.Touched:Connect(function(otherPart)
local character = otherPart.Parent
local humanoid = character:FindFirstChildOfClass("Humanoid")
if humanoid and humanoid.Health > 0 and not debounce then
debounce = true
humanoid.Health = 0
wait(0.5)
part:Destroy()
end
end)
end) is my code good

slow drift
keen sun
#

ok elaborate

sage solstice
agile skiff
sage solstice
agile skiff
sage solstice
agile skiff
#

sudo umount /dev/sda1

limpid verge
#

Hey, quick question. If we send using remote event an integer like 123, is it made so that it only sends an int (1 byte) or does it send a double number everytime??

I need to know cause if it is only sending integers, it'll be better if I use bitpacking rather than using vector3int to update my npcs pos

limpid verge
#

always?

hasty mesa
#

if you want to pack data use buffers

limpid verge
#

it's not serializing?

hasty mesa
#

not vector3int

#

anymore

limpid verge
hasty mesa
#

if you bulk pack

#

it will be better

hasty mesa
limpid verge
#

yeah

hasty mesa
#

and if you want to send multiple ones in a table it will increase

limpid verge
#

i'm using that so I can do smthg like that:

Vector3int16.new(
            self.Id,
            chunkX,
            chunkZ
        ),
        
        Vector3int16.new(
            math.floor(localX * POSITION_SCALE + 0.5),
            math.floor(position.Y * POSITION_SCALE + 0.5),
            math.floor(localZ * POSITION_SCALE + 0.5)
        ),
hasty mesa
#

a buffer will be constant bytes + 2

limpid verge
#

so I should switch to buffers?

hasty mesa
#

yes

limpid verge
#

alr

#

i'll learn more abt that cause it's kinda new to me

#

thx, bye

static coral
limpid verge
#

yo i'm so dumb

static coral
#

well nvm everything is just bytes

limpid verge
#

yeah

static coral
#

but if u know low level language they should be easy

#

just an array of bytes basically

limpid verge
#

man i'm so dumb

static coral
#

why

limpid verge
#

when I used buffer last time I missused like I thought iwas bits instead of bytes

#

that's why I got bad results lol

static coral
#

1 byte is 8 bits

limpid verge
#

yeah Ik but like I didnt pay attention, idk why

static coral
#

8 bits = 1 byte
1024 bytes = 1 kilobyte
1024 kilobyte = 1 megabyte

#

and so on

limpid verge
#

yeah Ik IK, but I was used to train some bitpacking on python and idk what I kept thinking that I was using bits but it was bytes

#

I'm so dumb lol

static coral
#

u can do bitpacking with buffers too

limpid verge
#

there is no link but yeah idk

static coral
#

use bit32

limpid verge
ruby compass
#

guys which one looks better for my rpg-parry based game (red or white) for in white vfx the sword is gonna be white idk why its red

olive relic
#

white one is way cooler

ruby compass
static coral
hasty mesa
#

you don;t need that

#

remote events already do that

static coral
#

so buffers are implicitly compressed with that when u send them over?

limpid verge
#

nah but right now i'm happy with the current results

#

thx guys

olive relic
haughty sapphire
# hasty mesa yes

u can still use encodingservice if u want a more aggressive compression lvl

hasty mesa
#

yeah but for most cases

#

you don't need that

indigo inlet
#

i just started coding lua which is my first ever line code, any advice for learning it or websites that are free that I can use to learn?

remote bear
high vine
soft trout
#

Any idea as to how i could weld a hinge to a part and have the hinge rotate? Welds and Motor6Ds stop it from rotating and WeldConstraints make the base part rotate with the hinge

plucky brook
#

I’m trying to code a system for my game that cuts trees like lumber tycoon and Oaklands and I’m new to coding, anyone know how I can do it

haughty sapphire
safe depot
#

I'm hiring someone to make me a Mario cart type map but a bit different

twilit stump
#

Should i add/remove any function?

nova yarrow
honest flower
#

types are a standard

#

you should never be using untyped code

nova yarrow
#

just say priorities bro

honest flower
#

it exists for a reason

nova yarrow
honest flower
nova yarrow
#

who told u dat ☠️

frozen storm
#

it doesnt make a difference at compile time

#

it just makes it more easier and faster to write because of intellisense

glossy slate
honest flower
valid terrace
nova yarrow
honest flower
#

what reasons would you need to use untyped code

nova yarrow
#

theyre good to use but u literally dont absolutely need them

cloud brook
#

u may dont need to use types — its an option, but when u work on a big games or team where you have to be professional then you have to + jsdoc

frozen storm
nova yarrow
#

u can make perfectly fine functional code w/o types

frozen storm
#

you dont need variables

honest flower
nova yarrow
#

how do u think people were scripting before types in roblox lua

nova yarrow
valid terrace
#

skidding

honest flower
#

insert mrbeast skidding gif

nova yarrow
honest flower
#

(i dont have it favorited)

vagrant shoal
#

remember the old API lol

nova yarrow
vagrant shoal
valid terrace
#

lock in

honest flower
#

however long ago that was

nova yarrow
vagrant shoal
vagrant shoal
nova yarrow
vagrant shoal
#
  • unemployed
#
  • 10h screen time
nova yarrow
#

i have like 1 contributed game w like 2m visits tho

vagrant shoal
#
  • larp wizard
cloud brook
# twilit stump Should i add/remove any function?

to me, first i will simplfies the function names. e.g.
ReturnStates -> all
GetState -> get
SetState -> set
RemoveStates -> delete or remove
ClearAllStates -> clear or clearAll or clear_all or destroy

vagrant shoal
#
  • makes 300 robux a month
nova yarrow
nova yarrow
vagrant shoal
honest flower
vagrant shoal
#

you can still be employed

valid terrace
#

scripting has levels bro im a random high school student competing in an ocean of software engineers

nova yarrow
valid terrace
#

i need to hang up the keyboard

honest flower
#

especially ddr5 ram

brave viper
#

To have your game restored, please ensure that all chat, custom chat, and ugc text input surfaces in your games are correctly calling TextChatService and FilterStringAsync or are otherwise rate limited to only allow user input once every 30 seconds.

#

What is it mean?

vagrant shoal
#

what hidden devs commissioner is giving you this amount of coin

valid terrace
#

idk

vagrant shoal
vagrant shoal
#

with reasonable workload

nova yarrow
#

@vagrant shoal can i see a successful game from u that isnt slop

valid terrace
nova yarrow
vagrant shoal
valid terrace
vagrant shoal
nova yarrow
#

yea exactly

#

not even 5 years

vagrant shoal
valid terrace
#

tuff

vagrant shoal
valid terrace
#

ok we believe you now

#

goodnight

twilit stump
#

Yo guys share your code editor colo

vagrant shoal
#

Extra 2

#

cascadia code semilight font

clever sapphire
vagrant shoal
#

but realized how much easier blue is on my eyes when scripting late at night

clever sapphire
#

thats fair. blue is awesome. i prefer red as a color and idm the red at night personally

vagrant shoal
#

red is kinda just a loud color

clever sapphire
clever sapphire
#

ye exactly

#

yours looks awesome. id use it if i didnt have my red

vagrant shoal
#

how did you get the custom icons?

#

i didnt know you could do that with roblox studio i only have customs for vs code

clever sapphire
#

vanilla 3 is what i think the pack is called

#

ye vanilla 3

twilit stump
#

Guys so i have a state manager but my issue is like how can the client know what state it is?

#

Using a remote event wouldn't work because its a fast pace game

clever sapphire
#

fast pace or not should be irrelevant

twilit stump
#

Ok

clever sapphire
#

you can update it normally with a remote

twilit stump
#

So like in the state manager everytime a state changes it fires a update to the client?

clever sapphire
#

in essence, yes

#

if you want to add optimizations like flattening updates to one event per frame, you can do that. but that is unnecessary unless you are running into performance problems

#

the core of it is sending updates on each change

twilit stump
#

That would be more efficient than using a Boolean value right?

clever sapphire
#

is your state just a boolean?

twilit stump
#

Ye

clever sapphire
#

if you only have 1 state that is one boolean, you can just use a bool value

#

creating an entire replication pipeline for a single bool is needless overcomplication

#

well 'entire replication pipeline' makes it sound larger than that would be, but the point stands regardless. a value is fine in this case

nova yarrow
weak bridge
#

you only need to update it when it changes

#

remotes are fine

vagrant shoal
#

if you go scripting for perfection in every work you do you'll never publish games

nova yarrow
vagrant shoal
#

if its a personal thing then sure

vagrant shoal
nova yarrow
#

bro what

vagrant shoal
#

are you one of the oddballs that writes it perfectly from the start

nova yarrow
#

sometimes

vagrant shoal
#

it takes more time to delete all the typeof(Signal.new()) and replace it with the newly declared cached type

vagrant shoal
indigo wagon
#

guys im new to coding so if i do :connect(function(...)) can the ... be a name of the function or doees i have to be a code word depending on whatss behind connect

stone rapids
#

if you do

end)```
the function doesnt have a name, its just kinda chilling there
but you can also do
```function WorldDomination()
end

:Connect(WorldDomination)

you can call the function in other places too

indigo wagon
#

thank you

lost pebble
vestal linden
#

yo

#

anyone know the fix to unstable connection in team create

#

my wifi is fiber

#

1gbps

#

and ive been getting locked out of scripts all day

#

i will have to warn you if this isnt fixed in ten minutes im kicking the bucket

lost pebble
lost pebble
vestal linden
#

its not my wifi

#

is roblox just ass

lost pebble
#

in many ways

vestal linden
#

bro i cant even save to roblox

#

what is this shit

#

Sent message to save game before Team Create turns off. - Studio
23:03:59.117 Saving to Roblox... - Studio
23:07:59.046 Untitled Experience save failed. - Studio
23:11:50.949 Saving to Roblox... - Studio

#

cant even disable team create really?

twilit stump
#

Guys so my game works like this:

RunCode remote event with data -> client

local Functions = {["Abc"] = function(LocalPlayer, State) print(State) end}

Client: Oh ok Lemme see if i find the function

Client: Runs the function

#

So i don't make a ton of remotes

rich nova
#

i am just 13 can anyone teach me developing games just a brief in roblox

solemn swift
#

like marginally

twilit stump
#

How could i make it more efficient

#

I wanna learncathello

solemn swift
#

cause ur sending the extra data over the network

twilit stump
#

Oh the data is like enemy position attack speed

solemn swift
#

no i mean the data is like the extra string to know what to run

twilit stump
#

Just nessesary stuff for the function to work

#

Ohhh

#

I could make it Id in numbers

solemn swift
#

It doesny really matter though

twilit stump
#

A number surely is more efficient than strings

solemn swift
#

yeah it is

twilit stump
#

But i don't think i need to save up that much network

#

I'll keep it in mind tho

#

Thanks

solemn swift
#

yeah it doesnt rly matter im hust saying hearth

twilit stump
#

I use that remote event for almost everything lol

regal salmon
twilit stump
#

Wdym?

ivory lark
#

based

severe spoke
#

guys can some one tell me how to add grid texture on all sides of a part ??

chilly widget
#

Whose better brawl dev or gnome code or the devking

quasi light
#

Yo guys

remote bear
icy gale
remote bear
regal salmon
unreal dust
#

could anyone help with debugging my code

rich token
#

can anyone recommend good horror game to play on roblox

tardy pasture
regal salmon
icy gale
waxen dew
regal salmon
#

the fact that you have that experience, though, means you could probably just go into making a game

waxen dew
regal salmon
waxen dew
regal salmon
#

ah, yeah, that's something you can really only properly learn by either reading a LOT of commented code/docs, or (preferably) writing code using it

#

gotta endure the boring to get to the fun

waxen dew
regal salmon
#

that is typically what using a game engine is like

#

lots more api calls than raw language knowledge

#

like i use Unity to make games more than i write normal C#, so i find it harder to make a standalone C# application because ive spent way more time with the Unity api

waxen dew
#

so a game engine is just an api library 😭

regal salmon
#

that is basically what a game engine is, yes

#

ui-based or not

waxen dew
#

what about oop in lua

#

do yall use it alot?

#

i suck at oop

regal salmon
#

most people here discourage it
i like it personally, but it's pretty weird in roblox

#

roblox doesnt natively support oop technically, it doesnt have classes or anything

#

it uses something called metatables

#

which is basically a table with functions and values in it that can act as an object

#

you never have to use it, but there are definitely cases that would be preferable to use it

gritty sapphire
#

i wanna learn script

regal salmon
#

if you just watch it probably won't

waxen dew
regal salmon
#

you can redefine the function, but its not actually overriding anything

clever sapphire
regal salmon
#

you can try to call literally any function in a metatable even if it doesnt exist, itll just error if it doesnt

regal salmon
clever sapphire
#

yeah pretty unfortunate to see

regal salmon
#

i enjoy using it over not using it when it fits

#

but i also come from OOP-based languages so maybe that has something to do with it, idk

clever sapphire
regal salmon
#

i also dont think it has inheritance but ive never looked into it

clever sapphire
#

where most runtime "objects" are, well, objects

#

but if u are familiar with OOP languages primarily, then yea. huge factor

regal salmon
waxen dew
clever sapphire
#

roblox especially encourages it

waxen dew
#

so without inheritance are games redefining every hero individually in lets say a hero shooter game with rivals like 3 classes

clever sapphire
#

i personally think thats a pretty cool thing. once you understand basic programming logic and the luau syntax, OOP comes pretty intuitively and is easy to manage, even with luau's flawed OOP

regal salmon
#

ahh claude guy welcome welcome

waxen dew
waxen dew
#

is there such a huge lack of actual programmers in this space or something then

clever sapphire
#

i wouldnt rush to that generalization

waxen dew
#

i mean i do wanna properly try out all the stuff here but id need to learn all the 5 gazillion engine apis and their gimmicks

frosty sierra
#

Can anybody tell me have they ever used HapticService

celest grove
#

Which is better, playing animation on client side or on server side

#

lowkey, server side is better with making anim equal for everyone

#

and which animations should be on server side

#

and which shouldn't

#

like cutscenes in fighting scenes, should be in local side?

bronze mountain
#

yo im 16 learning how to code in roblox how long do u think it will take me to get good

clever sapphire
#

player has network ownership of their character

supple spindle
clever sapphire
#

so anims played on the character will be replicated to all

clever sapphire
#

must be consistent with disciplined micro goals for every step

bronze mountain
supple spindle
celest grove
supple spindle
celest grove
#

sounds fun to me, what u think

celest grove
#

same time as now?

bronze mountain
bronze mountain
nova yarrow
bronze mountain
celest grove
#

i think comparing 8 y.o with 16 y.o is js lowkey

#

strange

celest grove
celest grove
nova yarrow
#

are u saying

celest grove
#

you want to say 8 y.o has same knowledge as 16 y.o

#

not in scripting

livid maple
nova yarrow
#

specifically in scripting

celest grove
livid maple
nova yarrow
#

no ai back then too

vestal linden
nova yarrow
#

not even basic stuff but full systems

bronze mountain
#

ai is ruining creativity lowkey does it even make sense to learn how to script in todays era

celest grove
#

i think the example is js silly

bronze mountain
#

i see ppl creating games on roblox with only ai

nova yarrow
vestal linden
celest grove
vestal linden
celest grove
#

wdym

#

im fr rn

#

i dont think there were alot of em

vestal linden
#

i used to watch my dad code when i was 9 ish

celest grove
#

basically, AI is just taking already existing data and changing them

nova yarrow
celest grove
#

for solution of the problem

#

while scripter can create new ways or find new ways of making stuff much easier

#

than AI does

#

i mean, talking like AI can replace scripters is straight bs

nova yarrow
#

loll

honest flower
celest grove
nova yarrow
celest grove
honest flower
#

sad to disappoint you

celest grove
#

mb i sound silly but i don't think yet, that AI is something that able to replace real ppl, after all someone needs to check if the script is good enough, if it works the correct way

bronze mountain
#

well i guess u can use ai as a tool to help u code and to speed up the process but not making it do everything for u

celest grove
#

and you cant guarantee that AI's work would success

#

unlike most of the experienced scripters

#

AI is great technology, but ppl keep overglazing it

#

js look how much problems AI causes when it gets involved into creating or making systems

nova yarrow
#

i love u chatgpt 😍

celest grove
#

eh

#

?

bronze mountain
celest grove
#

claude is def better than chatgpt

#

i lowkey think ppl are overglazing ai

#

i got that feeling for sum reason

#

like it's great technology

#

very good

#

it can speed up most of the process

#

but it's not "job stealing" thing

bronze mountain
honest flower
celest grove
#

would be great to look on

nova yarrow
#

chatgpt genuinely mogs claude bro + it has image gen

celest grove
nova yarrow
#

claude cant watch videos too

celest grove
#

if we're talking about roblox

#

claude is mogging chatgpt even in it's free version

celest grove
#

to keep their claude subscription on

nova yarrow
#

lmk when claude has image generation and can watch video

celest grove
honest flower
#

chatgpt is only better if you pay

bronze mountain
bronze mountain
nova yarrow
celest grove
#

it was created alot ago than most of ai got popularized

honest flower
nova yarrow
#

people only use claude to script so theyre so convinceed claude is better than chatgpt

honest flower
#

claude goes way more in depth than chatgpt does on the free version

nova yarrow
celest grove
honest flower
#

my fault

celest grove
#

in free version

honest flower
celest grove
#

why do u mean by guess

nova yarrow
celest grove
#

anyways

#

it was a great conversation with yall

supple spindle
celest grove
#

cya

supple spindle
#

my buddy made one with claude

#

and man

celest grove
supple spindle
#

it was so bad

celest grove
#

in my local experience

#

claude did better

supple spindle
celest grove
#

i mean its not great

supple spindle
#

he with claude

#

i got an A he got an F

#

his was full of misinformation and looked junk

celest grove
#

What do you mean by made ur with chatgpt

honest flower
nova yarrow
#

chatgpt presentations are better than claudes lol

supple spindle
supple spindle
celest grove
honest flower
#

cant tell that you used ai 😭

supple spindle
supple spindle
honest flower
#

how so

supple spindle
#

i asked him what to put in my presentation and what to say

celest grove
honest flower
#

chatgpt is very distinct in the way it writes

celest grove
#

i meant creating FULL presentation by itself

#

without changing nun

celest grove
supple spindle
#

i did not change anything, i literally asked him what kinds of pictures etc... i should put with what text

celest grove
#

with large -

supple spindle
#

i told him not to use -- these and write like someone in my age

celest grove
#

How old is ur teacher btw

honest flower
#

doesnt even know its called an emdash 😭

#

ur brain is absolutely rotted

celest grove
#

me?

honest flower
#

not you

supple spindle
#

i know that its called an em dash lmao

celest grove
#

oh

honest flower
supple spindle
#

its called em cuz its as long as the letter

honest flower
#

you just said "-- these"

supple spindle
#

cuz im playing world of tanks

celest grove
#

how does that relate to our conversation

honest flower
celest grove
#

"Hi Chainsaw man"

bronze mountain
#

Yo how much do the top 10 developers in roblox make?

supple spindle
#

lmao

celest grove
#

"I mean, you have chainsaw and you're a man"

celest grove
#

much more than we think they do

bronze mountain
#

like 500k a yr

celest grove
#

much more

honest flower
bronze mountain
honest flower
#

or more

celest grove
#

i saw a dev talkin about

#

his income

#

from a 5k active game

#

(it's dead rn)

#

he had 15m from prems

#

playing

#

in one month

bronze mountain
#

imagine how much indra makes

celest grove
#

its already like 52k dolla

supple spindle
#

why from 4k visits there is only 10 "highly engaged players" bro what the f*** is this

celest grove
#

with old "30k = 105$" conversation

celest grove
#

52k a month is crazy

bronze mountain
#

I heard wolfpaq is the richest dev

celest grove
#

brookhaven dev?

bronze mountain
supple spindle
celest grove
bronze mountain
supple spindle
bronze mountain
#

russia i assume

celest grove
#

my country is fine

#

with 10% tax rate

supple spindle
#

nahhh

#

which country

river iris
celest grove
#

?

supple spindle
#

them here take 55% or something

#

and if u earn that much

#

around like 70-80

celest grove
supple spindle
#

thats worse than roblox devex 💔

bronze mountain
#

imagine if roblox only took 5% of what devs make

celest grove
#

if u earn over 137k

#

dolla

#

you gotta pay 30%

#

yea

#

as long as you dont earn as much you'd pay 10% tax rate

supple spindle
honest flower
supple spindle
#

the 6 billion AI systems they have

#

the 30 billion palantir surveillance data capturing units

bronze mountain
#

what abt 50/50

nova yarrow
celest grove
celest grove
#

its fine as it is now

#

as long as they will earn money

#

and as long as we will do

bronze mountain
#

welp i got to go study

celest grove
#

alr bye

#

tbh

#

their new changes are good

#

with safety

#

from their perspective

nova yarrow
#

nope

#

not at all

celest grove
#

actually

#

look

#

i think most of changes came in

#

only cuz of em getting sued

#

so they can make new changes, clear their reputation in eyes of investors and countries

#

and parents

dull agate
#

Yo I am hiring a scripter for 50/50 split

celest grove
#

as long as they will keep trying

#

no one even talks about roblox getting sued atp

#

they'd hire the most experienced lawyers

#

and defend themselves easily

dull agate
#

Racing game ~ f1,gt,Hypercar

bronze mountain
maiden crag
#

how do i script my ma2 file?

spiral moat
#

uhm this might be out of the topic but is anyone here using claude code for some personal projects or something? im just getting started and wanted to know which are the best skills for it to do things properly

#

im mixing claude code + antigravity + n8n to create entire agent ecosystems

brazen heron
#

yo guys Im working as a data scientist and cyber security. Im new at roblox scripting but i can script well because im fluent with coding and systems. I want to earn some extra money, should i do that? Can I get hired as a roblox scripter?

brazen heron
#

yeah im coding for like 9 years

#

I know C,C#,C++,Lua,Python,Go,Rust

spiral moat
#

i mean, inside some games already

#

sketches, projects...

#

anything

#

dont share links

brazen heron
#

I code 2 scripts one for Chunk rendering one for data managing in roblox games

brazen heron
spiral moat
#

i suggest you to check out #scripter-hiring to check some offers people are publishing in demand of what they look for

brazen heron
spiral moat
#

or if u have some experience, anything, then check #scripter-hirable and offer your services

brazen heron
#

I send them my Linkedin github and portfolio site

spiral moat
#

if you have some free time then do a couple of things, test them out, record it and paste evrything in a drive folder, as your basic portfolio for now, maybe try doing stuff thats in demand right now

#

but it has to be ONLY in roblox

brazen heron
#

I put my 2 scripts to github

spiral moat
#

people hiring you in here for roblox games do not really care if you know python or whatever

#

they want the lua scripts part done, and thats all

brazen heron
#

can i send my scripts to you from DM? i published it open source

spiral moat
spiral moat
#

im also a guy looking for money

brazen heron
spiral moat
#

ok send it

vagrant shoal
#

I just skimmed over it and learned C++ instead lol C just seemed really annoying never really used it again

brazen heron
#

once I remake the obsidian notebook app using C

spiral moat
#

c sharp is kinda cool

#

my dad told me to learn it

#

for linux

brazen heron
#

I'm a nerd who's only been coding since I was 11 years old.

spiral moat
#

and how old are u now

vagrant shoal
brazen heron
vagrant shoal
brazen heron
#

if you learn one of the C languages its easy to learn any language

spiral moat
#

im 18 never been more than 1 week trying to learn how to code

#

i prefer other stuff

#

but since chatgpt released 5 years ago i got my sight in AI

vagrant shoal
#

I learned C# and Java at the same time and for a while I confused them a lot

brazen heron
#

if you know software engineering the AI is a godly tool

stone rapids
brazen heron
vagrant shoal
#

Roblox is what got me into writing code

spiral moat
#

wtf

brazen heron
#

youre lucky my father is a farmer

spiral moat
#

mine is a nerd

brazen heron
#

awesome

honest flower
vagrant shoal
#

Yo @quaint tree come out buddy

spiral moat
#

he got the Linux GNU title like he got it when linux first came out

#

this is one of my dads companies certifications

brazen heron
brazen heron
quaint tree
vagrant shoal
waxen dew
#

how did that one dude from chromaclash achieve roleback in roblox

vagrant shoal
spiral moat
vagrant shoal
#

Hidden trolls

waxen dew
#

oh

waxen dew
#

how long will it take me to learn lua to a level i can build pretty complex systems like rollback or deadlock-like movement (momentum-vector based)

#

^^ i know a decent bit of python

celest grove
#

between scripting i had huge gaps

#

like HUGE

bronze mountain
celest grove
#

reasons were different but always it caused delay of the things i was doing before

celest grove
#

i would like to script consistently

#

but lowkey i want to live

celest grove
#

thats how it works nowadays

waxen dew
#

bro theres like 82735646 different apis with 87236489 different features

#

i mean it is just calling engine apis but

stone rapids
edgy plover
#

@brave viper dm me

waxen dew
#

i dont wanna watch those yt tutorials where they be teaching what does else if elif do

stone rapids
#

engine apis

#

engine go vrooooooom 🚗 😃

quasi jewel
#

experimenting

#

and learning along the way

#

and maybe a bit of claude ai

heady steeple
severe spoke
#

guys how can i be able to post in for hire ???

heady steeple
#

you are blacklisted

severe spoke
#

who ??

#

NNNNN

idle comet
#

d

fluid knot
#

hello guys

halcyon berry
fluid knot
halcyon berry
halcyon berry
halcyon berry
fluid knot
#

im having some trouble

halcyon berry
halcyon berry
fluid knot
#

i've found it

#

gotta do what ive done in rsc

#

but is there a level to get accepted or how does it work

fluid knot
#

gotta make a new project for this huh

#

thanks for the support

#

ill look into it soon

halcyon berry
idle stratus
#

Need help with fixing a system in my game willing to pay robux if you can help dm me

dawn ridge
quaint charm
#

a user reported their data being reset, when i tried reverting their key it failed to, is there another way?

severe spoke
glossy wave
#

regular datastore?

twin moth
#

GitHub got hacked, but don’t panic, my repos are completely safe

waxen dew
#

when yall say theres some good roblox scripter what makes someone better than other at calling apis

waxen dew
#

most people arent rewritting logic

waxen dew
#

any good module or framework for movement?

regal salmon
#

the NoviniMovement module

mossy bridge
stone rapids
stone rapids
#

i love the bolded text at the top of the screen

regal salmon
#

lfw isnt allowed in this channel, read the above bot message

exotic phoenix
#

this is fire

finite temple
#

local wait = task.wait()

topaz abyss
finite temple
#

because of the parentheses

drowsy pumice
stone rapids
finite temple
#

is there a problem

stone rapids
finite temple
#

like what

exotic phoenix
drowsy pumice
#

rest in peace son

stone rapids
#

everything

finite temple
#

aervial

drowsy pumice
#

mend_thelegend

stone rapids
#

Natheus

exotic phoenix
exotic phoenix
#

:P

finite temple
#

Aervial

exotic phoenix
stone rapids
exotic phoenix
#

max win

stone rapids
finite temple
stone rapids
#

didn't ask

finite temple
exotic phoenix
#

u guys js on some bs huh

stone rapids
stone rapids
twilit stump
stone rapids
#

sack overthrow 😭

gaunt sphinx
twilit stump
#

It didn't stack overflow tho

#

???

regal salmon
#

that's just asking for a script execution timeout

twilit stump
#

ok

stone rapids
#

yeah you really should never use functions actually

remote bear
civic gull
remote bear
civic gull
#

its because you're using the cache reference

#

and its being changed later

remote bear
#

ok i got it working though i feel like i could optimise this more

hasty mesa
#

why construct a new vector

remote bear
hasty mesa
#

vectors are immutable

#

a vector is more related to a number then an table

#

in luau

remote bear
solemn swift
dense flare