#code-discussion
1 messages · Page 291 of 1
aahh i see now why it wasnt working
my hrp part of the code isnt inside the renderstepped
thankx
what's the best or optimal approach to creating a flight system though?
something scalable
I'm not sure, we'll need to ask someone else
but I'm going to sleep soon anyways so... goodnight
you can try using mover constraints like linear velocity, angular velocity
thanks ill consider that
osu in the big 26
Anyone good with account hacking because i want to develop a third party method that will secure my account even more (discord, Snapchat, TikTok, X)
wouldnt you want someone good in cybersecurity instead..?
Well the readability improved, logic approach mostly stayed the same
Its just easier to debug/improve now
yee
dms
hi guys
Game?
is anyone here on PC or Laptop?
local npc = script.Parent
local humanoid = npc:FindFirstChildOfClass("Humanoid")
local pathFindingService = game:GetService("PathfindingService")
local path = pathFindingService:CreatePath({
AgentCanJump = true,
AgentCanClimb = true,
AgentRadius = 2,
AgentHeight = 5,
AgentCanSwim = true,
AgentMaxSlope = 45,
AgentMaxJumpHeight = 50,
AgentJump = true,
Costs = {
Water = 100,
Neon = 100,
}
})
local goalpart = workspace:WaitForChild("goalpart")
local suc, err = pcall(function()
path:ComputeAsync(npc.PrimaryPart.Position,goalpart.Position)
end)
if suc and path.Status == Enum.PathStatus.Success then
local waypoints = path:GetWaypoints()
for _, waypoint in waypoints do
local part = Instance.new("Part")
part.Size = Vector3.new(1,1,1)
part.Position = waypoint.Position
part.Anchored = true
part.CanCollide = false
part.BrickColor = BrickColor.new("Really White")
part.Material = Enum.Material.Neon
part.Parent = workspace
part.Shape = Enum.PartType.Ball
part.Position = waypoint.Position
humanoid:MoveTo(waypoint.Position)
if waypoint.Action == Enum.PathWaypointAction.Jump then
humanoid.Jump = true
end
humanoid.MoveToFinished:Wait()
end
else
warn(err)
end
my character not gonna jump the neon part and it would just go through it
🧠
yeah
dm me
You can use pathfinding modifier if it helps ig
hello everyone. I'm new to scripting, can anyone help me where to start?
@solemn gale
- If you prefer to read, check the Roblox Documentation.
- If you prefer to watch, we recommend Hiatus.
- If you prefer to experiment, check Roblox DevForum or the Toolbox for pre-existing scripts.
Be sure to ask for code reviews when learning from old methods.
It is always better to practice the content you have learnt, to ensure you remember everything.
also brawldev:
https://www.youtube.com/playlist?list=PLQ1Qd31Hmi3W_CGDzYOp7enyHlOuO3MtC
https://www.youtube.com/playlist?list=PLQ1Qd31Hmi3WKkVHnadvhOOjz04AuMYAf
In this 2025 Guide to Roblox Scripting for Beginners, I will go through everything you need to know to start scripting/game development on Roblox!My mission ...
sometimes u gotta improvise
guys is releasing 2 games at the same time smart or nah?
local npc = script.Parent
local humanoid = npc:WaitForChild("Humanoid")
local RunService = game:GetService("RunService")
local debris = game:GetService("Debris")
local Players = game:GetService("Players")
local pathFindingService = game:GetService("PathfindingService")
local PATH = nil
local waypoints = nil
local Range = 50
local function createPath (target)
local path = pathFindingService:CreatePath()
local targetHrp = target:FindFirstChild("HumanoidRootPart")
local suc, err = pcall(function()
path:ComputeAsync(npc.HumanoidRootPart.Position, targetHrp.Position)
end)
if not suc or path.Status == Enum.PathStatus.NoPath then
return nil
end
return path
end
local function FindNearestPlayer()
local magnitude = {}
local target = nil
for _, player in pairs(Players:GetPlayers()) do
local dist = player:DistanceFromCharacter(npc.HumanoidRootPart.Position)
if dist<= Range then
table.insert(magnitude,{dist,player})
end
end
table.sort(magnitude, function(a,b)
return a[1] < b[1]
end)
if #magnitude > 0 then
target = magnitude[1][2]
end
print("TARGET:" ,target)
return target
end
while true do
local target = FindNearestPlayer()
if target then
repeat task.wait() until target.Character or target.CharacterAdded:Wait()
PATH = createPath(target)
if PATH then
waypoints = PATH:GetWaypoints()
for _, waypoint in waypoints do
local part = Instance.new("Part")
part.Parent = workspace
part.Material = Enum.Material.Neon
part.Size = Vector3.new(1,1,1)
part.Position = waypoint.Position
part.Anchored = true
part.CanCollide = false
part.BrickColor = BrickColor.new("Really White")
part.Transparency = 0.5
part.Shape = Enum.PartType.Ball
debris:AddItem(part,2)
humanoid:MoveTo(waypoint.Position)
humanoid.MovetoFinished:Wait()
end
end
else
humanoid:MoveTo(npc.HumanoidRootPart.Position)
PATH = nil
waypoints = nil
end
RunService.Heartbeat:Wait()
end
whats wrong with my scripting ,it detected the target of me but it not working
in the findnearestplayer u are returning a player object u need a position therefore a character
what if you have a string that's "%DEF%"
but seperate default
also is there any point in typing it if everything is just any
i ruh rho
anyone needs help?
Guys what will I use if statements fore
local something = true
if something == true then
print("hi")
else
print("False")
end
Okok ty
what could possibly be that for tho
you don't have to compare the boolean if it's true
ye just like an example because for if statements youll use double = most of the time
yeah... for comparing... you do realize what i'm talking about, right?
I already stated it was true so i dont need to compare it but in most examples you will need to like checking for character
it has no embed when i send it through favorites
im looking for different opinions on that
what should i add and studf
if you dont like it just ignore
no you aren't
oh you know better then my
me then what am i thinking rn
?


lune in the big 2026
im dying rn
what is it
Bruv 100th time or smth
nah
real men go into the rbxl files and change the bytes
if you can push out updates for both of them frequently then yeah but i wouldn't recommend it
wdym
i dont use it for the roblox library
why not
If your power is raycast then what are you without it
what the fuck do you use it for then
If your power is using libraries then what are you without it?????
its other libraries
If your power is gay
if your power is yapping random stuff with no correlation then what are you without it
if your power is being gay the nwhat aer you wwithout it
straight
Can anyone script UI for me just so it works?
what are the other options, scripting it so it doesnt work?
anybody have football models?
does anybody here know what funcaptcha is / worked w/ it
Hi
I did and i do know
Yo guys, where can i learn scripting?
is there market for a bypass for it ???
think i developed something that just straight up removes funcaptcha ability to monitor robotic behavior
in your home
breh
whats the search method to find all parts with the attribute Destroy?
guys is it a good to thing to specialize in a genre as a game producer like mostly tycoons/simulators?
if its not in filters cant you just run studio code
who does front end stuff here
probably everyone that can script since its like the easiest part
and does ui too?
ye
sick
are u supposed to remember all the events off by heart or sm
yes
if you don't know an event or smth you can just google what you're trying to do and 99% of the time you'll find what you're looking for
nah i run the game until it works
yo guys does anyone know what i can do cuz my math.random is not using my numbers prob bc they are decimal numbers. What can i do to still use them?
use
local number = Random.new():NextNumber(--[[number]], --[[number]])
u mind telling me what it does im tryna understand everything i use
local scale=100
local min,max=10.5,100.5
math.random(min * scale, max * scale) / scale
if you need more precision use scale 1000
it picks a random number of the range provided in the arguments
i see
what if you use pi? what would scale be 😂
wym
ragebait
like if i get 1.039 it pickts 1 and if i have 1.92 i get 2
ragebaiter
a game that has a 50% chance of deleting it self
we both know thats not possible
math.round() i believe
idk i said smth that came to my mind
alr ty
np
goat < 3
could someone give me some scripting challenges but like medium difficulty
excluding inventory system
nuclear reactor
somewhere
a fully deterministic physics engine that allows bhop
that was very helpful
excluding easiest thing ever and people act like its hard?
i literally wrote medium difficulty 😭
no like i don't really understand it
an own pathfinding system
huh
@fickle depot make
yea zaddy uh could you teach me
discord on roblox
do i have to pay you
so where is the medium difficulty in that
but theres a price... 🥵
thats medium difficulty
yeah hell no
nah ill help
it might be for you 😭
no prices :)
yea it works with me
bro js wants easy shit
dms?
no but like ive never learned that
. wrong emoji
dm me if you need help w/ javascript or html-css
yo what tweenstyle is fast to slow, so my object first moves fast and then rapetly slows down?
idk them all by heart
nvm found it
any1 good at balancin stuff like brainrot etc idk
viewmodel gun system
dm me if you need help w/ javascript or html-css
wym?
depends on ur purpose
In general
if you’re doing frame specific things yes if you’re making a brainrot game which you probably are then use tweens
I'm not making games
i dont like tweens personally but thats just me
neither is better "in general", both are used in different scenarios
What you use
never in my life have i touched tween service
maths
Like quadbezier
and you use a for loop ?
so youre telling me that when you were learning luau, you decided to skip tweens and just learn lerps instead?
i didn’t learn lua like any of you did
i learned lua from exploiting
Yes but im making an animation
ah
well what sort of animation
tuff, #animation
no need to over compliment it lol just use tween service
Yeah I know, but trying to learn something new
once you grow and become a man you’ll eventually stumble across a good spring module and never use anything else
for ui^
spring module fans vs ill just make it myself enjoyers
Guys, do you save to datastores every 60-120 seconds? or do you only save on leave and join?
no
so you just don't save data lol
ye
those animations move in a springy way generally
Hmmm ok
I made one with lerp
Spring is basically the best thing
thats what they use for pets
i have a random number generator 1-10 every 30 seconds and if the generator lands on 1 they get a save if not tough luck
Bro aint no way i just saw a guy on reddit saying he was confidently better than 95% of devs on roblox under a year of scripting
LOL
Hmmmmmmm
Save on leave
But saving each minute or two isnt a bad idea two
have you put in a timer that stops players from rejoining to fast so they dont join before data saved?
if same sever
*server
no i ahve not
data saving is pretty fast usually
but i havent made a ton of games so maybe thats better practice
cause i found that if i keep a server up with one account, and i just spam rejoin it with another account, eventually they just have no data 💀
then i gotta roll it back
havent run into that issue before
yeah idk tbh
do you have a guard that makes sure a players data is loaded when they join the game
for me if a players data doesnt load right i just kick them
yeah i think the guard that stops them from joining too fast actually stops their data from being deleted now
hopefully problem is solved
whats the best way to start progressing w code on ur own/ without things like alvin blox
I fee like im intermediate rn and want to become autonomous
@civic portal how much rbx you made so far?
Like 5k in 2 days
with 30 ccu
generally not a reliable measurement as its too low CCU
i nit team
Make stuff that you dont know how to do and learn from it
at the start, repetition is key, but once you feel like you can comfortably make common things, start challenging yourself
make things you've never made before to learn how to do it
you dont.
never code again you little rat
@claude humble this goblin
Anyone who beats ts first gets a LARGE 10 robux (i know i know but pls i need some testing dont expect it to be good) send picture with proof u beat it though too if u did) https://www.roblox.com/share?code=_5w2ig6hpb47v9bblnmoj8xc1piqpyrfeueeajrsj0r5exqgwu3&type=ExperienceInvite
Is a big grene button
theres a big green button
U have to press
Also control to sprint
I did it without sprint 💀
didnt even know u could sprint
wanna see the clip? its pretty epic
wildpilots
Bett
Seems like the system for winning does not work
did it tp u ir make a sound at all
no
Fuck
im still here
Welp its broken
idk if it made a sound im not wearing headphones
i gotta fix it but ty
Its supposed to

does it work now
yo i dont even have a 10 robux gamepass lmao 1 sec
ok i did it
yo
wildpilotz
Lemme send u the monneeey
but can u beat the obby again pls
Lemme release the fix
ok
it doesn’t?
naw
wait what
so now im just chilling here and the borders not here
In testing it was showing
oml
i cant hop back on my pc again
Ill do it tmr
u can farm wins if u want
They save
ok
./j
🥀
Yo brainrot scripters dm me rq
ts is tragic
bro u can skip half the obby
ok bud
My skills are scripting scripting and more scripting
ill give u uhh
5 wins tmr
for free
compensation
trust(not like your care ngl)
ah yes lets steal other peoples work for our own profit
dont hate the player hate the game
script that will allow the proximity prompt to show a model in server storage and it will only show the model when you hold a tool and use the proximity prompt im rlly stcuk
pls help
im stuck lol
Ok
will u help me
igh
Any scripter wanna Collab
I wanna make a knockout type game
no
cuz I can't ensure that you won't just abandon me after
and I've only been scripting for 1 day
Makes sense
Duh
Guys I'm begginer scripter what do I do for practice?
Whatever you want to make depends on what you mean by beginner
@hardy pier @remote phoenix i can help.
but what if he doesn't pay us
Why would I scam someone who makes the game
How can we have a deal
Like how can I prove
idk why do killers kill
“Why would I scam someone who makes the game” clearly you’re not thinking in the mindset
to be fair, I did actually team up with someone (for a minecraft project) that I hadn't known and we ended up making peak
Oh my god
Oh my fucking god i finally made it
I finally fucking made it
After 5 hours i finally finished this fucking coding questions
Oh my fucking god im going to die
AAAAAAAA OH MY GOD
show us some funds
Im never doing this shit ever again
what were you doing lol
?
Why would u ask that bro
because i'm curious
why haven't i been using signals
i feel like i was living blind but i just opened my eyes
doing coding challenges in codewars
it's just medium level questions and im suffering
algorithms can't be this scary
ah i see
what are you using signals for
I think I’m finally getting good at luau—it’s taken me so long to figure out how to code things but I’m finally doing things without having to watch tutorials (I still use forums to help me understand new concepts) and I’m so proud of myself 😄
kahn's algorithm
oh my god how are people supposed to know these things and terms exist
Need any help with scripting?
https://project-68z8k.vercel.app/
The only AI coding tool built exclusively for Roblox and Unity developers. Generate flawless Luau and C# code, detailed maps, and pixel-perfect UIs.
no ads pls
best way to make a low gravity effect for a character? i want them to still be able to move horizontally normally but the force of gravity affecting their Y-Velocity must be decreased. the problem is that im not sure whats the best type of force to use (assembly velocity, linear velocity, etc)
damn even the website is made with claude
thank you for the help but i want the gravity to be localized to a single entity (character or object) and not globally
think like in smash bros when you launch an enemy in the air and it feels like they float down
try vectorforce
ok thanks
Why it does not change PlatformStand to true while you are jumping and moving?
PlatformStand puts the humanoid in a motionless state
I mean that when I am moving and jumping and then changing it to true and actually checking it in Humanoid and it show that my PlatformStand is equals false
i’ll heal her
it gets set to false whenever you jump use humanoid states to disable jumping
Still not working, I have dissabled every state and Physic
(or if you’re a lazy POS just set jump power to 0)
how did you disable them exactly?
hum:ChangeState(Enum.HumanoidStateType.Physics)
hum:SetStateEnabled(Enum.HumanoidStateType.Running, false)
hum:SetStateEnabled(Enum.HumanoidStateType.Jumping, false)
hum:SetStateEnabled(Enum.HumanoidStateType.FallingDown, false)
Does anyone know how roblox pathfinding calculates the intercept on the path of a moving object to walk towards?
because it doesn't do pure pursuit . im using quadratics to find the intercept but it looks janky not smooth like roblox pathfinding
looks right to me
A-Star Method
btw if this is running before the roblox character controller runs it might not work not 100% sure tho
does anyone use a dispatcher here?
use A* algorithm
dispatcher?
disregard that question, I realized something that answered my question
nonono tell me what's a dispatcher
and what's that something
its basically requiring a module to do a particular task
It's a shallow topic, i suggest you do research on that. I can't explain for my life lmao
i realized other devs do usually use dispatchers but only when necessary ofc
anybody interested in chatgpt account generator
İs gemini ai good for coding?
if you connect it to your studio through MCP, yes
its ok (3.1). opus and 5.3 codex / 5.4 better tho
im looking for someone to buy my account gen for chatgpt, u wanna try it? it makes infinite codex accounts and stuff
u enter callback login link - openclaw or codex and it automatically fulfills login link within 1-2 minutes
nop, at least not anytime soon xd
aight
codex 5.4 ios better than opus?
openai u can rn do free business acc with ~5 free slots or so for a whole month
id say they are equal
personally opus feels the nicest to work with, codex 5.4 has rly good power though
lowkey might use it i got so many errors rn😭
as long as they have the proper scope of ur codebase + u optimally have some documentation for whats done, how and why, then u should breeze through
but i mean it always depends on what exactly u work on and how good ur own exp is
yea
how do i handle stun, i have no idea how to actually write code to update a timer before setting walkspeed to normal n state back to idle
by.. doing all of those things?
like you've broken the problem down into the smallest possible bits
what kind of errors?
enum bs?
it comes with time
first thing to think about is: what variables or properties do I need to mutate? what data structure if any should I use (you need to keep track of player cooldown timers somehow)
anyone here interested in botfarm / captcha solving technology
yo guys how do i learn scripting
look it up on yt
Guys if I purchased robux before 3 years will it count so I can publish games
Yes how do I become a sexy chud hacker like u
U willing to pay for tool
I couldn’t find any buyers so I’m prob gonna bug report it
I expect it to be around 500-1000 USD for bug report
I mean it can aid u in helping u make money ig
Who you calling a larper
I use it because I used it to use Gemini originally now I don’t use it
It’s still my primary IDE
Because windows is a more optimal development platform
It has the biggest market for game cheats which I happen to make
Along with malware development and other such things
Yeaa your larp isn’t completed if it’s not in riced arch
Linux is good for SaaS but not everything
that's a bold statement
Plus I have already built a lot of tooling that can only run on Windows
For example I have a lot of stuff on DX and I wouldn’t want to rewrite a lot of UI stuff to use vulkan
You can’t exploit serversided stuff in Roblox
Ur literally sped or sum
ur so funny
awful ragebait ngl
Centi can u hack 3 mil robux into my account
I’d be fine with 1 mil too by the way
Bro I didn’t do hacking are yall genuinely special ed or what
The names centi hack bro
I just said I do malware development, external game cheat development, and browser automation
Real hacker could adopt me
Why don’t you take me under your wing and I’ll be junior.hack
pleas dont hack me 😭😭😭😭😭😱😱😱😱
Don’t worry he’s a hacker that only hacks other hackers
Like robinhood
what
Giving 1 mil robux to the poor
nvm i get it
(Me)
*+ like the entire roblox community except those who, well, have robux
True
show me some of the projects u legit did lmao
cant be trying to be sarcastic when u cant prove u have done shit
Can you train me
Pls pls
I will make hundreds of Roblox bots that all farm tix and send it to my main
tix?
Make funcaptcha bypass, funnily enough the thing I made aids in getting less captchas since iPhones are considered lower risk for arkose labs and clouds are captchas
Usually u can do that by looking into their source code if I ain’t wrong the one responsible for reporting information is sentry.js it reports your GPU (consumer gpus rank lower risk)
ur IP, mouse movements, and typing speed is also sent
i think thats about it though it's fairly simple
as long as u have residental IP (proxy or ur home), realistic mouse movements (bezier curves), over 400ms per character for typing, consumer GPU (spoofed or ur actual gpu if consumer),
and your browser header
u also want to avoid having webdrivers exposed
in my case i managed to bypass chatgpt's cloudflare captcha and phone OTP by emulating IOS Safari
@marble compass ironically u like to sarcastically shit talk when ur struggling with rudimentary luau
and defining game as a variable for whatever reason
What languages should I be learning
I haven’t really broken through any other
Although I’ve gotten quite good at luau this past month
realistically i'd say learn C++
is it hard?
yes most definetly
67++ and BRC and slip in python
but if u learn C++ u basically learn all language concepts
once u learn language concepts learning languages is effortless because they are practically all the same
a language to work must have:
some form of include/require/has
methods
variables/constants
tables
operators
for or while loops
etc
like obv assembly doesnt have tables but
generally all modern languages that arent like assembly or SQL or HTML end up having same exact concepts just named differently and in different format
int add(int a, int b){
return a+b
}
void main(){
cout << a+b << endl;
}
function add(a, b)
return a+b
end
function main(){
print(a+b)
end
as u see same concepts just different format
c++ vs lua btw
I'm not high enough level
yea i see thank you bro
i find what you do very cool
no glaze
haskell & prolog:
recursion can replace any loop
truth to this
just remembering more naming
remember to take English lit to better name your variables
a real king makes their comments more indecipherable than the code it describes
loop is better than recursion in many cases
anyone needs help>?
not my point?
someone was advertising a way to steal games
Guys give me good game ideas that have potential (I have 4 months to develop a game then I need to publish)
dm
sell feet to reddit mods simulator
or even better
headpats from discord mod
No actually games with actual potential
my friend's code is so bad it broke the health limit
steal a feet pic
Bruh
We heard you the first time
“To whomever it may pertain to, the aforementioned container shan’t be altered” ahh ☠️☠️☠️☠️
Is Coding commisions good?
No
Hi, I was wondering why I can't see AllowedExternalLinksRefrences nowhere?
Did you experience it
like working for someone?
No
tfym then
Yeah, having your own portofio, taking commisions
Eliminating future competition
do you like it big or small
what
Ok bro explain from beginning
^
so if i come in here when i come next time but in 20 years ago tomorrow if someoen else goes there to come from here to go here and come there what's gonna happen the next time they go here to come there
You understand me clearly right
can you explain it again
i need an actual earning developer to get more info
If you want to code for money just make a game
if you wanna do commissions then go do commissions
in unity unreal engine you mean or roblox studio
Ur bald bro
Both can make you good money
What
Idk
Yo anyone have game idea to share
Luck and much more things are needed for these like 100$ to upload to steam not knowing if it will get popular or another choice itch io, free to upload also even if you advertise it all you want it could fail and just fuck up
Same with roblox studio
Lolipop I can tell u the game idea if I have 60% of it's income
Commisions is the best choice ngl
burger king pays better than commissions
Fr
have you tried talking to them
This one's for fun
Burger king pays no shit
Work for restaurants
or something instead
He means get a job 🥀
just gotta get a good idea
oh
I got one
and execute it well
Give me the game idea
Share it
how tf i get this invite ui to show up
i have a good idea
Ok give me
i get this shit one
Theres a game called steal a character, and theres a big trend right now called brain rot, not sure if you've heard of it. I was thinking you could combine these too, and make a game called steal a brainrot or something
what is bro playing
Fr
So recreate steal a brainrot 🥀
no my ideas original
Why play brainrot
?
Rami
You
he dodged my court filings
Dayum
Stud style plus lucky block
anyone uh want me to do a comission for free (im a scripter) get a grasp of what i can do with my portfolio in my bio then ask me to do a commission in dms (i want sum for my portfolio & experience)
no thanks buddy
Do a gun I'll make animation
@eager fable see theres no money in commissions
Hahahaha
theres a bunch of guys like these who are doing it for FREE
Why tho 😭
i just said check out the portfolio to see what i can and cant do🧐
that are awful
yeah
Ok send portfolio
Einstein
Bald men everywhere
just hook them up to chatgpt and they'll make something decent eventually
Oh shi
Its in his bio
U cant read can u
Shit
ok i dont use gpt
everything in your portfolio can be made with ai just sayin
Bet
Make a punch that ragdolls ill do animations
When your new yeah
youre bald then
You don't need bro
The only reason people do it free is lack of skill or experience. Its easy to get picked over them because you brand yourself by quality + consistency, price isnt the only factor in choosing between scripters.
guilty until proven innocent
Make punch that ragdolls
do NOT listen to this guy, there is no hope in this commissions market. millions of devs are willing to script front page games for free now, switch to fast food while you can
this is ragebait
Bro what is ragebait
You can't do ragdoll?
You use models don't you?
Holy false
wheres your source pal
Fr
So Some kid points at u and says "that's me if I don't lock in the next years"
Yoooo
What if he points at you
I havent tried to u js havent check the portfolio
Bro learn you wanna learn scripting then do things you can't rn by learning
ok
Why do skeletons don't fight each other
why
🤣
That youre a ragebaiter
What's the difference between a Ferrari and children
how am i rage baiting
What
i have a source and you dont
Ping mods
😂😂😹😹
Jk
Want another?
No
What is your source millions of people are willing to script front page games for free 💀
😂😹😂😹😹😂
What source
^^^
nvm this is too corny
That's 1/100000
This guy @split gazelle
ok but its 1 more than porgs
???
you arent worth talking to
Just put the fries in the bag bro
@split gazelle you do commsion for free right?
tahts what im saying
Hotel
so youre tryna get people to join you
im trying to fastfood pill you
I'm busy gng
once the roblox bubble bursts fast food is next
yes
Look
Droppshipping 🥀🥀
Palestine
🤮
Anyone up for a small task composetion ?
I just picked it random letters
a what
I am
Im not gonna do it for free for ever rn is for practice
Sadly im too qualified to be working with you
thats cap
im a shift manager
Why did u get hyped
compensation
whats the task
Adding another team in the teamscript
Bro I want it not server724
So code another line
Ur the fast food plumber boi 🥀
am I meant to be impressed lmao
ill do it for free just to stick it porgs
now i have 2 sources
No ill do it
We didn't say anything bad gng
Nah i dont let anyone work for free
Maybe my jokes only
Who thinks a shift manager for a fast food chain needs a lot of qualifications lmao
god damn bro whats your fast food position
atleast take some robux
I'll take let me do
I'm gonna fast food up ur ahh
as I said, im too qualified to be working for mc donalds 💀
porgs crying tears of rage are worth more than any amount of robux
Bro why everyone ignore me
U like fast food to much
I'm sad
Ur bald and obese
you like bald men too much
...
Youre comparing things to value in robux 🥀
And u like fast food way too much
how much robux is a big mac worth
Probably volunteering for mc donalds
are you american
Im gonna hope no one starts bringing politics into this
I'm ready if they do
😉
😈
bro it says your animator
no wonder you dont haave big mac in palestine
are you animating scripts
Ik how to script too
It's shit anyway I don't eat that crap
define luastate
when do you use boolean?
no define luastate
you define it
Make a ragdoll
we all know what lua state means, we want to make sure you know too so youre not fishing for an answer
its my slave i ask the questions
if you know then define it
no you define it
youre trying to get the answer from us
true or false
who is we I got no clue
Yooo
why did it take long you just searching
everyone but encryptedlarper apparently
yes cuz i know htat you guys dont know t and say wew know scripting

I was drinking water for healthy mind
no, we all know what luastate means, youre just trying to cheat by asking us to answer for you
you dont make any sens you knoww that right
you guyhs are just skids
not all of you
lol
Make me a minimap rq
i asked the question by the way
youre name should be scripterlarper since you dont know what lua state means
Make me a minigun that download maleare if you die by it rn
listen to the boss man we gotta go learn luastate
Bet
It gonna download 100 desktop ants
Fr @edgy quarry
That move
sayis the one whos saying i know wscripting aswell and cant define luastate
he can
You wanna learn from us
then define it
You define if you know
I know the avatarstate
we already know it lol
See you don't know
you dont thats why youre asking
You too
Yeah
You cant code
proove it
@nova shore he doesnt even know what a luastate is
You prove it
the only person who would ask whats a luastate is someone who doesnt know already
Idc about your lua shit mate
Ban this kid
its like asking how to breathe
Ban larper
everyone knows
require'luajit_h'
local ffi = require'ffi'
local C = ffi.C
local M = {C = C}
local cast = ffi.cast
Agree
I don’t
yes you do
You larper alt?
No I don’t
damn you caught him quick
larper brought in his alt to fish for answers too 🤣
Easy to catch when someone doesn't know something as simple as walking
Dude has a Mr. Robot profile picture calling people skids
yeah fr
whats wrong with mr robot
notice how when larper talks tony stops talking
Lol
Anyways @edgy quarry @formal jay ur both skids
you aint getting the answer to luastate either
you aswell gang ❤️
Bro tryna sacrifice one acc for the otjer
Smart move bro
cuz you cant answer exactly
dudes flashcards revolve around lua im dead
ban em both
How about u answer
best show oat
If u know kid
^^^
i did?
no you didnt
server724 is insecure because he can’t code
not my fault if you are blind gang go get checked out
U didn't
what have you achieved in life so far
encrypted stop talking through your alt
Both of you, complete skids
we know tony is you
You questioned us know we question you
All you do is write stuff on Roblox hahahah
Or you just larp all day?
Ur bald bro 🥀
You’re slow
🤯
no tony is right
I know I am
He'll make another acc in a few mins lol
Deceiving hairline 90%
you are
yeah
🚨⚠️
We can talk when you do something productive
Bro playing checkers while we master chess
Larper and Tony just kiss already and leave us u baldies
“Whats a luastate”
yeah but we know luastate
bro
U haven’t accomplished anything in life
probably doesnt know how to play checkers either
just say it then its not that hard like i asked a question yeah answer ir gang
You never made anything impressive either
projecting final boss 
dont give a fuh like if you know whats luastate or not
you answer it first
Says the obese McDonalds worker