#code-discussion

1 messages · Page 163 of 1

near sonnet
#

Not really the language itself is not hard u gotta know the events and stuff from roblox tho

woeful epoch
#

Thanks

oblique lintel
#

Best tips for scripting?

dim onyx
#

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

surreal ether
oblique lintel
#

Yeah I’ll do that when I learn how to

#

Thank you

rigid imp
#

Does anyone know how to make a 2d game on Roblox?

surreal ether
#

lua is same as intermediate python MAX, its way easier than ml

rigid imp
#

hm

#

im looking for someone to remake a flash game for me

surreal ether
#

gets the type of passed argument in plain lua

velvet parcel
#

ty

surreal ether
#

type is lua's function

#

typeof is luau's

surreal ether
narrow vault
#

i deadass saw a skid with the luau programmer role yet he still uses datastoreservice 🥀

narrow vault
#

connectivity problems and throttling lol

#

profilestore is better

#

while its still built on top of datastore service, its better than it

young rock
#
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?

dreamy berry
#

Guys am i need a remoteFunction for local script item picker? so it will connect to global if player pick item

dreamy berry
#

My bad for being stupid

cosmic tartan
#

Guys how can you type in a print statement both a variable and a string in one sentence?

cold cliff
cosmic tartan
#

It works fine in luau

#

but using , not +

cold cliff
#

Ah i see , I'm still new to luau

little crest
#

last is always preferable imo

uneven solar
#

hey hey hey

severe cobalt
haughty nova
#

@dry willow

stoic radish
#

Hey I help

fresh stream
#

whaddafak are tables

#

in lua scripting

static coral
#

they can be used as arrays, dictionaries, classes, hashmaps, structs, linked lists, queues, stacks and everything fucking combined

vocal geyser
#

Yo, i created a discord that give free assets that i dev every week if any is interested 😄

fresh stream
#

well

static coral
fresh stream
#

lik

#

lick

fresh stream
#

thats what chatgpt told

static coral
#

wait do u have any experience with other programming languages

static coral
#

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

fresh stream
#

Ohh okay

static coral
#

and each value corresponds to an index

fresh stream
#

thank you

static coral
#

where numerical indexes will correspond to a value

surreal ether
static coral
#

for example:
local t = {}
t[1] = 5
t[2] = 8103

static coral
# fresh stream i understand it now

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

fresh stream
#

sounds confusing.. but ill try

static coral
#

you can also initialize them like this:
local d = {
a = 5,
b = 2,
c = 9,
}

static coral
#

it can also help to learn a lower level concept of tables/arrays

sharp gulch
#

lwk @fresh stream jus go to alvin blox or something he will teach you 🥀

static coral
#

like how they work in C or C++ or rust

static coral
sharp gulch
static coral
#

use brawldev

#

thats why your progress is slow

sharp gulch
hallow crag
fresh stream
#

i have only used devking he teaches pretty good

static coral
#

dont

fresh stream
sharp gulch
#

brawl dev ive been learning on him since 2017

static coral
#

he is outdated

hallow crag
static coral
#

and really bad at explaining

fresh stream
sharp gulch
fresh stream
#

ill try watching brawldev

static coral
sharp gulch
#

there is no humour in coding

static coral
#

use brawldev

static coral
fresh stream
#

but coding makes me kill myself

static coral
fresh stream
fresh stream
#

slowly

static coral
hallow crag
fresh stream
#

ohh alr

#

thx

static coral
# fresh stream kinda

also learn how computers work in general, it will help with any programming language

surreal ether
#

@fresh stream tables are just boxes to store any data in them that can be accessed via indexes thats it

fresh stream
#

First thing i see when i click get started

fresh stream
#

.

fresh stream
static coral
#

its not that tuff bro

fresh stream
#

no it is

#

i understand nothing there

hallow crag
#

tbf alot of it is common sense but alr

static coral
#

luau website does have some more advanced topics but keep to basics for now until you master them

solemn mason
#

It's the tip of the iceberg bud. If you think this is hard, just give up.

fresh stream
solemn mason
#

Personally the only problems I'm having are with Roblox Studio itself

#

Physic kinda wack

static coral
#

theres also metatables but fuck metatables

#

they are useless most of the time

fresh stream
#

uhm ill stick to the basics

#

i dont want to suffer

solemn mason
#

modular is the way

static coral
#

u dont need them for organization

#

they make it less organized to me

solemn mason
#

well also depends on the coder

static coral
#

if i see setmetatable in a script i want to close it

#

or __index

solemn mason
surreal ether
hallow crag
static coral
#

actually the one real use for metatables is exploits ☠️

static coral
hallow crag
#

but it makes it easier

static coral
solemn mason
#

Like a dumbass I didnt know remote functions were a thing

static coral
#

it makes it worse

hallow crag
surreal ether
hallow crag
#

i dont have to pass the object to the first argument everytime

static coral
#

its how they avoid the client side anti cheats

#

hooking __namecall to remote

#

iirc

hallow crag
surreal ether
surreal ether
#

well yeah it hooks any metatable

hallow crag
#

it hooks metamethods and uses hookfunction internally

solemn mason
#

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
surreal ether
#

i was talking about game's localscripts/modulescripts

surreal ether
#

nevermind

hallow crag
#

what if u want to capture or modify a remote call

#

u need to hook __namecall

#

of game

surreal ether
#

of roblox's shit

#

i was talking if developer using metamethods in a table

static coral
#

and what the difference is if any

hallow crag
#

they are probably the same thing tho

hallow crag
#

not to sure

static coral
#

im gonna test it rn

solemn mason
#

yall ever made plugins?

static coral
#

but the problem is getting an idea for one to make

fresh stream
#

ok bro i forgor midway how to make tables

#

t = 3
print(t)

static coral
static coral
fresh stream
#

yes

static coral
#

3 is not a table

fresh stream
#

wow

static coral
#

syntax for table is {}

vale flax
fresh stream
#

oooo

fresh stream
#

t = {3}
print{t}

#

what am i doing

vale flax
#

if you wanted to assign 3 as a value in a table you'd do t[index/key] = value

vale flax
#

or table.insert()

fresh stream
#

t = {b}
print{t} 19:01:20.227 ▶ {...} - Server - Script:2

vale flax
fresh stream
#

yes

#

doesnt it work like that

vale flax
#

why are you using curly braces

#

sob

fresh stream
vale flax
fresh stream
#

wha

static coral
vale flax
#

yeah

#

ur right

static coral
#

or if indexes dont follow on each other

fresh stream
#

im suffering

static coral
surreal ether
vale flax
#

function use parenthesis not curly braces

static coral
vale flax
#

generally

surreal ether
paper imp
#

why is session locking a thing considering roblox disallows multiple instances of the same client

static coral
#

if function takes a table you can call it like this

local function lit(a: {})
end

lit {}
surreal ether
#

you can

#

amybe

fresh stream
#

like i understand allat

static coral
#

you can do the same with strings

local function st(a: string)
end

st “hello”
surreal ether
paper imp
surreal ether
#

what

static coral
vale flax
#

lmao

static coral
#

it just exists

#

note that it only works with literals

solemn mason
static coral
#

not with table or string variables

surreal ether
#
functioncall ::= prefixexp args
args ::=  ‘(’ [explist] ‘)’ | tableconstructor | string```
#

amazing

fresh stream
#

my best script

#

amazing

vale flax
#

have you ever coded before

fresh stream
#

i know basics of luau

#

but not phyton or any other

vale flax
#

I dont think you do if you cant call a function

#

😭

fresh stream
#

its just that idk how tables work

vale flax
#

there isnt very much to them

#

go watch tutorials

static coral
# fresh stream its just that idk how tables work

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!

http://amara.org/v/QbxG/

📄 Code ...

▶ Play video
vale flax
#

array in luau 💔

static coral
#

just the concept

#

it will help with understanding the indexes stuff

fresh stream
vale flax
#

do you have like 2 gb ram bro

fresh stream
#

Uh

#

8 gigs or 4

vale flax
#

I have 8 and im fine ✌️

fresh stream
#

Aha

#

My pc not want

#

Its saving mee

devout marten
#

anyone looking for work rn?

sharp gulch
devout marten
brisk dew
#

de

uneven solar
brisk dew
#

yes

#

who is there

hollow briar
#

who knows how to code UI's for steal a brainrot type game

brisk dew
#

create

vale flax
#

the fuck did i just skim

#

its chatgpt isnt it

brisk dew
#

?

final pond
#

yoo guys i swear roblox voice chat is proximity why can i hear everyone in my roblox game bro

normal bane
#

@static coral

restive storm
#

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
jolly nexus
#

programmers, how long you guys reckon steal a brain rot took to develop?

spare mulch
#

what does the return do

#

if debounce then
return
end
???????? i dont understand it

compact spoke
hallow torrent
#

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

sick saffron
#

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

ruby kite
hallow torrent
ruby kite
#

ctrl z exists

hallow torrent
#

too late im rewriting it

ruby kite
ruby kite
ruby kite
ruby kite
compact spoke
#

this looks cool

compact spoke
restive storm
sick saffron
#

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

cloud meadow
#

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?

unreal geode
#

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

proper edge
#

yeah

unreal geode
#

And if i should use a module to Run in different scripts

#

Instead of writing 200 times the same function

proper edge
#

your choice

unreal geode
#

I dont really wanna ask people to make It cause im here to learn but do u have any video reccomendation

proper edge
unreal geode
#

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

unreal geode
unreal geode
proper edge
unreal geode
#

@proper edge Just found out there Is a plugin for it

#

Im done

proper edge
#

lmao

unreal geode
#

Bah but like they make a tutorial and then Just show the plugin

young rock
#

Guys is there anybody who could review my shitty code that ill use to apply for the luau role? pls

young rock
proper edge
#

yeah

civic bison
#

is roblox down bruh

cinder basalt
#

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

young rock
sick saffron
#

yeah

verbal coyote
sweet herald
#

how do i fix tool wobbling

#

is there a way

uneven solar
#

chatgpt be tweakkin g

#

i need an actual man to help me

digital canopy
blazing jay
#

how can I fix the base R15 idle animation from clashing with my replacement?

cinder basalt
#

i mean

#

oa oa banana

radiant sleet
#

Yo would any scripters like to try out joining my advanced Developer Team

sharp gulch
#

can you get scammed out of a commision

fleet spire
#

I need a developer

candid isle
#

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

digital canopy
#

Cloning and repositioning a model

#

Is it hard for you

candid isle
#

With no scripting experience yes

blazing jay
somber vault
#

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

blazing jay
#

its playing alongside it

candid isle
quartz vortex
#

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?

tribal birch
tribal birch
candid isle
#

Or maybe by group role?

peak oak
#

dm me if your investing in game ideas (really high potential)

quartz vortex
candid isle
idle furnace
#

who can help me fix the admin system in my game? helper get free admin

tulip fable
#

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

tulip fable
static coral
tulip fable
glacial sequoia
#

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

cinder basalt
#

🗣️

hollow briar
#

i didnt ask for a pic of u tho

fallen star
#

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

quartz vortex
#

scripting yourself and reading documentation

#

experimenting and truly understanding why it happens

quartz vortex
#

or chatgpt yeah

fallen star
#

what

cinder basalt
#

ask chatgpt for code with explanations

fallen star
#

ohh

cinder basalt
#

only if it works tho

fallen star
#

alr ty

cinder basalt
#

doint read if it doesnt

fallen star
#

ye

cinder basalt
#

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

fallen star
#

alr

patent blade
#

yo

#

need a scripter

#

a free one tho

fallen star
#

theres so much stuff

strange glade
cinder basalt
cinder basalt
#

try making a game and just search up stuff when you need it

fallen star
#

scripter 1 level in roblox studio comm

fallen star
#

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

strange glade
#

dw i was hoping to learn from you

fallen star
#

my bro the best way u can learn is just

#

Bruh

#

Ill dm u it

strange glade
#

bet

#

thanks

cinder basalt
#

animator

#

tho for hitbox youd use premade module

#

unless you feelin brave

#

wouldnt start with that though

thorn arch
strange glade
#

whaa

#

how are these bad 😭

cinder basalt
#

we have to direct them to rodevs

jaunty wolf
#

but bad or not, u can do basically any of those after 1-2 months of scripting

strange glade
#

i see

#

am exicited now icl

jaunty wolf
#

tbh most games actually are simple features- but a ton of them. thats the hard part. making 1000000 features for a game

jaunty wolf
#

and everyone wants to work with u too

strange glade
#

i see

noble hare
#

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.

gaunt lark
#

Hello What is the yellow sponge called

mortal elm
#

theres no error but, the animations didnt played, can someone help? ill send whole code if needed

hollow yew
#

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

vale flax
#

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

hollow yew
#

damn

hollow yew
#

oh ok

#

what about games with like no badges

radiant owl
#

Why is not working

#

Double jump system

warm nova
#

any script to make a text label

#

pop up on screen random areas

#

like when u get close to a monster in the mimic?

manic root
#

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

waxen kestrel
hollow yew
frigid arch
#

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

brittle maple
frigid arch
frigid arch
frigid arch
#

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

nova yarrow
olive pelican
#

I need someone to teach me scripting

#

By a project way/style

heavy arch
#

How can i get into scripting

thorn arch
thorn arch
round latch
#

lf someone to script an emote try on game for me. more info will be provided in dms

olive pelican
scarlet steeple
thorn arch
#

Probably best to use another tutorial

olive pelican
#

The BRAWLDEV tutorial arent good for me

rough trench
#

Hey there

rough trench
#

Anyone here capable of doing Real-time Aerodynamics in Roblox?

lyric flint
#

does anyone work with cmake

stoic stag
ember tinsel
#

When making a turret, should I use hinges or motor 6d?

jaunty marsh
#

hi

somber vault
somber vault
candid isle
autumn phoenix
#

@remote oyster is that picture you put in creations a self portrait

dense osprey
#

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.

mighty bolt
#

guys what would u say is easier: modeling, scripting or building?

faint mountain
#

i need help with a simple code, dm pls

dense osprey
autumn phoenix
vast hound
#

Is it possible to script gun skins if the gun is more than a single mesh/part?

remote oyster
autumn phoenix
dense osprey
fresh stream
#

local grocerylist = {"carrot","bread","milk","potato","carrot","carrot"}
print(grocerylist)

local item = grocerylist[1]
print(item)

plain jetty
#

Do you know how to make the character change every round?

fair copper
plain jetty
#

ye

#

right

#

@fair copper

static coral
plain jetty
#

example "i have haur in this round in next i have nour"

#

these are random names

fair copper
#

like store these characters somewhere, fully ready for gameplay

static coral
#

yeah

#

then you can set player.character to them

fair copper
#

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

plain jetty
#

alr

fair copper
#

if u want

plain jetty
#

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

fair copper
#

yeah well u need to add these conditions etc

plain jetty
#

that the chances are random

fair copper
#

make a module for randomizing things

plain jetty
#

alr

#

can you make me this i can pay

#

and how much you want

#

@fair copper

fair copper
#

i dont do comms sorry

plain jetty
#

oh alr

orchid cipher
#

is this good for 1 week scripting?

rapid eagle
orchid cipher
#

?

inner nebula
#

Whats the event that deletes a part

orchid cipher
#

Destroy

ruby kite
#

use obs or something to record brah 🥀

orchid cipher
ruby kite
orchid cipher
#

ok thx

visual vector
#

anyone got any game ideas

smoky frost
#

so

#

if u want to learn

#

u can start from official lua tutorial

#

it will get u trough syntax features

sterile crow
#

alr

smoky frost
#

then practice, use roblox docs as reference for features

sterile crow
#

yo i dont understand english that well, so wdym by us it as reference for features what that mean?

smoky frost
#

u can use it to know what u can do and what cant

obtuse turret
#

Does anyone have any assets, if you do dm me please.

olive summit
obtuse turret
sterile crow
#

@smoky frost tysm btw

#

i appriate everything

smoky frost
#

yeah np

runic quarry
hollow briar
hollow briar
#

like chill out with ts why tf speed getting penetrated

ruby kite
#

u the one trying to roast

hollow briar
#

im not

#

im just saying

ruby kite
hollow briar
#

U started it ngl

ruby kite
hollow briar
#

you can just why reply to me when doing itt?

ruby kite
#

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

sharp gulch
digital mica
vast hound
flint oriole
#

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

keen zephyr
#

does debounce just prevents the script from running more than once?

blazing jay
gusty hemlock
amber spruce
keen zephyr
#

the script doesn't run the 'if debounce then return end' line right?

final ivy
#

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

keen zephyr
fresh stream
#

hi guys

#

anyone watch hiatus tutorials?

#

if you have finished

#

i js need to ask a question

amber spruce
# flint oriole ty

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,

amber spruce
#

😐

flint oriole
amber spruce
#

wow thanks

heady siren
#

man i want to make a roblox super smash bros game dud

#

so badly

#

characters can be mascots from many different games

blazing oasis
#

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

heady siren
#

oh

blazing oasis
#

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

fresh stream
#

ill turn back to it when im more advanced

blazing oasis
blazing oasis
fresh stream
#

i guess so

heady siren
#

what games would be good to start off with

civic bison
#

does anyone here need a scripter?

heady siren
civic bison
#

ummmmmmmmmmmmmmm

blazing oasis
#

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

civic bison
#

700 robux 😏

heady siren
#

yeah im good

amber spruce
heady siren
#

im saving up for a nintendo switch 2 rn

#

sooooo

civic bison
#

soooooooo

heady siren
#

yeah i cant spend money

blazing oasis
civic bison
#

what do u want to make?

blazing oasis
#

waste of time

heady siren
amber spruce
civic bison
#

yeah boi

#

nah

heady siren
#

its my dream game but ill start off with something more simple

blazing oasis
#

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

amber spruce
blazing oasis
#

You will get discouraged

amber spruce
#

you need to be really dedicated if youre gonna suceed anyway

blazing oasis
#

im not saying its a horrible idea

#

im just saying its less efficient

#

than making smaller games

heady siren
#

wait what about just a fighting game

#

thats ez right

#

not as hard

#

like semi-advanced type shi

blazing oasis
#

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

heady siren
#

ok so i should start off by making an obby

blazing oasis
#

I mean

#

me personally

#

i would say a simulator is better

#

if you got decent experience

heady siren
#

ah alr

blazing oasis
#

because obbys are mostly building too me

heady siren
#

not too much tho

blazing oasis
#

and dont teach too much exept some basic data saving (for checkpoint saving) and like alot of kill bricks and simple cframes

heady siren
#

true

#

but i feel like

#

there are too many simulators on roblox sadly

#

i dont think that should stop me tho

rare whale
#

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!

prime heron
#

whats a good ragdoll module?

stoic radish
#

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 😭

tame sigil
prime heron
#

whats a good ragdoll module?

hearty shard
#

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

coarse nimbus
#

Think of something you want to make and try making it using documentationsand stuff

oblique oyster
stark helm
#

when do I actually get good at scripting?

#

like how many hours in studio?

rigid rover
rare whale
rigid rover
somber vault
solemn mason
#

Anyone got plugin ideas?

frigid thorn
#

Make generating images with parts

#

From s decal

solemn mason
#

is that possible?

rare whale
solemn mason
#

because you would need external resource i'm guessing. Roblox doesn't provide you with enough to examine decals.

somber vault
rare whale
#

bruh just tell me what the average price for scripting is

solemn mason
#

1+hrs doesn't mean that the code is complex

rare whale
#

something easy medium and hard

#

1k robux is good pricing for scripting?

#

and more for harder things

somber vault
oblique oyster
little bane
#

yo

oblique oyster
#

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

plucky urchin
#

I have a table of 2d buttons, how can i check one of them clicked w using for in pairs

forest hinge
plucky urchin
#

No there isnt

#

lemme try

forest hinge
forest hinge
#

If it's on a UI, then a regular 2d button object. If you'd rather click a part, clickDetector

plucky urchin
#

ik

#

its in startergui

#

didnt work

forest hinge
plucky urchin
#

here

forest hinge
#

You're meant to iterate over the players PlayerGui -> TowerFrame, versus manipulating StarterGui

plucky urchin
#

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

plucky urchin
#

like this

forest hinge
#

Ehh not quite

#

It'd literally be an empty whitespace, you can check if value == ""

plucky urchin
#

so how can i check there is a value or not in script?

#

if stringVal.Value then ?

#

like this

#

nvm i got it

west mist
#

can someone tell me

#

if I will use string functions a lot

solemn mason
west mist
#

yeah

#

I'm currently learning how to learn to script

#

and idk how useful those are

next condor
#

i was trying to make the npc look at the player and somehow did this instead

glad thorn
# west mist and idk how useful those are

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

west mist
#

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.

ruby kite
#

but you resulted into a fidget spinner

ruby kite
#

not for me because i only do coding & sometimes ui

west mist
#

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?

ruby kite
#

it will be over if saul goodman takes over the lawsuit

ruby kite
#

🗿

west mist
#

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

ruby kite
#

depends where it's banned it's gonna be vanished

west mist
#

😔 If only David Baszuki would've stopped snatching minors and actually do something

loud ermine
#

Anyone here have experience with vehicles?

daring egret
#

Anybody need any help with scripting just dm me.

#

And i promise I’m dirt cheap

#

Trust me

#

You wont regret it

west mist
#

I think eric cassel be better ceo

surreal ruin
#

Low key, learning to script is kinda fun tho

somber vault
neat oyster
#

are there downsides to having pretty much everything in your map a collision group of something other than Default?

cosmic zinc
#

lol

#

Idk why

#

Ig I like doing all of them

west mist
#

Wow

#

how long to learn?

cosmic zinc
#

long

west mist
#

months?

blazing oasis
blazing oasis
west mist
#

dang

blazing oasis
#

Or just apologise

blazing oasis
#

Is give this a month max to continue it will die before then

coarse nimbus
#

Apologise 😂😂😂

unreal mulch
#

sooo are all scripters offline or just dont wana respond to dms when they posted they looknig for comms..

tropic cove
#

so is my avatar aura

sharp gulch
west mist
#

i did that once

static forum
#

Guys does anyone know WHATS the best way to make roundsystem e.g round 1 then round 2 in order

stoic radish
#

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?

cinder basalt
#

if its easier with events just use them

tropic cove
#

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

elfin steppe
#

yh pay me

solemn mason
#

and also are there any errors in the output?

tropic cove
#

nah it just doesnt animate

tired remnant
gaunt pollen
#

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

fossil halo
#

How can you find people to team up with on a game?

tired remnant
tired remnant
white jay
#

where is it to start best when ur tryna learn scripting?

vernal peak
#

Yo would the mantis lords boss fight from hollow knight work for Roblox?

velvet palm
thorn arch
#

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

daring echo
#

If anyone here can animate UI to a crazy level, DM me. Will pay USD

mystic dagger
#

can anybody help me improve/fix my script?

unborn igloo
somber vault
muted narwhal
#

Still worth learning languages like python?

flat edge
#

But no because it's a different coding language setup

dusky kestrel
flat edge
muted narwhal
#

Specifically what I mean is that AI is rapidly expanding, would it still be worth learning?

solemn mason
brittle token
brittle token
dusky kestrel
hallow pulsar
#

you be like:

#

whoops wrong chat

wheat pumice
#

future proof job

violet folio
wheat pumice
#

elaborate

violet folio
#

just work one of the most prestigious jobs in the world bro

#

it's easy

wheat pumice
#

theres lots of ai related positions open for hiring

violet folio
#

dumb take

wheat pumice
#

ofcourse, the people developing it.

violet folio
#

if agi is possible everything can and will be automated

wheat pumice
#

strong if

violet folio
#

everything about AI is speculation

#

it can hit a wall or exponentially improve

wheat pumice
#

exactly, so why assume the most unlikely outcome

violet folio
#

I think the idea of choosing a career based on the idea of 'ai proofing' is dumb

wheat pumice
#

correct

#

but the person talked about it, so i gave an answer

#

i doubt ai can and will take my job

warm drift
#

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

keen geyser
#

Put that in a script inside your pizza tool

warm drift
#

lemme try

#

IT WORKS!!!!!!!

#

THANK YOU SOO MUCH

hollow yew
#

why would you need a waitforchild

keen geyser
#

Prevents errors

hollow yew
#

oh ok

keen geyser
#

Technically the thread will yield forever this way but

#

that's both rare and prevents big red error

#

so good enough for me

hollow yew
#

i honestly dont know a situation where humanoid wouldnt exist but still being able to equip the tool and use it

keen geyser
hollow yew
#

if theres no humanoid at that point just get rid of the tool!!!

keen geyser
#

I just use WaitForChild by habit

hollow yew
keen geyser
#

descendants of characters tend to be annoying and replicate slow

#

In retrospect though the majority of my issues were because of StreamingEnabled

hollow yew
#

dam

fair copper
hallow compass
#

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

native pulsar
#

lf scripter

native pulsar
rustic torrent
#

send game in dms

merry veldt
#

how much would a basic custom vehicle system cost

stark helm
oblique oyster
stark helm
oblique oyster
#

do dubious business practices

#

idk

stark helm
#

Remote events might fix my gaps

fair copper
#

trial and errors

stark helm
#

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

fair copper
#

i can suggest u where to start

stark helm
#

sure

fair copper
#

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

stark helm
#

rn I'm still in the practice part of learning but ill get to that asap

fair copper
#

you'll be like 60% ahead of general people

#

if u just get these 2 things right if its about roblox

fair copper
#

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

stark helm
#

cuz like acc earning from this will make me not have to work a part time job at mcdonalds once I go to college

fair copper
#

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

stark helm
#

I didnt start junior year yet, dw

fair copper
#

aight yeah

tight sierra
#

is this a good anticheat message

stark helm
marble iris
#

LOL

stark helm
# stark helm

look, if ur doing a custom message, better go all in

hollow haven
#

lmafo

oblique lintel
#

Vro how yall boys be scripting 😭🙏

#

Hardest thing I did in my life

vast gazelle
#

You’ll get it

#

Just do stuff

somber vault
#

we vibe code

#

and larp in code help

#

me and @sleek shuttle do ts all the time

#

while having neovim and linux open

remote bear
oblique lintel
#

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

remote bear
oblique lintel
#

3 months gang

remote bear
oblique lintel
#

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

severe cobalt
remote bear
severe cobalt
# oblique lintel 3 months gang

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

remote bear
oblique lintel
oblique lintel
#

And a lot of the time I need a video to do the things I’m doing

severe cobalt
remote bear
severe cobalt
oblique lintel
#

I take no classes cuz im 15 and in highschool 😭

severe cobalt
#

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

remote bear
oblique lintel
#

Thanks for the help tho guys what lil tips yall had will help a lot

severe cobalt
oblique lintel
#

I’m actually working on my first game it’s a clicker but the clicking isn’t workin and im trying to fix it

white dock
remote bear
remote bear
oblique lintel
#

Chat iv been cooking even if 0 of the code work

rapid gyro
#

anyone wanna make a troll tower obby anime themed game?

oblique lintel
sleek shuttle
digital mica
strange palm
#

Anyone good with java?

#

Or C#

mighty bolt
#

i have watcjed brawl devs first beginner scripting toutiral, he has more videos but its so boring. what should i do?

open yarrow
#

nobody is paying money for allat LMFAO

stoic stag
rose light
#

Yoo

#

Can anyone help me for my game? I can give %

stoic stag
tepid willow
severe cobalt
slow hill
#

@fallow yoke @mental shore