#code-discussion

1 messages · Page 256 of 1

shell sorrel
#

cs, extremly easy to compile and no setup needed, just notepad

#

or build temporary BAT file that automaticly compiles ur file

wicked palm
#

can someone help me fix my code

#

pls any1

ionic horizon
wicked palm
#

bah dw i fixed it

ionic horizon
#

okok

unkempt prawn
#

is this good script

#

wait a sec

willow bobcat
#

yeah

#

i was lucky i had to use the worst chatgpt of all time i had to learn how to code in the process but ai has been getting better

molten heath
#

Server sided StateManager that sets player attributes? That way clients can listen to state changes, but can't change state changes since Attributes can only be changed by the server. That's how I'd do it, but I'm not a very talented programming, I do 3D stuff mostly. I'm sure someone around here has a better method, but thats how I handled it for one of my projects.

slow plover
unkempt prawn
slow plover
#

😔

wary sluice
#

what do i do if i want knockback in server

#

linear velocity or vector forces?

stiff saddle
alpine dirge
#

Why's there an error code 01 in a game with 1 player after sometime they're not moving/prioritising another app

hollow turtle
past knoll
# hollow turtle

as a s6 scripter i can confirm this is indeed the most optimizable code possible

signal spoke
#

yo, im gonna be honest i want to make some robux but don't want to go full time

#

do ppl still make ads for that kind of stuff?

rich moat
#

That's why you don't see them

#

Also where you're most likely to get scammed

#

So be careful

signal spoke
rich moat
signal spoke
rich moat
signal spoke
#

Roblox assistance is nothing compared to the other ones

rich moat
#

Cuz I think it's a banger of an AI model

soft goblet
lost pebble
#

if you understand how dictionaries work, you should be able to easily pick up datastores. they're essentially structured the same

mild sequoia
#

👋 Just a reminder to read our rules and use the marketplace to hire!
-# Hiring or looking for work in our channels classifies as misuse and will result in moderation.

jagged mortar
#

I am new

#

To coding and learning raycasting rn

remote bear
jagged mortar
remote bear
#

is one way

jagged mortar
#

Ok where do I put that

remote bear
#

well after you call raycast = workspace:Ray

jagged mortar
#

⁚```lua
local tool = script.Parent

local fireGun = tool.FireGun

local DISTANCE_MULTIPLIER = 50

local excludedParts = {}

local function visualizeRay(origin, direction) --Showing the Ray and defining where it should start
--Define length and midpoint
local length = direction.Magnitude
local midpoint = origin + direction * 0.5

local newpart = Instance.new("Part")

newpart.Anchored = true
newpart.CanCollide = false
newpart.Material = Enum.Material.Neon
newpart.Color = Color3.new(0.223529, 0.898039, 1)

--Change size and CFrame
newpart.Size = Vector3.new(0.1, 0.1, length)
newpart.CFrame = CFrame.new(midpoint, origin + direction)

newpart.Parent = workspace

game.Debris:AddItem(newpart, 0.5)

end

fireGun.OnServerEvent:Connect(function(player, origin, mousePos)
local direction = (mousePos - origin).Unit * DISTANCE_MULTIPLIER

local raycastParams = RaycastParams.new()
raycastParams.FilterDescendantsInstances = excludedParts -- filters out what couints as a touch
raycastParams.FilterType = Enum.RaycastFilterType.Exclude -- excludes it from being able to be touched

local rayResult = workspace:Raycast(origin, direction, raycastParams)

if rayResult then
    print("RayResult Found Sigma(:", rayResult)
    visualizeRay(origin, direction)
    
    rayResult.Instance.Color = Color3.fromRGB(170, 255, 42)
else
    print("RayResult NOT FOUND!")
    visualizeRay(origin, direction)
    
    rayResult.Instance.Color = Color3.fromRGB(255, 53, 39)
end

end)```⁩

#

is that a bot

#

i was just putting my code in for review by others

remote bear
jagged mortar
#

no a tutorial

#

and i put notes so i can understand everything

#

by brawl dev

remote bear
#

could you send the link to it?

jagged mortar
#

ok

#

Learn how to script Raycasting in your Roblox games! Raycasting is an easy concept to understand, but a very difficult concept to implement, making it one of the most popular scripting concepts on Roblox. Follow along this long, detailed tutorial discussing what raycasting is, how to create visuals for your raycasts, learn RayResults, Raycast Pa...

▶ Play video
#

thats the one

#

how do local scripts transfer into scripts like

#

⁚```lua
local tool = script.Parent

local fireGun = tool.FireGun

local DISTANCE_MULTIPLIER = 50

local excludedParts = {}

local function visualizeRay(origin, direction) --Showing the Ray and defining where it should start
--Define length and midpoint
local length = direction.Magnitude
local midpoint = origin + direction * 0.5

local newpart = Instance.new("Part")

newpart.Anchored = true
newpart.CanCollide = false
newpart.Material = Enum.Material.Neon
newpart.Color = Color3.new(0.223529, 0.898039, 1)

--Change size and CFrame
newpart.Size = Vector3.new(0.1, 0.1, length)
newpart.CFrame = CFrame.new(midpoint, origin + direction)

newpart.Parent = workspace

game.Debris:AddItem(newpart, 0.5)

end

fireGun.OnServerEvent:Connect(function(player, origin, mousePos)
local direction = (mousePos - origin).Unit * DISTANCE_MULTIPLIER

local raycastParams = RaycastParams.new()
raycastParams.FilterDescendantsInstances = excludedParts -- filters out what couints as a touch
raycastParams.FilterType = Enum.RaycastFilterType.Exclude -- excludes it from being able to be touched



local rayResult = workspace:Raycast(origin, direction, raycastParams)

if rayResult then
    print("RayResult Found Sigma(:", rayResult)
    visualizeRay(origin, direction)
    
    rayResult.Instance.Color = Color3.fromRGB(170, 255, 42)
else
    print("RayResult NOT FOUND!")
    visualizeRay(origin, direction)
    
    rayResult.Instance.Color = Color3.fromRGB(255, 53, 39)
end

end)```⁩ then

#

⁚```lua
local tool = script.Parent
local pointPart = tool:WaitForChild("Handle"):WaitForChild("Point")

local player = game.Players.LocalPlayer
local mouse = player:GetMouse()

local fireGun = tool:WaitForChild("FireGun")

tool.Activated:Connect(function()
fireGun:FireServer(pointPart.Position, mouse.Hit.Position)
end)

#

1st is my script

#

2nd is my local script

#

how do they cross over where i dont need to make new variables

#

confuses me

remote bear
#

ok so all you would have to do is remove the rayResult.Instance.Color = Color3.fromRGB(255, 53, 39) after else since rayResult.Instance is nil in that else statment. In the tutorial he does remove it anyways

jagged mortar
#

ok

#

done

#

can you answer my other question if you can

#

im tired asl ima go to bed

#

mind if you add me on discord and i can ask you tomorrow if you got time

#

goodnight everyone

short wadi
jagged mortar
#

ok

short wadi
#

or if its from local to server use a remote event

#

or vice versa

remote bear
jagged mortar
#

thanks bro

jagged mortar
remote bear
# jagged mortar yeah

what that other guy said. One if for the players user input localy that would only affect the player and one for the sever witch affects everyone

short wadi
#

one is on the client it controls what you the player sees and does so if u make a gun on only a local script only you will see it so you need to pass the stuff to a serverscript via remote event so that others can see it

jagged mortar
#

bet

#

ima go to sleep gn everyone

short wadi
#

gn

vague bison
#

do yall like to

#

sometimes name your variables or functions the dumbest shi a human can write

river sedge
#

started to use formatting

#

the second format function is for the number

#

so it will display the number with ,

warped ivy
#

LF ppl for 10 devs 1 game video

rapid eagle
stray minnow
#

anyone know of any uncopylocked/open source roblox games that are coded super well in oop that i can take a look at

alpine dirge
#

Why do I get disconnected with error code 01, randomly from a game which I'm the only one playing?

midnight spindle
#

hi chat

strong spire
#

Hi

midnight spindle
#

can someone give me an idea on what script should i send to scripter application?

alpine dirge
#

What's the error code 1, and why does it occur when I'm the only person playing the experience
(doesn't occur when someone else plays with me)

strong spire
remote bear
#

making a word whitelist KittyStare

alpine cargo
#

roblox is prob making an safechat

#

i think they could easily give verified devs leniance on whitelisting words, then offset alot of the management onto them

#

and maybe has preset chat for non verified

remote bear
echo stream
#

that its good

tall tartan
viral quest
echo stream
north escarp
#

Any scripter dm me pls to make a cashgrab together Skull Skull

final sail
#

WHO IS A SCRIPTER DM ME

long pilot
#

I'm scripter

strong spire
cedar fossil
#

Hi, I'm looking for a experienced dev or simply a dev.
You can simply Add me or DM me.
It's not about a project but something else.

lapis parrot
#

can someone play my game rq

spiral jungle
exotic phoenix
#

just fixed my first ever memory leak I found in my code

solid ruin
#

@cedar fossil đŸ„€

umbral bone
exotic phoenix
umbral bone
#

creating tweens everytime

urban pebble
#

he just said he fixed it

umbral bone
exotic phoenix
#

fr

exotic phoenix
umbral bone
#

like a progress cooldown

exotic phoenix
#

no I disconnect the registery

umbral bone
exotic phoenix
#

it was for an elevator queue system for my project

umbral bone
#

ohh

exotic phoenix
#

I decide exactly for how long the registery is open

#

after which it will close, until it opens up again

solid ruin
#

could anyone check my website out and rate it ?/10

#

its for my portfolio

spiral jungle
solid ruin
#

im about to update it right now

lyric flame
#

does anyone here know alot of stuff abt roblox api

bitter zealot
#

2016 source code leak and roblox docs

solar inlet
static coral
craggy hazel
remote bear
remote bear
#

by checks i mean running the check function witch does smaller checks. The test was also with added suffix and prefix

static spear
bitter zealot
wintry iris
#

You know you're gonna get cooked for it anyway right

bitter zealot
remote bear
remote bear
remote bear
bitter zealot
#

ew macro

#

wtv

wintry iris
remote bear
#

macro? wdym

wintry iris
#

Or it's like a specfic category of words you're whitelisting?

remote bear
wintry iris
remote bear
wintry iris
#

Maybe use as an anchor point, then whitelist some cool words

#

No way you're typing out the whole dictionary rite, hehe

remote bear
celest forge
#

Someone up for chatting

#

Noo

#

Bro u guys

#

Ghosting me is crazy

#

Nvm

#

I will just chat with myself

#

Bc no one chat with me cryingdead

#

How are u @celest forge

celest forge
celest forge
lilac river
#

What AI do you guys think is best to make scripts?

celest forge
celest forge
celest forge
celest forge
#

Um

#

Did u play any good roblox game lately

celest forge
celest forge
#

I play it too!

celest forge
#

Yas

#

Now what about codes

celest forge
celest forge
celest forge
#

But only basic stuff

celest forge
#

I had to watch 20 tutorials

celest forge
#

Still its hard for me

celest forge
#

Nah

remote bear
#

This channel isn’t your billboard for the second time

celest forge
#

This guy is probably a big scammer

real fulcrum
#

I ve got proofs if u want

celest forge
#

Still

celest forge
#

Its not allowed

real fulcrum
real fulcrum
celest forge
#

UR HIRING DEVELOPERS THATS ADVERTISING

celest forge
real fulcrum
#

i deleted my message happy?

real fulcrum
#

u probably had a bad day

unborn void
#

Calm down g

celest forge
real fulcrum
celest forge
real fulcrum
celest forge
#

I wouldn’t be mad if u wouldn’t argue and delete the message from the start and read #rules

real fulcrum
#

do you really think i have the time to read every single rules of a discord server?

celest forge
real fulcrum
#

plus it takes sm time just to post and people don't even dm

celest forge
#

See

real fulcrum
#

ok then if theres no price ig its not hiring its volunteering?

celest forge
real fulcrum
#

well guess what

celest forge
#

Bro just post it on other channrls

real fulcrum
#

they wont let you publish unless theres money

#

alr bro i'm out of here

celest forge
real fulcrum
#

if u get mad just for this idk what would happen to u

remote bear
#

Bro just had to get the last word in

celest forge
real fulcrum
real fulcrum
celest forge
real fulcrum
real fulcrum
#

what are you the security guard of this server

real fulcrum
celest forge
digital depot
#

yall think I should start coding?

celest forge
#

Rules are made for people to follow thrm

celest forge
#

In my whole life

remote bear
real fulcrum
digital depot
real fulcrum
remote bear
real fulcrum
celest forge
remote bear
celest forge
#

Like in real word

real fulcrum
celest forge
#

Like in discord

real fulcrum
#

bro i deleted my message you can stop now

celest forge
remote bear
celest forge
night prairie
#

what is going on

remote bear
celest forge
#

Bro after u said that u deleted it ti follow the rules next time

real fulcrum
celest forge
#

But u didnt stop arguing

real fulcrum
real fulcrum
celest forge
celest forge
remote bear
real fulcrum
celest forge
remote bear
real fulcrum
real fulcrum
celest forge
remote bear
remote bear
#

👍

static spear
upbeat smelt
static spear
upbeat smelt
obtuse nimbus
regal salmon
#

brother read the message DIRECTLY above yours 😭

fierce drift
#

this is rage bait

fierce drift
#

but like why no one need coders

regal salmon
fierce drift
#

I cant type in there

regal salmon
fierce drift
#

well im trynna make a game for people for Robux

regal salmon
#

people often look for fullstack scripters in scripter-hiring

#

or just scripters to work from start to finish on a game with a team to do the other stuff

fierce drift
#

I don’t work on hard games because it’s a waste of time I usually just code like games that can get over 500k visits if it’s about brainrot for like 10k but if it’s a small obby that has like cash grab vibes I’ll do for cheap cus it’s mid and nit hard to make

regal salmon
#

doesnt mean it's not worth looking through, there are all sorts of games that have jobs open in there, youre bound to find something you want

#

and again, you can post in #scripter-hirable if you want to create an ad for yourself that details exactly what youre willing to work on

fierce drift
#

do people pay upfront?

regal salmon
#

and then people will message you to hire you

regal salmon
#

it's often a no, though

#

you might be able to get a percentage of the final amount upfront if you negotiate

static spear
regal salmon
#

true that

fierce drift
#

It’s private rn

static spear
regal salmon
#

prove you've made it first, then get atleast partial payment, then send the file

#

nah

fierce drift
#

but thankfully made a game with a friend in 2023 got 90m visits I didnt get verified

#

he did though

regal salmon
#

dayum

fierce drift
#

cus he did most of the work

#

but yeah

#

ima go and find work cus I need the Robux for ada

#

Ads

regal salmon
#

fair enough lol

#

i assure you will find something eventually, i was struggling to get commissions not too long ago, but ive recently gotten a crazier offer than i ever thought i would

fierce drift
#

dang thats nice ti hear

regal salmon
#

getting the luau scripter role seems to have helped, so i think it's a good idea to go for that

fierce drift
#

idk how to get that

#

ain’t so active here cus I got ppl dming me for help

#

which I’ve made good money from but not enough

#

but Ay if u got anyone needing code just lmk

static spear
fierce drift
#

Besides that it’s alot but I just oook forward to selling games instead of profiting but I’ll try more

#

I like rather working with people

icy gale
fierce drift
icy gale
#

And my art is terrible

fierce drift
#

nah u will do it one day dw

#

just don’t give up

icy gale
#

Hoping my next game is the big thing

hot gull
#

guys how can i run the code there is no run button im new

slow karma
#

to learn the basics of it

hot gull
#

why doesnt this work the block just dissapeared

drowsy pumice
hot gull
drowsy pumice
#

it should be set to true otherwise the brick will fall through the map

#

thats why it disappears

hot gull
#

oh yeah thanks it works now

drowsy pumice
#

Nice

livid herald
#

how would you make a good header system like headering a football, ive checked the distance between the ball and the players head using magnitude and it worked alright but only worked with like a distance of 8 studs which seemed unrealistic

maiden forge
#

raycast from the head to the ball

livid herald
#

yea ive literally just tried that just now

#

its actually worse somehow

maiden forge
#

umm

#

you could try a hitbox?

feral niche
feral niche
#

Should work sufficiently

hearty hawk
#

is it possible to make random strings from a table as a message?

lapis parrot
#

can any 1 play my game and test it

steep light
winged marten
#

whats the best way to create an 2d side camera system, which in some areas zome closer / or further

digital depot
digital depot
slow hull
real fulcrum
#

dm me if your a good scripter

quaint thunder
#

yo

#

what are some cool mechanics i can do for my portfolio

azure blaze
azure blaze
soft meteor
#

Can anybody help m with scripting

#

im tryna make a simulator

soft meteor
digital depot
#

and what type of simulator

soft meteor
soft meteor
digital depot
north escarp
#

Any scripter dm me pls

To make a duo and a game together cathello

rapid eagle
#

Tuff air running

deft pewter
#

does anyone that has coded a gun in their life know how i could make bullets shoot

#

do i use a projectile or sum

frozen spire
deft pewter
thorny trench
#

or it depends if you want like a hitscan system or what

deft pewter
#

assemblylinearvelocity could be an option but i dont like it because of roblox physics, so i should use some stuff like projectile since it could be more accurate?

frozen spire
deft pewter
frozen spire
#

if u dont want a physical projectile then make a hitscan based one with raycasts

deft pewter
frozen spire
#

like

#

instance.new("part") in the code and then apply velocity or some force to it

deft pewter
frozen spire
#

bodyvleocity or linearvelocity

deft pewter
#

ok bodyvelocity might be good though

#

i remember it being good

#

just a vague memory though

frozen spire
#

then cframe updates or position updates

deft pewter
uncut nest
frozen spire
frozen spire
#

or what

uncut nest
#

Yes

#

r = r0 + v * dt

frozen spire
#

yea using cframe is probably the most ideal choice considering the ass physics of roblox

lapis parrot
#

any investors

deft pewter
frozen spire
#

not updating every frame but yeah

#

wait no im so dumb

#

it uses rays why did i say cframe 😭

#

alright forget everything i just said

deft pewter
#

i was searching for it 🙏

frozen spire
#

🙏

deft pewter
#

also i'll take in mind that formula but i'm not going to copy and paste until i figure it out

#

that's what i always do tbh

#

else i cant go through my coding journey 🙏

frozen spire
#

yeah stay a good boy

deft pewter
azure blaze
#

dorks

deft pewter
#

dw i can be your mommy

azure blaze
#

are you not a whole guy

#

G

deft pewter
#

i can be a femboy

#

as long as you want

old forum
#

Fellow

shell swan
deft pewter
#

especially thanks to asmr mommy

#

so criticize all you want

shell swan
#

what can you do @deft pewter

frozen spire
deft pewter
#

i have much knowledge and it shouldnt take me long to learn something new especially on roblox

#

i'm not sure why you're so obsessed with this ideology of yours

#

but i'm just joking around

#

currently i was thinking of making a rpg

#

and what i did was a custom inventory and what i call a "custom typer"

#

so yes, i do have experience and i'm way better than a simple beginner guy

deft pewter
#

but um

#

i also made a gun for a friend which doesnt have a shooting system yet

mild trout
#

wawwww

shell swan
deft pewter
#

they're both in an early version

#

imma send you these later

#

i'm playing

shell swan
deft pewter
#

i dont show my stuff in this server

#

🙏

shell swan
#

do you write system with oop?

frozen spire
shell swan
frozen spire
shell swan
#

"self taught scripter"

frozen spire
shell swan
#

mf put that in his bio like you can learn luau in school

#

everyone is self taught in roblox

frozen spire
#

my classmate is also a self taught c# dev and he can make an inventory system from memory

#

idk why its a problem to put self taught there

shell swan
shell swan
#

the code speaks your mind

frozen spire
#

"learning stuff from memory" wym bro 😭 how can u learn something if u already memorised it

shell swan
#

you see the interconnected dots in the process

#

making a mental scheme of workflow

deft pewter
#

so you're mad because i was making mommy jokes

#

you're unworthy of debate

frozen spire
deft pewter
#

also sure here's my inventory system

#

but again

#

it's an early version

shell swan
frozen spire
deft pewter
shell swan
#

and vocaloid tag

frozen spire
frozen spire
shell swan
#

I feel a vibecoder is here

frozen spire
#

ur just a hater

#

everyone started somewhere

#

at one point in ur life u were worse than this 😭

shell swan
#

I am src1x1x1x1

#

This year I will become known

#

while you keep vibe coding

frozen spire
frozen spire
deft pewter
#

the buttons being letters?

#

that's a placeholder since i didnt really think of what to do with it

#

it'll be either an image or a text

#

i'll see

frozen spire
#

lowk my brain is just too slow for it

deft pewter
#

yeah well that's fair

#

alpha state

deft pewter
frozen spire
#

pls

shell swan
deft pewter
#

ok man

frozen spire
deft pewter
#

fuck this guy

#

ragebaiting or sum

shell swan
frozen spire
#

only if i could be cool like you....

shell swan
#

that was 2 months ago. Then I quit roblox and I came back this week to lock in this year

#

this week I learned oop and practiced with it and today I made a server-side timer that can scale to hundreds of timers at the same time with oop and it's as precise as it can be

severe venture
#

yo I need someone to spice up my UI

#

anyone good with some UI effects?

frozen spire
#

i hope one day i can be as cool as you

deft pewter
shell swan
frozen spire
#

i literally have my website + the anticheat documented there lmao, i said "working" because i mostly see anticheats just false banning everywhere

#

and not detecting shit

shell swan
#

what does it anti cheat

deft pewter
frozen spire
#

just an idea

deft pewter
#

unworthy opponent

#

he probably doesnt even code

shell swan
#

not falling for the obvious keylogger

deft pewter
#

i made what you said you did

#

and way before you btw

shell swan
#

and how long have you been scripting

frozen spire
#

there u go

shell swan
frozen spire
#

u wont get keylogged

deft pewter
frozen spire
deft pewter
#

r we talking about skills or what

#

as long as i'm better than you in coding i won this argument

deft pewter
#

depends

#

i didnt use oop for the custom typer

#

i did for the inventory tho

shell swan
#

what is your biggest feat

frozen spire
shell swan
#

I don't have perms to post

slow hull
#

what are you guys yappin abt

arctic raft
#

if i have a overhead rank gui and i want to add a rank image for their rank in the group can i do that from the server script or do i need a remote event system?

arctic raft
frozen spire
shell swan
#

I can't win today

#

my powers are sealed

frozen spire
static spear
static spear
frozen spire
static spear
#

"and ur just typing shi????" both of them are

frozen spire
#

and now 4 cuz u joined for no reason

static spear
frozen spire
shell swan
static spear
#

@frozen spire you atleast attempted to engage logically all i see are the other two arguing ego flaming

shell swan
#

I am not motivated to conquer this server

#

if I find the reincarnation of shedletsky then I may become motivated again

#

but today I have ragebaited you and your boyfriend while I keep my cool

#

this is the difference between beginners and professional level thinking

frozen spire
#

what

deft pewter
#

you on nothing and mind your own business

static spear
frozen spire
shell swan
#

I make my chatgpt fear me because of what I say

frozen spire
shell swan
#

I am the one in control

#

you are not

static spear
shell swan
#

robloxian peasant

static spear
static spear
shell swan
#

It's only a matter of time till I find shedletsky and get my power back

#

you can keep showing your advanced systems today but remember the war isn't won in one battle

deft pewter
frozen spire
deft pewter
#
  • i just said mind your own business bruh
#

i aint keeping this argument going

static spear
shell swan
#

fool

#

drown in your regrets

#

because the time will come kornel

frozen spire
frozen spire
shell swan
#

it can be a week, a month, a year, 5 years. Then suddenly you will see me and realize how wrong you were

frozen spire
frozen spire
#

but i can outlast you

shell swan
#

are you challenging me

frozen spire
#

no, but also not backing down

static spear
#

what is this even about?

frozen spire
#

just having fun

shell swan
frozen spire
shell swan
#

roblox

frozen spire
#

couple of years, recently got back to it due to boredom

shell swan
#

I have been scripting for 2 weeks and I know the oop framework

frozen spire
#

thats nice

shell swan
#

chatGPT in fear responded to me saying I am far ahead than most people after they have been scripting for months

#

you see my curve of power

frozen spire
#

the only thing i love in AI is that they always say ur right

#

they always reassure you

static spear
#

using AI kills your brain

frozen spire
shell swan
#

time is ticking kornel wheter you like it or not

frozen spire
#

id rather have the frontend part of my websites be written by AI and then id edit it after saving me hours of work and i can just focus more on the backend

#

cuz for god's sake ai cant make a secure auth

static spear
static spear
shell swan
#

you need to lock in kornel or you will be defeated by my adaptation skills that exceed every human being in this blue planet

frozen spire
shell swan
#

not once did I encounter a life form that outmatches my power

frozen spire
shell swan
#

And I will conquer this server too

#

just like I did with robloxia

static spear
frozen spire
#

if u use it right

shell swan
#

do not engage with him

frozen spire
frozen spire
static spear
frozen spire
#

or atleast not true with every ai

frozen spire
static spear
frozen spire
shell swan
#

I think therefore I am

frozen spire
shell swan
#

nobody is like me because everyone is in the matrix

static spear
frozen spire
shell swan
#

if you vibe code you are in the matrix

#

I am not

frozen spire
shell swan
#

therefore you have already lost

deft pewter
#

AI is a tool

#

therefore is used by everyone

#

or atleast can be used by everyone

proven plover
#

the founder of linux started to use ai to build his systems

frozen spire
static spear
deft pewter
#

but that could happen

static spear
frozen spire
frozen spire
#

😭

#

alr

deft pewter
frozen spire
shell swan
#

unfortunately for you I become good the day I do something

#

you have no chance

frozen spire
#

adapting in a world of fools isnt anything challenging

shell swan
#

especially when you are the fool

#

for ever thinking you could challenge me

static spear
#

just a thought

frozen spire
frozen spire
static spear
shell swan
#

fool spitting foolery

#

in a world of fools

#

fools all around me

frozen spire
#

If my foolery can keep up with your output this long, what does that say about your supremacy

shell swan
#

so foolish

shell swan
static spear
shell swan
#

You think you bother me?

#

This is also a learning process you see

#

I am leveling up my hatred

#

the more hatred I get, the stronger I become

frozen spire
#

Learning process? So you're admitting you're not as supreme as you claimed. You're still learning from a fool. Interesting

shell swan
#

And when you keep vibe coding I get stronger

#

the less brain is used the more I can steal

shell swan
#

learning from myself

frozen spire
shell swan
#

my own algorithm

#

I don't think

#

I make others think and give me strings therefore I get free info

#

fool

frozen spire
shell swan
#

no

#

fool

frozen spire
# shell swan I don't think

If you don't think, how are you adapting? Adaptation requires processing information. You're contradicting your own premise.

#

fool

shell swan
#

fool

shell swan
#

you are too foolery foolish to understand my algorithm

static spear
deft pewter
#

ong they saying random shit

frozen spire
frozen spire
shell swan
#

Like I said others think for me. My soul is powering the energy all around us. It drives people to command me

frozen spire
proven plover
#

im too sleep deprived to understand this

frozen spire
shell swan
shell swan
#

I exist therefore my world my rules

#

my aura submits others

#

because I am

#

the one who exists

#

yes

#

I am the honored one

#

all of you are npcs

frozen spire
#

your arua commands, my will resists

#

you exist in your world, i exist in THE world

shell swan
#

yet you still fail to my baits in this foolish conversation like a fool trying to act moron in a foolish way

frozen spire
#

im the mirror showing you that supremacy only matters if theres someone to challenge it

frozen spire
shell swan
#

supremacy exists for me

frozen spire
#

supremacy exists for you but needs my engagement to prove itself

#

thats dependency dressed up as power

shell swan
#

you think you control the reality upon us when you are bound to my world

#

no

#

I am still the honored one

eternal solar
#

what do you call someone with professional grammar

frozen spire
eternal solar
#

man im hilarious

frozen spire
shell swan
#

đŸ˜” đŸ©ž đŸ”Ș

shell swan
#

what master do you serve?

frozen spire
#

im the anomaly in ur perfect system

shell swan
#

you are NOTHING

frozen spire
shell swan
#

not david goonzucki

#

not kirk

#

not jfe

frozen spire
frozen spire
# shell swan you are NOTHING

I am nothing. Nothing that bends, nothing that submits, nothing that fears your supremacy. And that nothing will remain nothing - untouched, unchanged, free.

shell swan
#

I won this argument

#

ez ragebait get good

#

so easy

frozen spire
#

i didnt get rage baited

shell swan
#

you did

#

and you are an actual MORON

frozen spire
#

i used ai to respond to you thinking we are in some epic anime battle

shell swan
#

.kornel37 I will remember you as long as today

frozen spire
#

having some crazy talk

shell swan
#

but still the machine isn't near my level

frozen spire
#

its above

shell swan
#

no

frozen spire
#

he is alone, the honored one

#

throughout heaven and earth

plush oxide
#

Does anyone have tips for ais that chase you while pathfinding?

shell swan
#

it still fell to my hidden 4d traps

#

you can't understand

frozen spire
shell swan
abstract flare
#

how are the buttons getting printed but nothing gets printed when i click them? this shi weird ash

shell swan
frozen spire
#

these comments are diabolical

shell swan
# frozen spire i cant understand foolery

⋔⏃⍀☊⊑ 18 ⟟ ⏃⋔ ☊⍜⋔⟟⋏☌ ⏃⌰⍜⋏☌⌇⟟⎅⟒ ⋔⊬ ⍜⏁⊑⟒⍀ ⊑⏃⌰⎎.../-_/-

abstract flare
#

holy restarted

shell swan
abstract flare
supple spindle
shell swan
#

1v1 in forsaken kid

abstract flare
frozen spire
abstract flare
#

sooo does anyone know how tf this shit somehow doesnt work?

shell swan
# frozen spire 😭

ΌΔρΊΉ ‱∞ Ξ ωΞΛΛ ÎșΞΛΛ ΊΉΔρΛΞ ÎșΞρÎș

shell swan
abstract flare
supple spindle
#

not that

#

or no

#

it was hol up

#

oh wait yea that correct

#

@abstract flareuse .Activated

abstract flare
visual mural
#

can anyone help me with my boxing game im having trouble with the npcs

shell swan
slow hull
#

drool

verbal coyote
#

I would appreciate it greatly if someone could point out why my order of operations of destroying a WeldConstraint between a character's HRP and a chair part, then using :PivotTo on the character to a part is failing? I have tried nearly every fix I can find and think of from RS.PreAnimation:Wait(), and the only fix I can fix myself is yielding 0.25 seconds

#

^ Custom chair, not a SitPart

viral verge
#

can anyone help me understand what's wrong with my script? 😄

viral verge
verbal coyote
#

even after converting these custom seats into actual Engine SeatParts

#

this same issue occurs

devout cloak
verbal coyote
#

before PivotTo?

devout cloak
verbal coyote
#

What animation

devout cloak
devout cloak
worn wolf
#

SCRIPT
⁚⁚```
local folder = game.ReplicatedStorage:WaitForChild("originalPlayerCharacters")

game.Players.PlayerAdded:Connect(function(player)
print("Player added:", player.Name)

local function saveCharacter(character)
    if not character or not character.Parent then return end

    local clone = character:Clone() 
    clone.Name = player.Name
    clone.Parent = folder

    print("Clone saved for", player.Name)
end

if player.Character then
    saveCharacter(player.Character)
end

player.CharacterAdded:Connect(saveCharacter)

end)


**ERROR:**
⁚⁚```
 00:34:12.732  ServerScriptService.SaveOrigPlrChar:12: attempt to index nil with 'Name'  -  Server - SaveOrigPlrChar:12
```⁩⁩

I suck at scripting and I've been struggling to do this for a while now, some professional come help please🙏
errant elm
#

code help and code discussion done got swapped

errant elm
#

add this line at the top of saveCharacter()
⁚```lua
print(character.Archivable)

#

tell me if prints false or true

worn wolf
#

tysm😭

fickle igloo
#

Hey so I was making a physics system, and I wanted the client to step every frame on the player's device. And I was wondering if just making a server physics and client physics would be better if your guy's opinion.

#

i like to map it out first before i do it

#

if you wouldn't have to check it's client or server, would that be less spaghetii'd

errant elm
#

just wait like a month for roblox's server auth to go out of beta

#

unless you're making floating origin phyiscs

fickle igloo
errant elm
#

origin shifting movement on the client so you can use all 64 bits of ur position data as the IEEE commitee intended

#

i.e for space games

fickle igloo
#

no i intended to make a custom physics system for the purpose of making a sidescroller within roblox

#

no Z movement

#

the origin is always 0,0,0

errant elm
#

fair enough, im doing the same thing for a 2d top down space gama and originally just used the 3d physics but constrainted everything to 2d

#

yea ur system isn't terrible, you'd want to have the vast majority of the collision & physics engine shared

#

then the servers main job is sending data to the client and the clients main job is doing prediciton and rollback between server updates

thorn lark
#

Anyone wanna duo?

fickle igloo
deft pewter
faint hollow
#

Inventory system
Datastore + saving
Crates
Auras (equip logic)
Potions (buff system)
Integrations
Bug fixing/testing

How mch would this cost me if i got it done by sm1 yall think?

supple spindle
dusk terrace
#

Hey guys

#

What's the fastest way to learn how to script knowing already C, Python and Javascript?

dusky schooner
#

what happens when your game doesnt use module scripts

crimson portal
split gazelle
#

I hope you” while true do “you game

visual mural
#

Anyone in here like to script I need someone to teach me

stark kernel
#

LF long term animator

tired remnant
storm nacelle
#

would i use tweenservice to tween this pickaxe in a loop where its hitting the stone or is there an easier way? heres the model btw its a model with 4 meshes

drowsy vault
#

who wanna test my game when it realses also picking admins in it

storm nacelle
brave ginkgo
#

rigging

devout cloak
#

that should work

#

well weld one part to the other parts

dark ginkgo
#

guys i had a sofa with a script in it and it has a line with require() in a weld was this a virus???#

fluid gorge
#

ECS changed my life

tired remnant
zealous hollow
#

question fellers; i'm using strict luau,

and trying to implement the following behaviour:

⁚```lua
function EventRegistry.HasEvent(name: string): boolean
assertEventsAreIndexed()

return remoteEventCache[name] ~= nil
    or remoteFunctionCache[name] ~= nil
    or bindableEventCache[name] ~= nil
    or bindableFunctionCache[name] ~= nil

end


But I'm seeing hte linter error:

⁚`TypeError: Types BindableFunction and nil cannot be compared with ~= because they do not have the same metatableLuau`⁩

... Is the solution to this unironically:

⁚```lua
function EventRegistry.HasEvent(name: string): boolean
    assertEventsAreIndexed()

    return not not remoteEventCache[name]
        or not not remoteFunctionCache[name]
        or not not bindableEventCache[name]
        or not not bindableFunctionCache[name]
end
```⁩

or am I doing this wrong? ![crylaugh](https://cdn.discordapp.com/emojis/994961155510513825.webp?size=128 "crylaugh")
signal gorge
#

anyone know about the new input action system?

#

I'm trying to create a M1 combat, but whever I click any ui the m1 combat also occurs

#

I don't want that, whats the easiest way to prevent this?

#

M1 combat should only occur when a player presses M1 in the game screen

obtuse nimbus
obtuse nimbus
signal gorge
#

but would have to setup a whole lot of connections for many ui

#

and then there's roblox core gui

obtuse nimbus
#

Are you using menus that stop player movement or are you using a hud which lets the player interact with UI while they're playing

signal gorge
#

top bar ui

#

so when you press a topbar ui

#

it fires a combat move animation

#

but it shouldn't it should only fire when they're not pressing the ui

obtuse nimbus
signal gorge
#

for somereason i don't rememeber having this problem with UIS

zealous hollow
obtuse nimbus
celest crown
#

what resource do you guys use to learn how to script

cobalt apex
rich moat
obtuse nimbus
slender wharf
signal gorge
# obtuse nimbus Then you should use the [method I showed above](<https://create.roblox.com/docs/...

I used a combination of these methods to check if there was any Ui or topbar ui or if the menu is open, thanks for helping

if UIS:GetMouseLocation().Y <= GuiService:GetGuiInset().Y then
return
end

        if #playerGui:GetGuiObjectsAtPosition(UIS:GetMouseLocation().X, 
            UIS:GetMouseLocation().Y - GuiService:GetGuiInset().Y) > 0 then
            --If this shows signs of bug, need to check the subtracting of GuiInset again
            return
        end
        
        if GuiService.MenuIsOpen then 
            print("MENU OPEN")
            return
        end
#

It finally worked

light valve
#

this is not working

lucid sigil
spice summit
obtuse nimbus
blazing oasis
rapid eagle
#

mechanical reminds me of mechanical physics nerd

#

watch ur tone buddy

raven holly
#

no like

#

not in an offensive way