#code-discussion

1 messages · Page 291 of 1

remote phoenix
#

it should work flawlessly if you're truly updating it every frame before the frame finishes rendering

primal escarp
#

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

remote phoenix
#

I'm not sure, we'll need to ask someone else

#

but I'm going to sleep soon anyways so... goodnight

livid maple
primal escarp
snow veldt
#

osu in the big 26

granite zenith
#

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)

regal salmon
#

wouldnt you want someone good in cybersecurity instead..?

exotic phoenix
#

Well the readability improved, logic approach mostly stayed the same

#

Its just easier to debug/improve now

light fable
fringe chasm
#

dms

hard garden
#

hi guys

cyan bobcat
main crater
#

is anyone here on PC or Laptop?

hollow thicket
#
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

#

🧠

regal salmon
light fable
heavy stone
solemn gale
#

hello everyone. I'm new to scripting, can anyone help me where to start?

fervent belfryBOT
#

@solemn gale

Tag » scripting tutorials

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.

regal salmon
#
plush forge
#

sometimes u gotta improvise

hallow dawn
#

guys is releasing 2 games at the same time smart or nah?

hollow thicket
#
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

odd bluff
#

hey guys

#

u might see some anime armpits

#

sorry about that

neat escarp
spice cypress
#

but seperate default

#

also is there any point in typing it if everything is just any

#

i ruh rho

edgy quarry
#

anyone needs help?

plain sun
#

Guys what will I use if statements fore

candid fox
plush forge
versed arch
candid fox
versed arch
candid fox
plush forge
plush forge
#

so far i ported it from kotlin to rust to luau

hearty lion
#

167th time you sent this video

light fable
#

loss count after 1

light fable
#

what should i add and studf

#

if you dont like it just ignore

hearty lion
light fable
#

me then what am i thinking rn

#

?

hearty lion
#

stop advertising, seriously

light fable
light fable
broken plover
light fable
#

im dying rn

hearty lion
willow maple
plush forge
#

whats wrong with it

hearty lion
broken plover
fickle depot
plush forge
#

i dont use it for the roblox library

plush forge
hearty lion
#

lune is cool

edgy quarry
#

If your power is raycast then what are you without it

broken plover
#

what the fuck do you use it for then

edgy quarry
#

If your power is using libraries then what are you without it?????

plush forge
edgy quarry
#

If your power is gay

spark stone
edgy quarry
#

if your power is being gay the nwhat aer you wwithout it

edgy quarry
#

yes

#

correct

void pelican
#

Can anyone script UI for me just so it works?

weak radish
tall tartan
#

anybody have football models?

left ginkgo
#

does anybody here know what funcaptcha is / worked w/ it

edgy quarry
#

I did and i do know

sacred slate
#

Yo guys, where can i learn scripting?

left ginkgo
#

think i developed something that just straight up removes funcaptcha ability to monitor robotic behavior

fleet nebula
sacred slate
#

breh

rain hound
#

whats the search method to find all parts with the attribute Destroy?

hallow dawn
#

guys is it a good to thing to specialize in a genre as a game producer like mostly tycoons/simulators?

weak radish
edgy quarry
#

blade ball pro server sucks

#

they all use the new ability

outer widget
#

who does front end stuff here

edgy quarry
#

me

#

i do both

weak radish
outer widget
#

and does ui too?

edgy quarry
#

ye

outer widget
#

sick

plain sun
#

are u supposed to remember all the events off by heart or sm

edgy quarry
#

yes

full valve
broken plover
near sonnet
#

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?

civic current
near sonnet
#

u mind telling me what it does im tryna understand everything i use

broken plover
civic current
#

Random.new() is self explainable

#

:NextNumber() is a method

broken plover
#

if you need more precision use scale 1000

civic current
#

it picks a random number of the range provided in the arguments

near sonnet
civic current
near sonnet
#

is there a thing to pick the next closest full number?

#

jst asking

civic current
#

wym

broken plover
fickle depot
#

could someone give me some scripting challenges

#

but like medium difficulty

near sonnet
civic current
#

😂

broken plover
#

ragebaiter

near sonnet
fickle depot
civic current
near sonnet
near sonnet
civic current
#

np

near sonnet
#

goat < 3

fickle depot
#

could someone give me some scripting challenges but like medium difficulty

#

excluding inventory system

fickle depot
#

i dont even know where to start

#

with that

wooden pecan
#

somewhere

broken plover
fickle depot
civic current
fickle depot
#

i literally wrote medium difficulty 😭

fickle depot
near sonnet
civic current
#

i can help

#

trust me its ez af

wooden pecan
#

item.count += 1

#

thats it

fickle depot
#

huh

civic current
#

i think he means data store

#

or idk

broken plover
#

@fickle depot make

fickle depot
#

yea zaddy uh could you teach me

broken plover
#

discord on roblox

fickle depot
#

do i have to pay you

civic current
#

no

#

u dont have to pay

fickle depot
civic current
#

but theres a price... 🥵

broken plover
fickle depot
civic current
#

nah ill help

fickle depot
civic current
#

no prices :)

fickle depot
broken plover
fickle depot
#

dms?

civic current
#

ok

#

🥵

fickle depot
civic current
#

. wrong emoji

bitter yacht
#

dm me if you need help w/ javascript or html-css

near sonnet
#

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

outer widget
#

any1 good at balancin stuff like brainrot etc idk

bitter yacht
#

dm me if you need help w/ javascript or html-css

zealous plover
#

Yo is lerp better to use than tween?

#

like in general

gentle portal
#

depends on ur purpose

zealous plover
broken plover
zealous plover
#

I'm not making games

gentle portal
#

i dont like tweens personally but thats just me

regal salmon
zealous plover
broken plover
#

never in my life have i touched tween service

gentle portal
zealous plover
#

Like quadbezier

gentle portal
#

sometimes linear interpolation

#

sometimes springs

#

it depends really

zealous plover
#

and you use a for loop ?

regal salmon
gentle portal
#

y a for loop

#

a lerp is a mathematical function bruh

broken plover
#

i learned lua from exploiting

zealous plover
#

Yes but im making an animation

regal salmon
gentle portal
#

well what sort of animation

cerulean void
zealous plover
#

Loading screen

#

Im trying to see what is the best way to use it

broken plover
zealous plover
broken plover
#

once you grow and become a man you’ll eventually stumble across a good spring module and never use anything else

#

for ui^

gentle portal
#

spring module fans vs ill just make it myself enjoyers

zealous plover
#

Let say i wanted to do a case opening systeme

#

Would spring be useful

quasi urchin
#

Guys, do you save to datastores every 60-120 seconds? or do you only save on leave and join?

quasi urchin
gentle portal
#

those animations move in a springy way generally

zealous plover
#

Hmmm ok

#

I made one with lerp

#

Spring is basically the best thing

#

thats what they use for pets

formal jay
median tiger
#

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

median tiger
#

Save on leave

#

But saving each minute or two isnt a bad idea two

quasi urchin
#

if same sever

#

*server

formal jay
#

no i ahve not

#

data saving is pretty fast usually

#

but i havent made a ton of games so maybe thats better practice

quasi urchin
#

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

formal jay
#

havent run into that issue before

quasi urchin
#

yeah idk tbh

formal jay
#

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

quasi urchin
#

hopefully problem is solved

gusty yacht
#

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

shut charm
#

@civic portal how much rbx you made so far?

civic portal
#

with 30 ccu

#

generally not a reliable measurement as its too low CCU

gentle urchin
#

i nit team

cinder temple
regal salmon
cold crow
#

never code again you little rat

minor jacinth
cold crow
#

packgod, humble him.

#

@teal frost

split gazelle
split gazelle
#

Is a big grene button

#

theres a big green button

#

U have to press

#

Also control to sprint

stable inlet
#

I did it without sprint 💀

#

didnt even know u could sprint

split gazelle
#

THE

#

oh wait

#

Ur speed it 16 if u dont sprint

#

I forgot

stable inlet
#

wanna see the clip? its pretty epic

split gazelle
#

Yeah

#

And ur user?

stable inlet
#

wildpilots

split gazelle
#

Bett

#

Seems like the system for winning does not work

#

did it tp u ir make a sound at all

stable inlet
#

no

split gazelle
#

Fuck

stable inlet
#

im still here

split gazelle
#

Welp its broken

stable inlet
#

idk if it made a sound im not wearing headphones

split gazelle
#

i gotta fix it but ty

split gazelle
stable inlet
#

im compressing my pro gameplay footage

split gazelle
#

nice

#

Ok wait lemme join pls donate rq

stable inlet
split gazelle
#

dawg

#

Ur only option is 550

#

Ngl

stable inlet
#

what

#

actually

split gazelle
#

Did ur games get taken down

stable inlet
#

oh shit

#

maybe

#

one sec

#

ok i fixed it

stable inlet
#

yo i dont even have a 10 robux gamepass lmao 1 sec

#

ok i did it

split gazelle
#

yo

#

wildpilotz

#

Lemme send u the monneeey

#

but can u beat the obby again pls

#

Lemme release the fix

stable inlet
#

ok

#

will u give me another 10 :)

#

is the fix here yet

split gazelle
#

Ill have -10

#

i fixed

#

Record it and send it when ur done thanks

stable inlet
#

ok

split gazelle
#

When i become rich and famous ill remember u

#

Also i sent the robux

stable inlet
#

thanks

#

u fixed it but the border doesnt respawn when i respawn

split gazelle
#

it doesn’t?

stable inlet
#

naw

split gazelle
#

wait what

stable inlet
#

so now im just chilling here and the borders not here

split gazelle
#

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

stable inlet
#

ok

split gazelle
#

./j

stable inlet
#

it didnt even give me the win

split gazelle
#

OMG

#

I FORGOT THE LEADERBOARD

#

I FORGOTTTT ABOUT THE LEEAADDDDEEER BOAAARFDDD

stable inlet
#

🥀

slender fiber
#

Yo brainrot scripters dm me rq

split gazelle
#

ts is tragic

stable inlet
split gazelle
#

I took it from toolbox ok

#

Im not a builder

stable inlet
#

ok bud

split gazelle
#

My skills are scripting scripting and more scripting

#

ill give u uhh

#

5 wins tmr

#

for free

#

compensation

#

trust(not like your care ngl)

stable inlet
#

ok bro

#

might as well just give me a million wins

split gazelle
#

Ngl

#

Bet

stable inlet
split gazelle
#

its taco Thursday tmr anyways

#

First ever admin abuse

#

🥹

regal salmon
#

ah yes lets steal other peoples work for our own profit

normal solar
#

dont hate the player hate the game

radiant basalt
#

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

radiant basalt
normal solar
radiant basalt
#

will u help me

normal solar
#

No

#

😂

radiant basalt
#

igh

hardy pier
#

Any scripter wanna Collab
I wanna make a knockout type game

remote phoenix
#

no

hardy pier
#

:(

#

🥀💔

remote phoenix
#

cuz I can't ensure that you won't just abandon me after

#

and I've only been scripting for 1 day

hardy pier
cyan bobcat
#

Guys I'm begginer scripter what do I do for practice?

heavy elk
pastel ledge
#

@hardy pier @remote phoenix i can help.

remote phoenix
hardy pier
hardy pier
#

Like how can I prove

remote phoenix
dry sparrow
#

“Why would I scam someone who makes the game” clearly you’re not thinking in the mindset

remote phoenix
#

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

cyan lantern
#

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

pastel ledge
cyan lantern
#

OH MY GOD I FINALLY FUCKING MADE IT

#

I FINALLY FUCKING MADE IT

blazing coral
#

Yo @brazen badger

#

Check dm @brazen badger

cyan lantern
#

Im never doing this shit ever again

regal salmon
normal solar
#

why did u ask that

regal salmon
#

?

normal solar
#

Why would u ask that bro

regal salmon
#

because i'm curious

rigid pagoda
#

why haven't i been using signals

#

i feel like i was living blind but i just opened my eyes

cyan lantern
#

it's just medium level questions and im suffering

#

algorithms can't be this scary

regal salmon
#

ah i see

void tusk
upper egret
#

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 😄

cyan lantern
#

kahn's algorithm

#

oh my god how are people supposed to know these things and terms exist

inland zephyr
cyan lantern
#

no ads pls

slim steeple
#

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)

regal salmon
slim steeple
#

think like in smash bros when you launch an enemy in the air and it feels like they float down

slim steeple
teal marsh
#

Why it does not change PlatformStand to true while you are jumping and moving?

regal salmon
teal marsh
#

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

broken plover
#

i’ll heal her

broken plover
teal marsh
#

Still not working, I have dissabled every state and Physic

broken plover
#

(or if you’re a lazy POS just set jump power to 0)

broken plover
teal marsh
#

hum:ChangeState(Enum.HumanoidStateType.Physics)
hum:SetStateEnabled(Enum.HumanoidStateType.Running, false)
hum:SetStateEnabled(Enum.HumanoidStateType.Jumping, false)
hum:SetStateEnabled(Enum.HumanoidStateType.FallingDown, false)

pliant forum
#

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

broken plover
primal escarp
#

does anyone use a dispatcher here?

hard garden
primal escarp
hard garden
hard garden
primal escarp
#

It's a shallow topic, i suggest you do research on that. I can't explain for my life lmao

primal escarp
left ginkgo
#

anybody interested in chatgpt account generator

past hawk
#

İs gemini ai good for coding?

zealous dragon
hollow summit
left ginkgo
#

u enter callback login link - openclaw or codex and it automatically fulfills login link within 1-2 minutes

hollow summit
left ginkgo
#

aight

hollow summit
#

why'd u make an account gen

#

seems kinda unnecessary rn imo

rich mauve
hollow summit
#

openai u can rn do free business acc with ~5 free slots or so for a whole month

hollow summit
#

personally opus feels the nicest to work with, codex 5.4 has rly good power though

rich mauve
hollow summit
#

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

rich mauve
#

yea

heady spire
#

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

tidal bolt
#

like you've broken the problem down into the smallest possible bits

heady spire
#

yea but idk how to logically structure the code

#

in steps

#

but ill figure it out

dire field
#

enum bs?

tidal bolt
#

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)

left ginkgo
#

anyone here interested in botfarm / captcha solving technology

twilit sapphire
#

yo guys how do i learn scripting

raven wadi
cyan bobcat
#

Guys if I purchased robux before 3 years will it count so I can publish games

blissful arch
left ginkgo
#

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

blissful arch
left ginkgo
#

Linux is good for SaaS but not everything

sweet girder
#

that's a bold statement

left ginkgo
#

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

blissful arch
#

Centi can u hack 3 mil robux into my account

#

I’d be fine with 1 mil too by the way

left ginkgo
#

Bro I didn’t do hacking are yall genuinely special ed or what

blissful arch
#

The names centi hack bro

left ginkgo
#

I just said I do malware development, external game cheat development, and browser automation

blissful arch
#

Real hacker could adopt me

blissful arch
toxic flint
#

no, junior.seniorjunior.hack

#

wait

#

f- [bleep]

static coral
blissful arch
#

Like robinhood

toxic flint
blissful arch
#

Giving 1 mil robux to the poor

toxic flint
#

nvm i get it

blissful arch
#

(Me)

toxic flint
blissful arch
#

True

left ginkgo
#

show me some of the projects u legit did lmao

#

cant be trying to be sarcastic when u cant prove u have done shit

blissful arch
#

Pls pls

#

I will make hundreds of Roblox bots that all farm tix and send it to my main

left ginkgo
#

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

blissful arch
#

I haven’t really broken through any other

#

Although I’ve gotten quite good at luau this past month

left ginkgo
#

is it hard?

#

yes most definetly

minor jacinth
left ginkgo
#

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

left ginkgo
#

as u see same concepts just different format

#

c++ vs lua btw

safe pelican
#

brochowski whyd u delete ts

marble compass
#

I'm not high enough level

blissful arch
#

i find what you do very cool

#

no glaze

sacred widget
#

recursion can replace any loop

willow maple
#

I need sm investors

#

For my cash grab game

quaint tapir
#

just remembering more naming

ember nimbus
#

remember to take English lit to better name your variables

#

a real king makes their comments more indecipherable than the code it describes

static coral
edgy quarry
#

anyone needs help>?

sacred widget
regal salmon
cyan bobcat
#

Guys give me good game ideas that have potential (I have 4 months to develop a game then I need to publish)

dire field
#

or even better

#

headpats from discord mod

cyan bobcat
#

No actually games with actual potential

forest bear
#

my friend's code is so bad it broke the health limit

weak radish
cyan bobcat
weak radish
edgy quarry
#

yall are wierd

#

bro

forest bear
#

I js sent it to code disc as well

cyan bobcat
#

?

static coral
eager fable
#

Is Coding commisions good?

cyan bobcat
astral sail
#

Hi, I was wondering why I can't see AllowedExternalLinksRefrences nowhere?

eager fable
formal jay
cyan bobcat
eager fable
eager fable
cyan bobcat
#

Eliminating future competition

formal jay
#

listen to the pink guy hes right

#

it sucks

eager fable
#

do you like it big or small

formal jay
#

what

eager fable
#

Do you like it big or small

#

The price of your work

cyan bobcat
#

Ok bro explain from beginning

formal jay
#

^

eager fable
#

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

formal jay
#

can you explain it again

eager fable
#

i need an actual earning developer to get more info

cyan bobcat
eager fable
#

you need advertisement for that

#

even after that you need recognition

formal jay
#

if you wanna do commissions then go do commissions

eager fable
turbid creek
cyan bobcat
eager fable
turbid creek
cyan bobcat
#

Yo anyone have game idea to share

eager fable
# cyan bobcat Both can make you good money

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

turbid creek
eager fable
#

Commisions is the best choice ngl

formal jay
cyan bobcat
formal jay
#

have you tried talking to them

eager fable
#

This one's for fun

#

Burger king pays no shit

#

Work for restaurants

#

or something instead

turbid creek
#

He means get a job 🥀

split gazelle
eager fable
#

I got one

regal salmon
#

and execute it well

cyan bobcat
turbid creek
gray frost
#

how tf i get this invite ui to show up

formal jay
cyan bobcat
gray frost
#

i get this shit one

formal jay
#

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

eager fable
#

what is bro playing

turbid creek
formal jay
#

no my ideas original

cyan bobcat
turbid creek
#

Or sammy

#

Whatever his name is

gray frost
cyan bobcat
cyan bobcat
formal jay
#

he dodged my court filings

turbid creek
cyan bobcat
split gazelle
#

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)

formal jay
#

no thanks buddy

formal jay
#

@eager fable see theres no money in commissions

formal jay
#

theres a bunch of guys like these who are doing it for FREE

turbid creek
split gazelle
weak radish
split gazelle
cyan bobcat
#

Einstein

turbid creek
#

Bald men everywhere

formal jay
#

just hook them up to chatgpt and they'll make something decent eventually

turbid creek
#

Oh shi

weak radish
split gazelle
turbid creek
#

Shit

formal jay
#

with a ruler too

gray frost
turbid creek
cyan bobcat
#

Make a punch that ragdolls ill do animations

turbid creek
#

I don't have pic perms

#

Too bad

split gazelle
formal jay
#

youre bald then

cyan bobcat
weak radish
#

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.

formal jay
#

guilty until proven innocent

turbid creek
#

I need lvl 5

formal jay
split gazelle
cyan bobcat
#

You can't do ragdoll?

#

You use models don't you?

formal jay
#

wheres your source pal

turbid creek
cyan bobcat
split gazelle
cyan bobcat
turbid creek
#

Y'all wanna hear a joke

formal jay
#

ok

turbid creek
#

Why do skeletons don't fight each other

formal jay
#

why

turbid creek
#

Because they have no guts

#

😂😂 😹🤣🤣🤣

formal jay
#

🤣

turbid creek
#

😂😂😹

#

Want another one

weak radish
cyan bobcat
turbid creek
#

What's the difference between a Ferrari and children

formal jay
formal jay
#

i have a source and you dont

turbid creek
#

I don't have a Ferrari in my garage

#

😂😂

cyan bobcat
#

Ping mods

turbid creek
#

😂😂😹😹

cyan bobcat
#

Jk

turbid creek
#

Want another?

cyan bobcat
#

No

turbid creek
#

Why do orphans like boomerangs

#

Because they come back

#

😂😂😂

weak radish
turbid creek
#

😂😹😂😹😹😂

cyan bobcat
turbid creek
formal jay
weak radish
weak radish
turbid creek
cyan bobcat
#

@split gazelle you do commsion for free right?

formal jay
#

tahts what im saying

weak radish
#

we all know you work fast food

#

and youre lonely

turbid creek
#

Hotel

weak radish
#

so youre tryna get people to join you

turbid creek
#

Hotel

#

Hotel 🚨🚨🚨

#

Holy shit

#

This bomb

formal jay
#

im trying to fastfood pill you

turbid creek
#

Just fell near my house

#

4th one so far

formal jay
#

porgs just switch alright

#

while you have time

turbid creek
formal jay
#

once the roblox bubble bursts fast food is next

cyan bobcat
turbid creek
cyan bobcat
#

Bruh

turbid creek
formal jay
cyan bobcat
#

Your name is not brox

turbid creek
#

Ye ik

#

I didn't know brox was a name

nocturne abyss
#

Anyone up for a small task composetion ?

turbid creek
#

I just picked it random letters

formal jay
cyan bobcat
split gazelle
weak radish
formal jay
#

im a shift manager

turbid creek
nocturne abyss
formal jay
#

whats the task

nocturne abyss
cyan bobcat
nocturne abyss
#

So code another line

turbid creek
weak radish
cyan bobcat
#

What compensation

formal jay
#

now i have 2 sources

cyan bobcat
turbid creek
#

We didn't say anything bad gng

nocturne abyss
turbid creek
#

Maybe my jokes only

weak radish
#

Who thinks a shift manager for a fast food chain needs a lot of qualifications lmao

formal jay
#

god damn bro whats your fast food position

nocturne abyss
#

atleast take some robux

cyan bobcat
turbid creek
weak radish
formal jay
#

porgs crying tears of rage are worth more than any amount of robux

cyan bobcat
#

Bro why everyone ignore me

turbid creek
cyan bobcat
#

I'm sad

turbid creek
#

Ur bald and obese

formal jay
turbid creek
#

...

weak radish
turbid creek
formal jay
#

how much robux is a big mac worth

weak radish
#

Probably volunteering for mc donalds

turbid creek
#

Idk

#

I don't eat that crap

formal jay
#

are you american

turbid creek
#

Hell no

#

Palestinian

weak radish
turbid creek
#

😉

#

😈

nocturne abyss
edgy quarry
nocturne abyss
#

are you animating scripts

cyan bobcat
turbid creek
edgy quarry
nocturne abyss
formal jay
#

make no mistakes

edgy quarry
#

no define luastate

formal jay
#

you define it

split gazelle
edgy quarry
#

im asking th3e question

#

why are you comming back at me with my question

formal jay
#

we all know what lua state means, we want to make sure you know too so youre not fishing for an answer

nocturne abyss
formal jay
#

no you define it

turbid creek
#

🥀💔

formal jay
#

youre trying to get the answer from us

cyan bobcat
cyan bobcat
nocturne abyss
#

why did it take long you just searching

formal jay
edgy quarry
#

yes cuz i know htat you guys dont know t and say wew know scripting

minor jacinth
cyan bobcat
formal jay
#

no, we all know what luastate means, youre just trying to cheat by asking us to answer for you

edgy quarry
#

you dont make any sens you knoww that right

#

you guyhs are just skids

#

not all of you

formal jay
#

go read up what luastate means larper

#

come back when you can pass our test

edgy quarry
#

lol

nocturne abyss
edgy quarry
#

i asked the question by the way

formal jay
#

youre name should be scripterlarper since you dont know what lua state means

cyan bobcat
minor jacinth
turbid creek
#

It gonna download 100 desktop ants

turbid creek
#

That move

edgy quarry
formal jay
#

he can

edgy quarry
#

then define it

cyan bobcat
#

You define if you know

nocturne abyss
formal jay
#

we already know it lol

cyan bobcat
#

See you don't know

formal jay
#

you dont thats why youre asking

nova shore
cyan bobcat
nova shore
#

You cant code

edgy quarry
#

proove it

formal jay
#

@nova shore he doesnt even know what a luastate is

cyan bobcat
formal jay
#

the only person who would ask whats a luastate is someone who doesnt know already

nova shore
turbid creek
#

Ban this kid

formal jay
#

its like asking how to breathe

turbid creek
#

Ban larper

formal jay
#

everyone knows

nocturne abyss
#

require'luajit_h'
local ffi = require'ffi'
local C = ffi.C
local M = {C = C}
local cast = ffi.cast

cyan bobcat
nova shore
formal jay
#

yes you do

cyan bobcat
nova shore
#

No I don’t

formal jay
edgy quarry
#

luastate is separate lua enviroment

#

where scripts run isolated

formal jay
#

larper brought in his alt to fish for answers too 🤣

turbid creek
#

He/she(probably both) joined dc last month

#

Ban larper

cyan bobcat
nova shore
formal jay
#

yeah fr

edgy quarry
#

whats wrong with mr robot

formal jay
#

notice how when larper talks tony stops talking

nova shore
#

Yeah

#

True

edgy quarry
#

i aint getting rage baited today

#

gng

nova shore
#

Anyways @edgy quarry @formal jay ur both skids

formal jay
#

you aint getting the answer to luastate either

edgy quarry
cyan bobcat
#

Smart move bro

edgy quarry
nova shore
#

dudes flashcards revolve around lua im dead

formal jay
#

ban em both

turbid creek
minor jacinth
turbid creek
#

If u know kid

formal jay
#

^^^

edgy quarry
formal jay
#

no you didnt

nova shore
#

server724 is insecure because he can’t code

edgy quarry
#

not my fault if you are blind gang go get checked out

turbid creek
nova shore
#

what have you achieved in life so far

formal jay
#

encrypted stop talking through your alt

nova shore
#

Both of you, complete skids

formal jay
#

we know tony is you

cyan bobcat
nova shore
#

All you do is write stuff on Roblox hahahah

cyan bobcat
#

Or you just larp all day?

turbid creek
nova shore
formal jay
edgy quarry
#

no tony is right

nova shore
#

I know I am

cyan bobcat
turbid creek
#

Deceiving hairline 90%

edgy quarry
#

you are

formal jay
#

yeah

turbid creek
#

🚨⚠️

nova shore
#

All this ego just to make games

#

Nobody cares

edgy quarry
#

writing only lua and saying tht you are a dev doesent make sens

#

e

nova shore
#

We can talk when you do something productive

cyan bobcat
#

Bro playing checkers while we master chess

turbid creek
#

Larper and Tony just kiss already and leave us u baldies

nova shore
#

“Whats a luastate”

formal jay
edgy quarry
#

bro

nova shore
formal jay
edgy quarry
#

just say it then its not that hard like i asked a question yeah answer ir gang

nova shore
#

You never made anything impressive either

minor jacinth
edgy quarry
#

dont give a fuh like if you know whats luastate or not

turbid creek