#code-discussion

1 messages · Page 314 of 1

tacit hawk
#

maybe it’s expecting u define a variable or function because normally u do local a or local function doSomething()

#

i’m pretty sure @deprecated isnt a valid syntax its just an annotation for commenting

static coral
#

but im more interested in the "declare function"

tacit hawk
#

oh i see

#

is declare something like this then

@deprecated local a = function() end

static coral
#

its not even valid syntax

#

thats why im wondering

#

maybe its a new function type thats being added

static coral
spice cypress
#

i tried researching it and can literally find nothing

#

prolly like the internal name for something

normal solar
#

buddy just typing shit

static coral
#

i was testing

west void
#

I can do the same with a fire client like: event:fireclient(player‚ "1st")

right?

livid crater
#

No, you wouldn't the only commission you could earn is from selling UGC items

#

I believe

static coral
static coral
#

or on github

west void
spice cypress
dapper ingot
#

anyone need me to do sm?

spice cypress
#

apparently it's to encourage roblox games to advertise eachotehr

spice cypress
#

yeah it's really fucking weird

#

cuz it basically means you get 10% back from everything if you just put the gamepass in your own game and buy it from there

west void
#

can someone explain what .magnitude does? and how to use it for distance?

#

like closet player or sum

spice cypress
west void
spice cypress
west void
#

yes

#

ok

spice cypress
#

it just performs Pythagoras on all the elements in the vector

static coral
west void
#

but how do I get the closet player from a part

dapper ingot
#

so like do you make stuff for people and they give u robux

west void
#

and when ever it changes it will print who is closest

livid crater
spice cypress
# west void but how do I get the closet player from a part

you would have to loop through all the players in the game, do the parts position - the player position, that will give you the vector from the player to the part and then do .magnitude on that new vector, then compare all the magnitudes, whichever is smallest is closest

static coral
# west void but how do I get the closet player from a part

loop through all players
have variable for closest player and their distance from part
if no player assigned yet then assign closest player to current player and continue to next iteration
if current player is closer than closest player then assign closest player to current player else do nothing

spice cypress
#

yeah that's a better description

dapper ingot
#

chat who needs me to do sm jobs

west void
#

i feel like that makes sense

#

but im a visual learner so can you's write me a quick line of code

#

so I can understand

#

ty

static coral
#

no

west void
#

ok

livid crater
#

Guys if anyone wants to transfer robux to you for payment for any commission dont accept it, it's not elligible for DevEx

#

They still have to buy your pass or dev product

cunning obsidian
#

Guys is "FindFirstChildWhichIsA()" better than "FindFirstChildOfClass()"?

rugged island
#

Anyone here an experienced coder?

bronze ridge
#

guys should i learn scripting

zenith wyvern
rugged island
zenith wyvern
#

very

uncut marlin
# cunning obsidian Guys is "FindFirstChildWhichIsA()" better than "FindFirstChildOfClass()"?

I think it depends on the use case. FindFirstChildWhichIsA() honors class hierarchy, meaning it looks for the first object in a specific class ( example: FindFirstChildWhichIsA("BasePart"), as base part is a class, any part ( like part, mesh part, or truss part works ). FindFirstChildOfClass() is specific, it locates a specific child of a class ( like finding a specific script among modules, server, and client sided ). The main difference between the two is find first child of class locates the exact class name, while which is a locates the inherited class. Both are identical in performance, but i'd recommend using FindFirstChildOfClass() if you want something specific and findFirstChildWhichIsA() if you want to be able to later modify your script

rugged island
uncut marlin
zenith wyvern
#

what do u need

uncut marlin
rugged island
#

I need to know your not just wasting my time

zenith wyvern
rugged island
zenith wyvern
#

ill send you my work but not my code

rugged island
#

That’s what I meant

zenith wyvern
#

This is "inventory_System" by Naketm on Vimeo, the home for high quality videos and the people who love them.

▶ Play video

Watch Untitled by naketm_55557 and millions of other Roblox Studio videos on Medal. #robloxstudio

▶ Play video
rugged island
zenith wyvern
#

goodbye

rugged island
#

Ggs

uncut marlin
# west void but im a visual learner so can you's write me a quick line of code

local players = game.Players
local closestPlayerToPart: Player? = nil
local part = workspace.Part

local function getClosestPlayer()
local shortestDistance = math.huge

for _, player in ipairs(players:GetPlayers()) do
local char = player.Character
if char and character:FindFirstChild("HumanoidRootPart") then
local distanceBetweenPlayerAndPart = (part.Position - character.HumanoidRootPart.Position).Maginitude
if distanceBetweenPlayerAndPart < shortestDistance then
shortestDistance = distanceBetweenPlayerAndPart
closestPlayerToPart = player
end
end
end
return closestPlayerToPart, shortestDistance
end

#

Its a bit messy cuz i wrote it in discord, so you dont rlly get the usual indents

severe bloom
#

you could use three of these ` to create a code block like this

local players = game.Players
local closestPlayerToPart: Player? = nil
local part = workspace.Part

local function getClosestPlayer()
local shortestDistance = math.huge

for _, player in ipairs(players:GetPlayers()) do
local char = player.Character
if char and character:FindFirstChild("HumanoidRootPart") then
local distanceBetweenPlayerAndPart = (part.Position - character.HumanoidRootPart.Position).Maginitude 
if distanceBetweenPlayerAndPart < shortestDistance then
shortestDistance = distanceBetweenPlayerAndPart
closestPlayerToPart = player
                 end
         end
end
return closestPlayerToPart, shortestDistance
end
valid terrace
#

who can give me some portfolio projects that I can do?

uncut marlin
#

''' hi ''''

#

''' hi

severe bloom
#

not the quotation mark thing, the squiggle line

#

three at the start three at the end

#

right above tab

uncut marlin
#

``` hi ````

#

yo, thats sick. Thanks

severe bloom
#

of course no problem, there's also support for syntax highlighting for some languages but I don't think lua is supported

uncut marlin
#

Woah, a lot of built in discord features i didnt know abt lol

severe bloom
#
Boolean test = true;```
#

yeah it's like the only one I know lol

uncut marlin
#

Def gonna use it in the future when i learn another programming lang

rugged island
uncut marlin
rugged island
#

oh alr

severe bloom
#

dawg what 😭 what made you make that conclusion

zenith wyvern
#

you use ipairs

#

and pairs

severe bloom
#

I was showing him how to create a code block

uncut marlin
#

how is using ipairs bad?

#

and i never used pairs inside the script?

zenith wyvern
#

for i, v in table is better

severe bloom
#

bro your reaching micro optimizations that dont matter, it's better to not worry about that and just use what works

zenith wyvern
#

its not a micro optimization

uncut marlin
#

i was rushing, you can obviously see it at the top. I did players = game.Players

severe bloom
#

it is

uncut marlin
#

im not tryna optimize it

zenith wyvern
#

rushing doesnt make you use pairs

#

you would have to deliberately go out of your way to type out ipairs, pairs

hoary cedar
#

It simply adds more than what is needed

uncut marlin
#

dosent ipairs create an array

hoary cedar
#

You could autocomplete it too

hoary cedar
zenith wyvern
#

unless you hit the one niche scenario where ipairs is faster

zenith wyvern
#

its still a tell-tale sign of AI imo

zenith wyvern
#

we are ever typing ip

hoary cedar
#

When autocompleteing ipairs??

uncut marlin
#

what does ipairs do aside from creating an array?

zenith wyvern
#

but why would you be autocompleting ipairs anyways..

hoary cedar
#

What are you on BONK

stray dock
#

or someone who just doesnt know better lmao

zenith wyvern
#

i(index) pairs

stray dock
#

i know someone whos like graduated and works in a cyber security firm who still use ipairs and pairs LMFAO

zenith wyvern
stray dock
#

its just matter ofold practices that some people still hook to for no reason

zenith wyvern
#

you still havent told me why you would rationally be using ipairs

zenith wyvern
#

the only place you really would ever learn to use ipairs/pairs in roblox anymore is some ancient tutorial or ai

uncut marlin
hoary cedar
# uncut marlin what does ipairs do aside from creating an array?

Again. It does not create an array. ipairs is an iterator factory. It produces a function that iterates through an array:

local numbers  = {1, 2, 3, 4, 5}
local iterator = ipairs(numbers)

print(iterator(numbers, 0)) --> 1    1
print(iterator(numbers, 1)) --> 2    2
uncut marlin
#

ohhhhh

#

i forgot that

zenith wyvern
stray dock
uncut marlin
#

i learned luau from lua, i transfered from there. I initally used the 4. something to learn lua

zenith wyvern
stray dock
#

we have luau now

zenith wyvern
stray dock
#

generic iterations go through in order by default

zenith wyvern
#

i was going after the guy who made his entire game on the server

uncut marlin
#

i think it was two versions before 5.1

quaint tapir
#

luau isnt really that different from lua because its just lua with some simpler syntax and kind of made for roblox

zenith wyvern
#

luau is lua, lua is not luau

#

this is because luau holds backwards compatibility and is a derivative

#

not its own language

#

its like saying that a linux distro is its own OS, its not; it's linux

stray dock
#

just dont use ipairs or pairs end of story

#

for _, thing in table do end

uncut marlin
#

oh, thats what yall mad about? 😭

zenith wyvern
#

no

#

i dont care about ur code

#

i was never talking about u lool

#

i was talking about the other guy

hoary cedar
#

Lol

uncut marlin
#

i used a different refrence manual, but theres no in table in lua, just ipairs and pairs

#

i picked up a habit of using it

dusky relic
#

Larp goes insane

cyan lantern
dusky relic
#

Yes

thick crater
#

thanks

hasty mesa
muted fern
static forum
supple spindle
#

Ip grappler

faint plume
#

Quick question what do you mean ai speeds up your workflow...

#

Does it give you answers quicker than you would find it

#

or do you rewrite the script based off what your getitng

civic current
#

ai explains code to u in simple ways and gives answers way faster than u searching for it

faint plume
#

that does make any sense

#

People ik use ai to explain how code works

#

and also how to get the code

#

couldnt you do that on your own?

civic current
#

yes but ai makes it easier, i personally dont use ai tho

faint plume
#

thats stupid ash

#

so its just a cheat tool for not good scripters

civic current
#

its not

fathom pebble
#

@blissful iron

civic current
#

how is it a cheat tool

#

thats like saying the roblox docs are cheat tools too

#

and youtube tuts too

faint plume
#

because your getting the code from someone else rather than making it yourself

civic current
#

you said explain code

faint plume
civic current
#

not GENERATE code

faint plume
#

ai GIVES you the code

civic current
#

if you ask ai to give you code then ur basically a bum

#
  • the code it gives is ass
faint plume
#

exactly what I think but about 75% of scripters here basically do that

civic current
#

but it knows how to explain

#

never seen anyone here use ai

normal zenith
#

anyone has watched sakamoto days?

faint plume
#

then your not in vc enough

fathom pebble
civic current
#

i never entered vc

faint plume
#

see thats the difference

civic current
faint plume
#

you would never see it cause you haven't seen it from an eye visual

fathom pebble
#

I’d rate it a 7.2/10

normal zenith
valid terrace
#

can anyone send me a reliable guide on how to create games using services, components, and module loaders?

icy heron
#

is it possible to store tables under items

#

without like parented string value stuff

dusky rapids
#

any way to bulk import multiple animation saves

unborn void
merry kayak
merry kayak
#

you learn the concept

#

then use the tool

main flower
#

What

#

Wth are you trying to say

merry kayak
#

? im speaking english brother

main flower
#

“Knit is a tool you learn the concept then use the tool”

merry kayak
#

yes what is confusing about what i said

main flower
#

It’s a framework which literally revolves around the usage of soa just without a singular bootstrapper

merry kayak
#

i know

#

so its a tool

#

learn the SOA concepts build some projects then use knit so you can make better projects

main flower
#

why do allat when he can just directly jump into using knit

merry kayak
#

you will be weak, not able to debug most of the programs you make and you wont understand your game structure flow

main flower
#

Knit’s simple and organised

#

It’s not like hes using agf

merry kayak
#

its like learning ADO.NET vs EF directly, if you want to be a weak programmer go ahead

main flower
#

Its two folders bro if he doesnt understand a simple structural flow then it’s time to hang up the scripting hobby

narrow brook
#

how can i make a push system tool?

median tree
nimble flare
stable verge
nimble flare
nimble flare
#

like local function(num1, num2)

#

@stable verge

frail plaza
#

why does it feel like i can't finish anything

stable verge
frail plaza
#

i have so many projects

#

but no matter how hard i try

#

i can never finish any

#

at least none that i'm ambitious about

stable verge
# frail plaza

stop trying to do big projects and work on a small one

#

finish that small one then do another

#

and another till you get confident

#

then you scale up

barren palm
frail plaza
barren palm
frail plaza
#

for a gamejam

frail plaza
#

i finished this

#

it was for a gamejam

#

one of the projects im proudest of

stable verge
frail plaza
stable verge
#

you'll feel much better when you complete each mini goal

frail plaza
#

every time i make a plan

#

i hit a roadblock

#

and i can't overcome it

stable verge
#

is it a big plan or a small on

barren palm
frail plaza
#

i spend days trying to work on some small thing

#

and quit because i overcomplicate it

barren palm
frail plaza
#

or just go into burnout

frail plaza
stable verge
#

try breaking tha tproblem down

frail plaza
#

although i do need to learn more

frail plaza
#

my partner did

barren palm
stable verge
#

keep trying to fix the issue. ask people, ask ai

frail plaza
#

i'm a scripter/animator/builderr

frail plaza
#

i'll take that advice

#

how do i plan things better?

stable verge
#

ai is good if you know how to use it

barren palm
frail plaza
barren palm
frail plaza
#

I'm afraid one of the reasons i keep quitting is because i'm solo

#

i do pretty much everything for my games

barren palm
#

you just make the basis

barren palm
#

just code

frail plaza
#

mhm

#

i do that

barren palm
barren palm
frail plaza
frail plaza
#

my partner in a gamejam did

#

and tbh he was complete dogshit

#

he didn't program or animate or do anything

#

just this thumbnail 😭

stable verge
frail plaza
#

what's a good way to organize my projects?

#

i want to have bulletin lists of waht needs to be done

stable verge
#

then make one

faint plume
#

Do ya think that it’s find to use module scripts in other scripts

#

Fine

nimble flare
#

whats that

stable verge
#

it basically lets you smoothly move something

nimble flare
#

this early on?

stable verge
nimble flare
#

what abt afterr

stable verge
toxic widget
#

guys i am making a game and a error code :SerializerPugi::deserializeImpl ill-formed XML keeps on popping up can someone help me with this

faint plume
#

why does SO many people use ai

minor meteor
#

duh

#

if you use it for high teir coding ai breaks down tho

faint plume
#

its not really

#

and your not neccesarily even scripting it

#

yes it boost your producitivity

#

but scripting it manual is so much better

versed arch
faint plume
#

exactly

versed arch
#

since it goes off of popular code snippets and ideas

faint plume
#

I never understood why scripters started to rely on using code in sucha bad way

faint plume
#

then when they're confronted and lost they become unintelligible

#

i really hope roblox bans ai

#

one of the worst things roblox has ever done tbh

hasty mesa
faint plume
#

ofc it is

#

💀

#

its like they want people to script with ai

versed arch
faint plume
#

I dont think their getting rid of it any time soon

opal yarrow
#

yo anyone know which is the best velocity based movement system or contrainer(linear velo, assemblylv etc) is best for dashing??

opal yarrow
wanton holly
#

n

stark geyser
#

I think I added a virus to my game, because when i published it, and people played it, popups apeared. But when I play nothing happens. I checked evey single script I had, does anyone have any suggestions?

uncut nest
stark geyser
rich moat
woeful stirrup
warm tinsel
#

Have many switched to using ProfileService? Or do most still prefer using DataStore?

woeful stirrup
warm tinsel
woeful stirrup
#

theres nothing wrong with datastore

storm ice
#

find in place

stark geyser
woeful stirrup
#

What does the popup look like??

fair copper
stark geyser
warm tinsel
#

Been out for a long while now

fair copper
#

yeah thought so

warm tinsel
woeful stirrup
warm tinsel
#

But occasionally get told the opposite, so I'm a bit lost

storm ice
woeful stirrup
woeful stirrup
fair copper
#

profile service also just uses datastores bro and u can make smthn similar to suit ur game

#

probably

#

a really good wrapper tho

#

i use suphi's module

woeful stirrup
# stark geyser nothing

Also you could try deleting all of the scripts in your game via another scipt like temporarily to see if the problem is originating from a script or not

#

if you do for i, v in pairs(game:GetDescendants) do and then check if v is a script delete it

#

see what happens then

remote bear
#

couldnt afford roblox 🥹

old cosmos
remote bear
#

ignore the disappearing triangles. i am only sampling three points per triangle in the mesh octree

#

because i am lazy

fair copper
#

u make roblox in roblox or what is that

remote bear
old cosmos
remote bear
fair copper
#

thoughts on polytoria guys

uncut nest
#

Awful ripoff

old cosmos
#

😭

fair copper
#

what

fair copper
old cosmos
#

just use steam instead of playing a temu version

#

there are so many good steam games out there

faint plume
fair copper
#

hm u know a pretty great argument to that would be like not being able to buy games

faint plume
#

and it was unconventional pratice

rich moat
old cosmos
#

so does steam

fair copper
#

ya ya

hasty mesa
#

alot of companies are forcing ai

old cosmos
fair copper
#

i just asked for thoughts on polytoria tho

#

lol

old cosmos
#

dont play, just use steam or itch

#

cause its a bad ripoff

fair copper
#

ok u know

#

i have a steam game alright and

#

the platform tax is 30%

faint plume
fair copper
#

or 42$

#

42%

#

right

#

i wonder how good that is

fair copper
#

because steam doesnt have a large consumer base compared to roblox rn

old cosmos
rich moat
#

It's just a really useful tool

fair copper
#

nah its a platform tax on devs

rich moat
#

That's it

faint plume
#

apparently to 78% of hidden devs "scripters" they think that if you dont use ai then your just gonna fall behind

old cosmos
fair copper
#

not country

faint plume
#

but their vibe coding

fair copper
#

its a platform tax

#

for getting sales on ur game

#

we got 1m in revenue for our game

#

we sold the game at 4$ only

old cosmos
#

you know roblox tax is way worse right

fair copper
#

and we got like 500k left after steam tax n then company tax

#

but the sheer volume is kinda

#

convincing

#

lol

#

or just make a viral game on steam i guess?

old cosmos
#

ur having a whole new convo with yourself

fair copper
#

maybe

fair copper
#

weird ass cat

maiden mist
#

Can anyone give me script of kick and ban for admin pannel mine not working sadly

regal salmon
#

also, nobody can just "give" you a script for an admin panel as they wouldn't be able to integrate it with your panel without direct access, they'd just end up giving you a standalone script

maiden mist
fervent belfryBOT
#

@low quarry

Tag » Use the Marketplace

All hiring, recruiting, or collaboration requests—paid or unpaid—must be posted in the marketplace channels. Read #marketplace-info to find out how to post.

This includes:

  • Job offers, freelance work, or commissions
  • Team recruitment for games, partnerships or volunteer work

Posting these outside of the marketplace is considered channel misuse and may result in moderation action. Only asking for advice/feedback is acceptable.

-# View our Discipline Guidelines for more information about the rules.

pastel tangle
pastel tangle
#

how is it slop if you know what you’re doing💀

keen comet
copper condor
keen comet
zenith wyvern
#

and you also damage the environment and degrade your brain

#

"Faster" is not always better

slow herald
#

Slower = not released game

zenith wyvern
#

in the case of AI a process known as cognitive offloading occurs whereas the AI essentially thinks for them, causing critical thinking skills to degrade massively, give a AI coder no AI and he will absolutely fail to do anything even if he was once a good coder.

to add on, theres a human bias which makes us "think" that the ai code is actually our code when it was the AI, or makes us think that we're "just using it as a tool" when youre really not. assistive ai and generative ai do not have the same level of downsides, generative is much worse.

this is why AI coders tend to "think" theyre doing X and that theyre actually ahead when theyre leagues behind

slow herald
#

= Depressed = wasted of time

warm tinsel
zenith wyvern
slow herald
zenith wyvern
#

no theyre not

#

theyre made in a day

slow herald
#

yeah they do

#

yeah

zenith wyvern
#

deepwoken is made in about 3months

slow herald
#

they had a full on team blud

zenith wyvern
#

roblox game development isnt slow whatsoever

slow herald
#

if ur a solo dev ur cooked

zenith wyvern
#

ive seen solo dev scripters pump out insane works in days

slow herald
#

it’ll atleast take a year

zenith wyvern
slow herald
#

if ur ideas are big

#

it will take more months

#

than just 3

#

if ur ideas is a simple game that can be easily made in a month or a week to do so

rocky skiff
warm tinsel
slow herald
#

tf?

zenith wyvern
#

you just are really out of touch with the dev process

slow herald
#

wdym

#

I made this game in a week

zenith wyvern
#

the slowness of a solo-dev comes from gathering assets and funding, not the development process itself

slow herald
zenith wyvern
#

i could genuinely make that in a day

slow herald
#

try it

zenith wyvern
#

no i dont make slop

versed arch
zenith wyvern
#

let me show you a day of coding

slow herald
#

😂

zenith wyvern
#

This is "inventory_System" by Naketm on Vimeo, the home for high quality videos and the people who love them.

▶ Play video

Watch Untitled by naketm_55557 and millions of other Roblox Studio videos on Medal. #robloxstudio

▶ Play video
slow herald
versed arch
#

fuck this api man

zenith wyvern
slow herald
#

bruh lol

zenith wyvern
#

all modularized made in a day

versed arch
warm tinsel
slow herald
#

I own 3 game

#

This is mine lol

zenith wyvern
zenith wyvern
#

except mines actually good and not vibecoded and is modular

slow herald
#

bros flexing showcases lol

#

ive done the things you’ve done dawg no need to shove it up in my face

slow herald
#

I’ve barely spent any ads when I started it up

#

14k visits going strong

warm tinsel
slow herald
#

its been a week

#

it peaked at 100

warm tinsel
#

statssssss

slow herald
#

@zenith wyvern why are you so quiet now

slow herald
zenith wyvern
warm tinsel
versed arch
#

this guy is a dunce

zenith wyvern
#

LITERALLY ALL YOU'VE POSTED IS SLOP AND SHIT 😭😭

slow herald
zenith wyvern
#

so do i and my actual games are leagues higher quality then yours holy

#

youre trying to compare the shittiest code to mine

slow herald
#

show me ur published game

versed arch
zenith wyvern
#

"this was made with ECS!" ecs is slopblaot

tepid socket
#

Anyone who knows how to make rlly rlly good servers

normal solar
#

ai the brain i am the brawn heh

vivid pulsar
#

i am doing a buisness and need help ( dm me )

slow drift
zenith wyvern
#

who the fuck uses jecs or matter in teh first place

#

stop using fucking ECS bloat

#

just code your game normally holy shit

slow drift
abstract urchin
#

what's ecs

#

🧐

slow drift
#

you have entities which is just ids, components which is data and systems

#

you attach components to entities

abstract urchin
#

is it some kinda oop

#

im reading some dev forum posts about ecs

#

just looks like oop

slow drift
#

oop without methods

#

and instead of inheritance you use composition

#

but you compose it of data

#

and not of objects

abstract urchin
#

why would that be useful?

shut sequoia
#

unc was just asking for help

#

praysob im crine

slow drift
# abstract urchin why would that be useful?

you want an enemy
you want the enemy to be flying and shoot flames

you would need to do

enemy < flyingEnemy < flyingFlameEnemy

but what if you then wanted a ground flame enemy? you would need to copy your code
enemy < groundEnemy < groundFlameEnemy

ecs solves this

Enemy
-flying
-flame

Enemy2
-ground
-flame

abstract urchin
#

Oh I get it

abstract urchin
#

my favourite larper

nimble flare
#

nvm it does i think

bitter harbor
#

guys how much should i charge to make a troll system with spectates and 5 trolls

visual maple
#

can you change the pitch of sounds through scripts?

tame spear
#

I honestly don’t remember the instance name

#

Just add an instance and search for pitch

#

It should come up

#

Then just set whatever value with a script

visual maple
#

oh alright

#

thanks

modern seal
red thicket
#

Any scripters

warm tinsel
regal salmon
proud sleet
#

how do i scale BillboardGui without scale the texts inside him?
cuz i need more space for other texts , and the texts i have now is very small

icy heron
#

i ❤️ ECS

zinc spindle
# icy heron i ❤️ ECS

What’s the best way to run it, I made my own and it runs the systems every frame, I was thinking of just checking when the component changes

cunning obsidian
icy heron
#

I mean I'm flattered

static coral
#

love at first sight 🥹

cunning obsidian
#

a rose

opal jewel
fallow hollow
#

yo anyoen here uses MCP?

fallow hollow
#

roblox studio has 21 tools and the plugin got 69 tools

#

so idk which is better

minor jacinth
#

plugin

#

but i dont use it much it drains my tokens

faint plume
faint plume
#

Then people say “no using ai boosts productivity” but so does Roblox documentation and yt tutorials

#

Ai is LITERALLY just a cheat code

faint plume
minor jacinth
#

who do you think you are

faint plume
#

Says the vibe coder

minor jacinth
#

you're another wannabe lua coder

faint plume
#

He probably doesn’t even code

#

💀

minor jacinth
#

humble yourself you will never reach claude's benchmarks

faint plume
#

PEOPLE like you who just use ai all day

minor jacinth
minor jacinth
#

keep wasting your time idm

faint plume
#

I code myself

minor jacinth
faint plume
#

UNLIKE you who use ai to come up with scripts

faint plume
#

Where does vibe coding get you

keen comet
#

using your brain is human slop 🤖

minor jacinth
faint plume
minor jacinth
faint plume
faint plume
#

Waiting

minor jacinth
#

I got nothing to prove to bums praysob

faint plume
#

💀💀💀💀

#

You have no game

#

And even so you can’t update your code

#

You use ai to do your games and that’s it

faint plume
minor jacinth
faint plume
#

Actually no what’s the difference between parameter and arguments

#

ACUTALLY no what is tween service and how do you call it in your script

minor jacinth
faint plume
#

Oh wait no

faint plume
#

You don’t know shit

#

💀🤣

valid basalt
#

guys i'm looking for sliding door id sound

icy heron
#

can someone give me their thoughts on a magic system of mine? its a tad complex (dm)

icy heron
faint plume
#

Then let’s see how all you vibe coders fair out

warm tinsel
reef cobalt
#

AI isn't going anywhere

#

Hate to say it but it's true

#

Technology evolves, AI sucks ass but it's here to stay, can't fault people for using it

#

Just gotta adapt

minor jacinth
weary ravine
minor jacinth
reef cobalt
#

I guess I don't understand the benchmarks 😔

halcyon narwhal
#

how much would a shinobi striker based combat system lowkey cost?

tidal veldt
#

that sounds niche why not make it yourself

pastel tangle
#

you do realize your discord messages are also damaging the environment right?🤣

#

also, how is properly using Ai in coding damaging ur brain? you still have to think on how to design the systems and then review the code that the Ai wrote

zenith wyvern
#

to AI

#

theres genuine studies on this btw

pastel tangle
#

there’s not

zenith wyvern
#

studies have shown

pastel tangle
#

your daily use of social media and video games damage the environment as much as ai does

zenith wyvern
#

this is wrong

brave jay
#

holy have u guys tried mcp's in studio

zenith wyvern
#

AI harms it significantly more due to it being much more power intensive and using a extreme amount of water

brave jay
#

this is genuinely so cool lmao

zenith wyvern
#

ok bet

zenith wyvern
#

no

weak radish
#

@shy cipher well well well

pastel tangle
bronze spruce
#

did roblox algo update

pastel tangle
bronze spruce
pastel tangle
#

yeah i think so

bronze spruce
weak radish
#

i think

bronze spruce
#

you need to make most high quality games for people to share it

#

and then get more retention

zenith wyvern
#

https://news.mit.edu/2025/explained-generative-ai-environmental-impact-0117
Scientists have estimated that the power requirements of data centers in North America increased from 2,688 megawatts at the end of 2022 to 5,341 megawatts at the end of 2023, partly driven by the demands of generative AI. Globally, the electricity consumption of data centers rose to 460 terawatt-hours in 2022. This would have made data centers the 11th largest electricity consumer in the world, between the nations of Saudi Arabia (371 terawatt-hours) and France (463 terawatt-hours)

https://www.snhu.edu/about-us/newsroom/stem/ai-environmental-impact
AI data centers are causing concerning levels of water depletion in certain areas —including the Great Lakes

https://www.eesi.org/articles/view/data-centers-and-water-consumption
A medium-sized data center can consume up to roughly 110 million gallons of water per year for cooling purposes, equivalent to the annual water usage of approximately 1,000 households. Larger data centers can each “drink” up to 5 million gallons per day, or about 1.8 billion annually, usage equivalent to a town of 10,000 to 50,000 people. Together, the nation’s 5,426 data centers consume billions of gallons of water annually. One report estimated that U.S. data centers consume 449 million gallons of water per day and 163.7 billion gallons annually (as of 2021).

Loudoun County, with approximately 200 operational data centers, used around 900 million gallons of water in 2023. This has led Loudoun Water, the county's water authority, to rely heavily on potable water for data centers rather than reclaimed water.

MIT News | Massachusetts Institute of Technology

MIT News explores the environmental and sustainability implications of generative AI technologies and applications.

#

prove to me that generative AI is not harmful to the environment go

weak radish
zenith wyvern
#

when you drink water you consume water

#

it is actively consuming water in order to cool itself down

weak radish
bronze spruce
#

im pretty sure you cant run out of water

weak radish
#

forever

zenith wyvern
zenith wyvern
bronze spruce
zenith wyvern
#

the water cycle isnt a instanteous process which is the problem, AI datacenters for example are using water faster then the water cycle naturally replenishes it

#

which is why you have droughts and such occuring

zenith wyvern
bronze spruce
weak radish
zenith wyvern
#

the classification of renewable isn't about whether or not its able to be replenished but factors in the time it takes to be replenished

weak radish
#

Do you know what renewable means

zenith wyvern
#

fossil fuels take thousands and millions of years to be replenished, which is why they arent

zenith wyvern
bronze spruce
zenith wyvern
#

what

bronze spruce
#

the water

zenith wyvern
bronze spruce
#

it isnt original water maybe

#

but atleast you can turn it back

pastel tangle
#

so your discord messages are ok because they use less water but Ai is bad cuz it uses more water

zenith wyvern
pastel tangle
#

also ai companies are legally and financially committed to being water positive (returning more than they take) by 2030

zenith wyvern
zenith wyvern
bronze spruce
zenith wyvern
bronze spruce
#

how come it is consuming water when the water can come back

zenith wyvern
zenith wyvern
pastel tangle
#

your phone’s battery contains cobalt mined by slaves in congo

bronze spruce
#

you can piss and its still water

#

and turn it into water

zenith wyvern
bronze spruce
zenith wyvern
#

i dont get what ur point is.. one dude says he hates israel so we should kill every israeli alive because we let one dude say he hates israel

#

i pick the more concerning impact.. i know my phone battery is created by slaves in the congo but id much rather worry about the massive data centers with gpus made by 3 year olds in china sweatshops that are causing much worse impacts then me using my phone

bronze spruce
zenith wyvern
#

armodilo_183 just get outta here bro

bronze spruce
#

you still killing them

bronze spruce
#

bro if you wanna stop water being gone so bad how about you go into their headquarters buy a rifle and then shoot them

night drift
#

how do you guys get vfx and sound effects for systems do you make them or tool box or something else?

quick swallow
weary ravine
#

hello, does anyone here have an understanding of python matplotlib?

worn tundra
#

Hello

normal zenith
#

anyone watched sakamoto days?

sharp parcel
ruby cipher
regal salmon
# bronze spruce how come it is consuming water when the water can come back

sure, the water cycle means we won't lose the water permanently, however the problem moreso stems from the fact that it's taking the water away from areas that may need it and deprives them of it. the water cycle takes time and won't always return that water to the area it originated in, potentially leaving communities with a very limited supply of water by the end of this ai fiasco.

unreal jacinth
#

I’m on the process of learning how to script now and I’ve thought that things that I should script like press e to open a door or like crouch and all that is easy and is already made by others so I can copy them. Thinking of like making a script by myself that does something people haven’t really seen before seems to be really hard

bronze spruce
regal salmon
#

why are you so fond of ai

bronze spruce
regal salmon
#

you're just waiting for those ai girlfriends to become good enough, aren't you?

bronze spruce
#

bro you can like

#

how do i say it

#

ai probably gives more positivity

regal salmon
regal salmon
bronze spruce
#

it doesnt make people stupider

regal salmon
#

so many people are substituting ai with learning skills and actually using their brains

bronze spruce
#

you are right but it doesnt make them stupider

regal salmon
#

it's especially impactful on younger people and people still in school

bronze spruce
#

it just makes them dependant

regal salmon
#

since its used to cheat on assignments/schoolwork and, consequently, results in a lack of learning

bronze spruce
#

but it will end up making them grow

regal salmon
#

could you expand on that?

bronze spruce
#

and sometimes they just look the answers

#

probably learn a bit from that

#

from like repetitive exposure

#

it isnt lack of learning

#

its more about how it is like less learning

#

but they still learn literacy

#

i mean school, you can cheat honestly because nobody will actually learn everything that they dont use in life or don't like at all

#

but you dont wanna cheat on something you actually like

#

some people cheat on schoolwork but they dont wanna cheat on something they like and they will learn it

#

i realized at a very young age that school isn't about how you learn, it is about how you make friends, learning stuff is mostly useless because you will forget it in life except for something you like and want to actually get in

rancid tinsel
#

i think ai its a helper

#

people use it for everything and are dependant

#

to a point they cant think by themselves

#

losing their identity

#

if u use to help ur gonna be original

latent geyser
#

HI

minor jacinth
sour rivet
#

i used ai to help me finish coding something and it used task.spawn(function()) idk what that means someone lmk please bc i dont like copying something without knowing what it means

regal salmon
#

so if you put a task.wait in a task.spawn, the code after wouldnt wait for that task.wait to finish but the code inside would

sour rivet
latent geyser
sour rivet
regal salmon
#
#

this is a more indepth explanation

minor jacinth
latent geyser
#

oh

regal salmon
regal salmon
minor jacinth
regal salmon
#

i havent published anything monetized yet

minor jacinth
regal salmon
#

ye

minor jacinth
#

that game is so good

regal salmon
#

fire game

minor jacinth
regal salmon
#

not as far as i know

minor jacinth
regal salmon
minor jacinth
regal salmon
#

also unity is more capable

regal salmon
#

well i wouldn't say it's harder for solo devs

#

solo devs still do all the same jobs

minor jacinth
regal salmon
#

solo dev is hard in general

#

but i have peopel helping now

regal salmon
# minor jacinth how does like steam work like how do u get players tho

you dont pay for ads on steam, so you do your own marketing on social media
plus steam will push out your game a lot easier than roblox will, especially if you participate in their events like next fest and the sales and stuff
then you can get reviews and more reviews = more pushing

#

steam players are also much more willing to pay upfront for a game as opposed to roblox since its more normalized on steam

minor jacinth
regal salmon
#

the only people that really do microtranscations are big companies with games like marvel rivals, others that i cant think of

#

indie developers dont tend to do that

#

though it does also depend on the game i suppose

#

i wouldnt be making games that can viably incorporate microtransactions anyway

minor jacinth
#

i see

#

are you tryna stay in game dev

regal salmon
#

ye

minor jacinth
#

like during uni and stuff

#

and later on

regal salmon
#

i'd be going to uni for game dev if i do go

regal salmon
#

but yes

minor jacinth
#

uni is a scam anyways

#

hate the agenda that people who dont go to uni end up bums its just not the case

regal salmon
#

i do also have other semi-related hobbies i can look into

regal salmon
minor jacinth
#

but i know im not meeting any1 when im going to health science praysob

regal salmon
#

and the degree, thats also good to have

minor jacinth
#

experience and projects > over the degree

regal salmon
#

ye but degrees help lol

#

either way not t he primary reason

minor jacinth
#

we should all become start up founders tho

#

ipo retire at 25

#

go to monaco and drive our ferraris and call it a day

#

if only life was that easy 😔

regal salmon
#

what color is your bugatti? 🤔

bronze spruce
#

if you have a degree and your ability sucks you just get lost immediately maybe

#

some people who dont have a degree, absolutely genius can prove their abilities and end up actually getting something

#

degrees can be useless as hell but it just boosts your chance, but what helps alot more is your abilities

#

if your degrees cant keep up with your abilities you end up actually getting kicked out

rose hill
#

Is there a site for roblox ui,

#

?

bronze spruce
frigid perch
#

anyone have the "ya im in studio rn" image?

#

I wanna save it

low otter
#

Yo guys Does frontend scripter mean they only do the replicate storage or only severscriptservice

lusty barn
#

what services that uses doesn't matter

low otter
#

Ohh

uncut nest
potent igloo
#

tf you talking about success

minor jacinth
#

@grok is this true

potent igloo
#

hes a big influencer on the misogynistic community and you know that

minor jacinth
#

all i see is a bunch of claims

#

I dont really care about another man's life that much

potent igloo
minor jacinth
#

and I only used him cause of what i said praysob

#

it isnt that deep

potent igloo
potent igloo
minor jacinth
minor jacinth
#

people gotta get a grip and stop taking another man's opinions seriously

potent igloo
minor jacinth
#

I just dont care praysob

#

what he thinks

potent igloo
minor jacinth
potent igloo
potent igloo
#

and women would still not be able to vote

minor jacinth
potent igloo
#

and homo couples wouldnt be able to get married

potent igloo
undone karma
#

does anybody in this channel actually know how to code or are you guys just sitting yapping abt nothing

#

😭

#

😭

#

😭

barren palm
potent igloo
#

you think fighting for other ppl makes you weak

undone karma
# barren palm whyre you crying

im crying because i have an actual coding discussion topic but i know as soon as i send it its js gonna be flooded by nonsense yapping

potent igloo
#

which is actually the other way around

undone karma
#

LIKE OMGGG SHUT UPPPP NBD CARES

undone karma
#

im just a bit stuck cuz i would like to make it so every time the red part is touching a new part it triggers some sort of event but i dont know how to do that

#

like i've tried multiple ways but none of them r working properly

potent igloo
#

how are you spinning the part

undone karma
undone karma
broken grove
#

what is your spin script

undone karma
#
local ButtonModule = require(workspace.CurrentMap.Export.ButtonModule)
local PlayerWheel = workspace.CurrentMap.Export.PlayerWheel
local TweenService = game:GetService("TweenService")
local RunService = game:GetService("RunService")

local OnWheelSpinEvent = workspace.CurrentMap.Export.OnWheelSpinEvent
local spinTI = TweenInfo.new(10, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut)
local randomnumber = math.random(360, 360*8)
ButtonModule.SetupButton(
    script.Parent.Frame.SpinPlayers,
    function()
        TweenService:Create(PlayerWheel.Primary, spinTI, {Orientation = PlayerWheel.Primary.Orientation + Vector3.new(0,360,0) + Vector3.new(0, randomnumber, 0)}):Play()
        OnWheelSpinEvent:Fire()
    end,
    "Spinning...",
    "Spin Players"
)

ButtonModule.SetupButton(
    script.Parent.Frame.UpdateWheel,
    function()
        ButtonModule.UpdateWheel()
    end,
    "Updating...",
    "Update Wheel"
)
broken grove
#

based on how much it spins you can calculate where it is

potent igloo
undone karma
#

the thing is too right

undone karma
#

every time the red part on the wheel is touching a new part i also want it to make a tick noise and appear on the screen too

crisp bay
#

anyone wanna script my game

broken grove
#

but I guess that works

undone karma
#

im new to scripting

broken grove
#

gonna be somewhat complicated to calculate with tho

#

orientation caps at 360 (and resets to 0 there)

potent igloo
broken grove
#

so that makes it spin multiple times ok

#

I see now

undone karma
broken falcon
potent igloo
potent igloo
undone karma
broken falcon
potent igloo
#

its because of ppl like yall that trump and all the far right dictators got power to run nations btw

broken falcon
#

what far right dicators?

broken falcon
#

your acting like the liberals and the far left are better

undone karma
#

this is the most degen server ive ever seen

#

holy shit

broken falcon