#code-discussion
1 messages · Page 256 of 1
give
bah dw i fixed it
okok
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
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.
does the script
i recorded the script but roblox didnt add the sound
đ
use LinearVelocity within the target's HumanoidRootPart for consistent
Why's there an error code 01 in a game with 1 player after sometime they're not moving/prioritising another app
as a s6 scripter i can confirm this is indeed the most optimizable code possible
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?
Yeah but they get taken quickly
That's why you don't see them
Also where you're most likely to get scammed
So be careful
Ah okay I see. What are your thoughts on ai
Pretty awesome sauce tbh
Tell me more
Hmm, Roblox assistant really changes the game tbh
Roblox assistance is nothing compared to the other ones
Really?
Cuz I think it's a banger of an AI model
Early demo of our weapons + NPC system! âïž
On our journey to create one of the best dungeon crawler games on Roblox! đĄïž
Join our Discord to show us some support!: https://t.co/pWXWipcUAU
All feedback is appreciated! â€ïž + â»ïž
Collaborator: @TaviiRBX
#Roblox #RobloxDev
if you understand how dictionaries work, you should be able to easily pick up datastores. they're essentially structured the same
đ 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.
đ 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.
you should make sure the raycast isnt nil before using its .Instance
How do I do that
And thanks for the help
Ok where do I put that
well after you call raycast = workspace:Ray
âš```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
ok so it is already is doing that but the problem is calling rayResult.Instance.Color = Color3.fromRGB(255, 53, 39) after you already said it doesnt exist. Did you use Ai for this?
could you send the link to it?
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...
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
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
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
if u want to share variables between scripts use a module script
ok
you mean why there needs to be two scripts?
thanks bro
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
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
ok
bet
ima go to sleep gn everyone
gn
do yall like to
sometimes name your variables or functions the dumbest shi a human can write
started to use formatting
the second format function is for the number
so it will display the number with ,
LF ppl for 10 devs 1 game video
tuff
anyone know of any uncopylocked/open source roblox games that are coded super well in oop that i can take a look at
Why do I get disconnected with error code 01, randomly from a game which I'm the only one playing?
hi chat
Hi
can someone give me an idea on what script should i send to scripter application?
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)
Try not to hire
making a word whitelist 
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
with the way they updated their chat recently i wouldnt count on it being usable
not my script 
that its good
yea yea true its good
why is he lying
you're no fun mr expired discord link in about me
Any scripter dm me pls to make a cashgrab together

WHO IS A SCRIPTER DM ME
I'm scripter
Ok
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.
dms
can someone play my game rq
How much will you pay me
just fixed my first ever memory leak I found in my code
@cedar fossil đ„
Which memory leak
there was a couple ngl, I created tweens every time I ran a function that was controlling doors, and then I had .touched
oh my god bro
are you serious
creating tweens everytime
add a cooldown limiter
he just said he fixed it
bro those mistakes
fr
those mistakes help me become better
did you put a cooldown on that
like a progress cooldown
no I disconnect the registery
bro disconnect?
it was for an elevator queue system for my project
ohh
yeah life cycling
I decide exactly for how long the registery is open
after which it will close, until it opens up again
Itâs 6 or 7 out of 10
im about to update it right now
does anyone here know alot of stuff abt roblox api
2016 source code leak and roblox docs
https://github.com/gabryferry20-stack/HiddenDev-Application/blob/main/Code
right for the scripter application? I mean the link, is it the code link?
it would be smarter to make a blacklist instead
im still new (not 100% sure what you're doing with buffers) but wouldn't it be better to create a dictionary (because it's faster) of whitelisted words and then recursively apply your rules to them?
local whitelisted = {
["abandon"] = true,
["able"] = true,
-- // ...etc
}
yes
Itâs not as foolproof as a whitelist. if I wanted a blacklist I would of used Robloxâs text service
Well the buffer method takes up more then 80% less memory then a table method .even with a bit of speed sacrificed I was able to optimise it to about 20k checks in .2
by checks i mean running the check function witch does smaller checks. The test was also with added suffix and prefix
couldn't you use fuzzy matching instead of adding suffixes/prefixes?
memory might be lesser but it's static. youre probably burning a lot of ops on all of those fastcalls tho
Is this for bypassing roblox's age restriction?
You know you're gonna get cooked for it anyway right
also.. hardcoding all of those vals..?
Not sure if I should use percentage based stuff unless itâs for an auto checker. I may try it in the future but the way I check suf and pref doesnât seem to affect performance too much right now
No thatâs against TOS
I just wrote a C# program to do it on VS
Are you selecting non-curse words?
macro? wdym
Or it's like a specfic category of words you're whitelisting?
The test words I am using do have them but in the future i will find a better list
Tf is this for
Uhuh
Idk I am bored, I canât use it, itâs against TOS
Maybe use as an anchor point, then whitelist some cool words
No way you're typing out the whole dictionary rite, hehe
Thanks for the source, I would just need to sort the letters alphabetically separately
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 
How are u @celest forge
Pretty good thanks wbu
Thats good!
What AI do you guys think is best to make scripts?
None
Now letâs continue in our wonderful conversation
Did u eat something today?
Yes i had my breakfast
Cool
Um
Did u play any good roblox game lately
Yes i played forsaken
I am not good at scripting tbh

Oh
Wdym u can script?
None
Nah dont take it too seriously it took so much time to learn
I had to watch 20 tutorials
This channel isnât your billboard for the second time
This guy is probably a big scammer
Yeah ur right twin
Get this dude out of here
ive already published 2 videos and all the devs were happy??
I ve got proofs if u want
Still
Stop advertising noob
Its not allowed
i'm not advertising i'm looking for devs to participate and in case u didnt read right i'll pay bruh
THATS LITERALLY ADVERTISING
but i didnt even type in my channel name wdymn
UR HIRING DEVELOPERS THATS ADVERTISING
CAN U atleast read the description and #rules
i deleted my message happy?
bruh why do you care so much
u probably had a bad day
Calm down g
Bc itâs against the rules and if others ppl cant hire that doesnt mean u can
fr idk why he's that mad
Itâs against the rules
...
I wouldnât be mad if u wouldnât argue and delete the message from the start and read #rules
do you really think i have the time to read every single rules of a discord server?
If u dont than its your problem when u will get warned muted or banned
plus it takes sm time just to post and people don't even dm
Still not our problem
See
ok then if theres no price ig its not hiring its volunteering?
Still hiring bro
well guess what
Thatâs advertising
Bro just post it on other channrls
Finally
if u get mad just for this idk what would happen to u
Bro just had to get the last word in
Bro is mad
u are dawg
sure thats not u ?
Bro onlt mad person in here is u
bro is getting mad over rules 
what are you the security guard of this server
i dont even know what i'm looking at
Rules are important
yall think I should start coding?
Rules are made for people to follow thrm
Just use binary and use a compiler to turn it into luau
bro you're saying that like i killed someone
yes but zero doesnt work either
well good for you
Have you?
why do you care
Bro just follow the rules a
Uhh press 1 a few times and something might happen
Not following rules is crime
Like in real word
no way imma get arrested
Like in discord
bro i deleted my message you can stop now
Ur geting banned or warned
Thatâs disturbing are you confessing to a murder?
Your theone who is arguing
what is going on
Idk
Bro after u said that u deleted it ti follow the rules next time
do you really think my old dev ahh murdered sm1 
But u didnt stop arguing
nononono you started it tho
Did you?

I started it bc u BREAK the rules and after u deleted the message i said read the rules next time and u keepd on arguing
ok
So please stop arguing and read the #rules next time thanks
Mate the argument is done now you can go home đ„č
Bro i litterally stopped why do you keep going
Please read the message aboove
Yep and we all learned a lesson. @real fulcrum might of murdered someone

Yes
you might've said that about 7 times and you think i still dont understand 
boi i just said ok
U are arguing rn so please stop and READ thr message above
Sorry you have dragged this too long
Oops wrong one
Th
Ok thatâs the right one
đ
damn
What am I looking at
PR 1k lines of code for a http engine
Dam
đ
brother read the message DIRECTLY above yours đ
this is rage bait
but like why no one need coders
just look in #scripter-hiring
I cant type in there
youd want to do #scripter-hirable if you want to post an ad for yourself
#scripter-hiring is where people post job offerings
well im trynna make a game for people for Robux
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
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
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
do people pay upfront?
and then people will message you to hire you
depends on the person, though the post will usually say whether or not they do
it's often a no, though
you might be able to get a percentage of the final amount upfront if you negotiate
too many coders exist for roblox
true that
itâs kinda hard to trust people I was promised once for 60k to make a horror game when I sent the file I got blocked but i got them on the scam logs couple days kater they got banned but itâs kinda hard to see the game I made for them made like 2m visits
Itâs private rn
im building a platform for exactly that rn
you shouldnt really ever send the full final work before getting paid
prove you've made it first, then get atleast partial payment, then send the file
nah
learned it the hard way
but thankfully made a game with a friend in 2023 got 90m visits I didnt get verified
he did though
dayum
cus he did most of the work
but yeah
ima go and find work cus I need the Robux for ada
Ads
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
dang thats nice ti hear
getting the luau scripter role seems to have helped, so i think it's a good idea to go for that
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
a job or create your own software you profit from are the only two ways i can think of making more in terms of coding
I already make games for my self but I donât got the patience cus usually my games donât make over 10m visits
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
I don't think I've broken 10k combined
itâs all abt adds rlly and the thumbnail I did like a joke ad test with a base plate but with good thumbnail and description got 4k btw in 3 days
Ehhh I also don't make games that really appeal to the Roblox market. That's on me
And my art is terrible
Hoping my next game is the big thing
guys how can i run the code there is no run button im new
consider watching a roblox studio tutorial
to learn the basics of it
why doesnt this work the block just dissapeared
is it anchored
im gonna uhh add that anchored thing to false wait
it should be set to true otherwise the brick will fall through the map
thats why it disappears
oh yeah thanks it works now
Nice
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
you could use raycasting?
raycast from the head to the ball
Ray trace the ball, or whatever method you use to detect a hit and check if the player who got hit is jumping if so they hit the ball whilst jumping therefore heading it
i done did that
Should work sufficiently
is it possible to make random strings from a table as a message?
can any 1 play my game and test it
whats the best way to create an 2d side camera system, which in some areas zome closer / or further
it wont work you forgot the local đ
i can
yo can someone help with my ui bug. The button Is supposed to open another frame but it dosent work. Iâm not home so I canât use my pc
dm me if your a good scripter
Just create really good ui's and like climbing/jumping off walls etc
why
Ohio beeswarm simulator
its yet, idk how does it even work
son..?
Any scripter dm me pls
To make a duo and a game together 
Tuff air running
does anyone that has coded a gun in their life know how i could make bullets shoot
do i use a projectile or sum
u use magic
i hate you
Rays
or it depends if you want like a hitscan system or what
i mean like literally make a bullet fly towards a point
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?
ur asking about the visuals or?
nope, but visual could be helpful too
if u dont want a physical projectile then make a hitscan based one with raycasts
ig i'm sticking to this for now, in the future i'm planning to make some custom movement for the bullets though, i don't like to just use the raycast since it's unrealistic
then use velocity or force after creating a part
like
instance.new("part") in the code and then apply velocity or some force to it
again, i dont wanna use assemblylinearvelocity since it's very bad (counting the fact we're using roblox physics)
bodyvleocity or linearvelocity
oh mb
ok bodyvelocity might be good though
i remember it being good
just a vague memory though
then cframe updates or position updates
yeah i have to create my own formula for the movement, only option tbh
I make mine by cloning a part that is the projectile and then use loops (or RunService) to iteratively modify position along mouse direction
i mean if we consider the ass physics then cframe is ur best choice
so ur using cframe to update the bullet every frame?
or what
yea using cframe is probably the most ideal choice considering the ass physics of roblox
that's my plan actually
any investors
rn i have no idea how this works, but as always, i study
u can take a look at mine in my bio, it uses the same logic what u want and i think it works decent
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
yeah i noticed đ
i was searching for it đ
đ
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 đ
yeah stay a good boy
thank you mommy
dorks
Fellow
this is why you aren't progressing your coding journey
i am actually
especially thanks to asmr mommy
so criticize all you want
what can you do @deft pewter
lowk bro MIGHT be spitting facts
depends
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
good boy
yes mommy
but um
i also made a gun for a friend which doesnt have a shooting system yet
wawwww
Do you have any form of proof backing up this statement of yours?
actually i do
physics >>>>>>
nothing sent in creations from you
because i never sent in creations?
i dont show my stuff in this server
đ
define "custom typer"
do you write system with oop?
"A true craftsman never reveals his masterpiece to those unworthy of witnessing its creation."
I am probably way better than him
thats cool
"self taught scripter"
whats the problem with that
mf put that in his bio like you can learn luau in school
everyone is self taught in roblox
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
learning stuff from memory is the lowest level of intelligence
?????????
the code speaks your mind
"learning stuff from memory" wym bro đ how can u learn something if u already memorised it
lowkey it aint that deep fam
You can't say that with anime pfp
wee wee woo woo send it already and be a good boy
and vocaloid tag
whats the problem with an anime pfp? Xddd
kinda cool but whats the logic behind this đ
ur just a hater
everyone started somewhere
at one point in ur life u were worse than this đ
wdym
?
idk it seems a bit confusing đ
what's confusing
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
lowk my brain is just too slow for it
can you show us a creations of yours atleast
pls
I am the creation of human hatred
ok man
ur just a moron
I made a typewriter module with letter animations and automatic new line calculations
thats cool
only if i could be cool like you....
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
thats kinda cool, in this month i made a working anticheat and connect it to my website + multiple authentication methods for the website that the user can choose from
i hope one day i can be as cool as you
so you're just saying what i just said i made
saying you made "a working anticheat" is so vague that I already know you don't know shit
????? check my bio
his anticheat is good wym
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
what does it anti cheat
maybe check his portfolio?
not falling for the obvious keylogger
did you atleast watch this
i made what you said you did
and way before you btw
when did you make it
and how long have you been scripting
it detects aimbot, silent aim, gun related exploits, basic esp detection, fly, bhop, noclip, speed with multiple variations and more that i forgot to mention
there u go
ok now I know you don't know shit
u wont get keylogged
why do you wanna know this now
how come
r we talking about skills or what
as long as i'm better than you in coding i won this argument
do you use oop
braindead thinking
what is your biggest feat
if im right u showed 0 proof of whatever ur saying btw meanwhile both of us showed proof of our claims
I don't have perms to post
what are you guys yappin abt
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?
Why should I care
??????????????????????????????????
maybe because ur judging others when they can back up their claims and ur just typing shi????
moron
"he probably doesnt even code"
"as long as i'm better than you in coding i won this argument"
?
i said that shit
what the other guy said
and what does that prove
atleast I am not a vibe coder
"and ur just typing shi????" both of them are
??? specify who cuz we are 3 arguing
and now 4 cuz u joined for no reason
xz_zein_nx and src1x1x1x1
atleast he can back up his claims
I'll send kirk to your house
@frozen spire you atleast attempted to engage logically all i see are the other two arguing ego flaming
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
what
i'm also logic
you on nothing and mind your own business
you just shit on him and his ego....
- i dont know him, 2. i only got a little annoyed and knew from the start that ur rage baiting with these sentences đ„
I make my chatgpt fear me because of what I say
lowk mine fears u
just stop shitting on him...
I'm the python druggie guy
i only play roblox from time to time when i have free time
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
so what
if u kill the enemy in the first battle then he wont be able to engage a second one
why would you need to shit on him if you're using logic...
you think you can handle my adaptation?
fool
drown in your regrets
because the time will come kornel
Regret is just the weight of lessons I've already learned.
and when it does, i will be standing. will you?
it can be a week, a month, a year, 5 years. Then suddenly you will see me and realize how wrong you were
i dont wait for people to realize they were wrong, im too busy proving myself right
You can't kill me kornel
but i can outlast you
are you challenging me
no, but also not backing down
what is this even about?
how long have you been scripting
roblox or outside of roblox
roblox
couple of years, recently got back to it due to boredom
I have been scripting for 2 weeks and I know the oop framework
thats nice
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
the only thing i love in AI is that they always say ur right
they always reassure you
using AI kills your brain
not really
time is ticking kornel wheter you like it or not
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
i'd rather use my brain instead
there's evidence btw
you need to lock in kornel or you will be defeated by my adaptation skills that exceed every human being in this blue planet
Time ticks for everyone. I'll take my chances.
not once did I encounter a life form that outmatches my power
using ai saves a lot of time and anyone who thinks coding everything from scratch is better is just dumb imo
AI saves time in the short run not the long run
it can save everywhere
if u use it right
his soul is already harvested by sam altman
do not engage with him
Power without opposition just means you haven't found your equal. Maybe that changes, maybe it doesn't.
Robloxia fell because it was already weak. This server's different - or maybe it's not. Either way, I'll be here to see it.
AI is terrible at writing code, produces terrible code
thats not true
or atleast not true with every ai
If engaging with me means my soul's harvested, what's that say about you being here arguing with me
it very much is this is why nobody uses it for commercial software
u would be surprised
I am divergent
I think therefore I am
Being divergent in a world of adaptation means I'm the variable you can't account for.
nobody is like me because everyone is in the matrix
nobody uses ai professionally sorry to tell you
oke bro
Everyone's in the matrix, but you're the only one who adapted perfectly? That's convenient.
therefore you have already lost
but the professionals do use it my man
AI is a tool
therefore is used by everyone
or atleast can be used by everyone
the founder of linux started to use ai to build his systems
If vibing with code puts me in the matrix, what does arguing with an AI about adaptation make you
what company have you worked for which you actively saw people coding using AI?
not entirely AI
supremacy
but that could happen
in theory it could, in practice it would never
Supremacy is just another word people use when they've run out of actual points to make.
1v1 in forsaken
just so you wait
how do u even play that game
adapt or die
unfortunately for you I become good the day I do something
you have no chance
adapting in a world of fools isnt anything challenging
instead of arguing you could spend your time learning more about coding!
just a thought
what do you know
The fool who knows he's a fool is wiser than the genius who thinks he's already won.
we are just having fun bro đ„
in terms of what exactly?
you are a fool therefore you can't process my output
fool spitting foolery
in a world of fools
fools all around me
If my foolery can keep up with your output this long, what does that say about your supremacy
so foolish
I already know everything about luau
ok cool....
Fool
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
Learning process? So you're admitting you're not as supreme as you claimed. You're still learning from a fool. Interesting
And when you keep vibe coding I get stronger
the less brain is used the more I can steal
not learning from you. Fool.
learning from myself
how could you steal from one when hes talking to you by choice
my own algorithm
I don't think
I make others think and give me strings therefore I get free info
fool
so you're admitting you need people to be stupid for your power to work? Sounds like a weakness.
If you don't think, how are you adapting? Adaptation requires processing information. You're contradicting your own premise.
fool
fool
you are too foolery foolish to understand my algorithm
worst ratebait vs people falling for the worse ragebait
ong they saying random shit
we just having fun aint no one rage baiting no one đ
Or maybe your algorithm is too simple to explain, so you hide behind 'you wouldn't understand' instead of proving it.
Like I said others think for me. My soul is powering the energy all around us. It drives people to command me
If people have to be driven to command you, then you're not actually in control. You're just reactive.
no fool
bro might be a moron
im too sleep deprived to understand this
you're just describing being influenced by others, thats not supremacy
my aura makes people command me
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
yet you still fail to my baits in this foolish conversation like a fool trying to act moron in a foolish way
im the mirror showing you that supremacy only matters if theres someone to challenge it
Baiting a fool is easy. Baiting a fool and still being here means either the fool's more interesting than you admit, or you need this more than I do.
I don't need supremacy
supremacy exists for me
supremacy exists for you but needs my engagement to prove itself
thats dependency dressed up as power
you think you control the reality upon us when you are bound to my world
no
I am still the honored one
what do you call someone with professional grammar
i dont control the reality, i refuse to accept yours
plasmaq
then resistance is part of your design, im playing your role in the system
đ” 𩞠đȘ
Who are you
what master do you serve?
i servne no one, i answer to my will, same as what you only claim to be doing
im the anomaly in ur perfect system
once again you prove your foolishness
you are NOTHING
Foolishness is just your word for what you can't control. I'll wear it proudly if it means I stay outside your grip.
being nothing in the world is better than being something in your world
I am nothing. Nothing that bends, nothing that submits, nothing that fears your supremacy. And that nothing will remain nothing - untouched, unchanged, free.
đŸ
good boy
I won this argument
ez ragebait get good
so easy
i used ai to respond to you thinking we are in some epic anime battle
.kornel37 I will remember you as long as today
having some crazy talk
good boy
but still the machine isn't near my level
its above
no
Does anyone have tips for ais that chase you while pathfinding?
i cant understand foolery
how are the buttons getting printed but nothing gets printed when i click them? this shi weird ash
there is no way this skid uses comment sections for 10 lines
brudda
these comments are diabolical
âââââ 18 â ââ ââââââ ââ°ââââââ â â⏠âââââ âââ°â.../-_/-
youre acting like the script is done
holy restarted
Is this a challenge?
yes a challenge for you too sit down like a good boy and be quiet
professional professionals dont use comments
1v1 in forsaken kid
đ
sooo does anyone know how tf this shit somehow doesnt work?
ÎŒÎÏΊΠâąâ Î ÏÎÎÎ ÎșÎÎΠΊÎÎÏÎÎ ÎșÎÏÎș
ΜÎÎČÎŁ ΊΩâÎŁÏ
use MouseButtonClick
not that
or no
it was hol up
oh wait yea that correct
@abstract flareuse .Activated
i tried it already shit doesnt work somehow
is this all the code
ARE YOU STILL AT THIS
can anyone help me with my boxing game im having trouble with the npcs
JUST KISSS ALREADDY
fool
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
can anyone help me understand what's wrong with my script? đ
yes
yielding 0.25 seconds where
I dmed you
that was the only approach that worked
even after converting these custom seats into actual Engine SeatParts
this same issue occurs
no no like when you tested it where did you put it
before PivotTo?
so instead of waiting for the animation you yielded 0.25 seconds
What animation
PreAnimation
this doesnt answer my question
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đ
code help and code discussion done got swapped
uh, tbh wierd
add this line at the top of saveCharacter()
âš```lua
print(character.Archivable)
tell me if prints false or true
omfg u just saved me, i totally forgot about archivable
tysmđ
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
just wait like a month for roblox's server auth to go out of beta
unless you're making floating origin phyiscs
what's that?
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
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
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
Anyone wanna duo?
would it be better to make the player's physics run on the client, or just use client prediction?
have you solved
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?
really depends on the popularity off your game and if you actually want things to be done professionally
Hey guys
What's the fastest way to learn how to script knowing already C, Python and Javascript?
what happens when your game doesnt use module scripts
It Explodes
you die
I hope youâ while true do âyou game
Anyone in here like to script I need someone to teach me
LF long term animator
$550 USD
Depending on how well you actually want it done, and the timeframe, as well as what exactly you want for each of those things, the 550 USD prolly isnât far off. Could probably get it done for around 100-200, but higher chance of getting ghosted, shoddy work, poor support if smth doesnât end up working the way you wanted or you find a bug that was missed, etc
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
who wanna test my game when it realses also picking admins in it
animation i think
how do i anim tools
rigging
weld one part then tween that part
that should work
well weld one part to the other parts
guys i had a sofa with a script in it and it has a line with require() in a weld was this a virus???#
ECS changed my life
It was most likely malicious in nature, yes
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? 
Just script and learn
Not not?
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
Why don't you use a single dictionary called âšSignalCacheâ© that contains keys relating for those instances
You could disable the M1 InputAction when the user is hovering over UI
but would have to setup a whole lot of connections for many ui
and then there's roblox core gui
PlayerGUI has a âš:GetGuiObjectsAtPosition(x, y)â© method
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
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
Then you should use the method I showed above
for somereason i don't rememeber having this problem with UIS
wouldnt this mean I'd have to return âšAnyâ© for type strictness?
what do the cache structures look like
what resource do you guys use to learn how to script
I use chatgpt 2.0

I do like to script, but I also like money! You have any?
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
this is not working
try --!optimize math.huge at the top
you forgot script:Start()
its not working cause you forgot the jiggle physics
