#code-discussion

1 messages · Page 70 of 1

proud idol
#

read the output

ivory kite
#

Are you sure it's an actual forcefield class they're trying to destroy

bitter siren
#

i put this in?

proud idol
proud idol
#

on a touch ended event

ivory kite
#

It could be a value (for some reason) for use internally, or something along those lines

#

I mean it's really unusual to store a forcefield in a dictionary of player names

ivory kite
#

Yeah you got a point I'm definitely overthinking it

bitter siren
proud idol
proud idol
#

truthfully whoever coded that is ass at coding ngl lmao

bitter siren
#

noway i can fix?

proud idol
#

no yes you cna but i would personally rewrite the code

#

like its so ass it needs to be recoded

bitter siren
#

yeah ill just delete it idk how to code

rancid vapor
#

yo guys why isnt my chat bubble showing, im trying to make a "click for letters" game and now i cant see my chat bubble

bitter siren
#

can you dm me @proud idol

proud idol
ivory kite
#

I can help you

bitter siren
rancid vapor
# ivory kite I can help you

yooo why isnt my chat bubble showing, im trying to make a "click for letters" game and now i cant see my chat bubble

#

just dm if u can

proud idol
#

fyi the reason why tis erroring now is cause i changed the player variable into Hit

#

(becuase touchended returns a part, not a player)

#

which would mean the following code of the gui would also not work

cerulean osprey
#

anyone can help with my 3d renderer, how can i optimize buffer switching, it wastes a lot of perfomance

copper tundra
small fractal
#

why dont u get a ui for showing clicks

copper tundra
#

we have alot time to get there

#

we should work together

small fractal
#

maybe

copper tundra
#

i want a friend that i could learn with

vagrant shoal
proud idol
mighty escarp
cerulean osprey
proud idol
#

the big learning curve of scripting learning how to design ur systems on ur own

#

but that requires research on the documentation of engine

#

and that takes its time

copper tundra
rancid vapor
#

can someone help me

vagrant shoal
rancid vapor
# vagrant shoal Instead of asking to ask just ask my guy

basically, im trying to make a game where u click for letters, and the amount of points u have are the amount of letters u have to send. And whenever i click twice and recieve two points and say hi, the 2 the points would be removed after i said hi, because it will be subtracted by the letter count of the word hi. Then i would have 0, then when i click again to regain letterpoints, it starts the count from 3, not from 1.

#

i was trying to find the question

vagrant shoal
#

That suggests your code isn’t properly resetting or updating the letter points after spending them

rancid vapor
#

yeah how do i fix that

vagrant shoal
#

I don’t know show me your code

rancid vapor
#

dm

proud idol
#

reading how stuff works on the roblox engine so u can understand what it does and its applications, which you can then use to implement in ur own custom systems

polar furnace
#

somebody give me something to script in studio

foggy burrow
#

Make a script the reverses a string

#

Without using the default Roblox

#

String.reverse

pearl sierra
#

am I a goated dev ?

umbral carbon
foggy burrow
#

local button = button or smthn else

umbral carbon
polar furnace
foggy burrow
#

Only reason why if you would do that

pearl sierra
foggy burrow
#

Ag

#

Ah

#

Wait wdym?

pearl sierra
#

cuz you see here I defined that the "button" vairable is supposed to be GuiButton , right? Because of this I need to make sure it's not nil afterwards ,so indstead of that I just localise the variable

#

I hope i made it understandable

static coral
#

are you talking about the variable’s type or the value of it

pearl sierra
hasty mesa
static coral
mighty escarp
# cerulean osprey Its enough to tell me some changes to do so that i do some of the work
-- prepare grayscle
local grayscale = {}
for i = 0, 100 do
    grayscale[i] = Color3.new(i / 100, i / 100, i / 100)
end

-- swap the buffer and clear for netx frame
function holography:swapBuffers()
    self.currentBuffer = (self.currentBuffer == 1) and 2 or 1
    self:clearBuffer(self.currentBuffer)
end

-- update pixels on color change.
function holography:drawPixel(x, y, newColor)
    local bufferIndex = self.currentBuffer
    local pixels = self.pixelBuffers[bufferIndex]
    local colors = self.pixelColorBuffers[bufferIndex]

    if not colors[x][y] or colors[x][y] ~= newColor then
        pixels[x][y] = true
        colors[x][y] = newColor

        local pixel = self.pixelInstances[x][y]
        if pixel then
            pixel.Color = newColor
        end
    end
end
#

maybe u can use this

pearl sierra
#

it's easier to show what I meant here. I was just trynna get rid of the orange(warn) signal there

#

button1 is what I did to get rid of it

mighty escarp
#
function iosIJFhsdiuf(button : GuiButton)
    if not button then
        return
    end
    
    local MainUI = button.Parent.Parent
end
pearl sierra
#

either way I realised it's just futile to add it cuz I can just remove the type checking in the func itself

gray maple
#

do if not button.parent above

hasty mesa
#

it would error

#

if this was in strict both would error

pearl sierra
hasty mesa
#

but cause its not strict the type checker allows the weaker typed to not error

cerulean osprey
# mighty escarp ```lua -- prepare grayscle local grayscale = {} for i = 0, 100 do grayscale[...

I use a cube render, may sound weird but its not a 2d screen, its a 3d cube with pixel cubes on it, basically parts, i cant use mesh api and image api but i try this way, the problem is performance when iterating alot pixels delaying the loop and when parenting the parts and changing color, what can i do to filter better or render with less roblox api cost, swap buffer is laggy when i have rapidly moving parts

hasty mesa
#

just locallize the variable

#

also use a flatten array

#

rather then a 3d array

mighty escarp
#

so you don't destroy, you unparent

#

which is much cheaper in resource

cerulean osprey
#

I do unparent but save parts in table

#

Parenting and the time to iterate and check conditions makes it delay and lag, i do it in sever

cerulean osprey
hasty mesa
#

Store the table as a local

#

And just index that table

#

Rather go thru the whole chain to find the table each iteration

#

Either you should be using a flatten array

#

For the best performance

cerulean osprey
#

A flatten array is have all coordinates in the main parent table without having seperate table for each x and y?

hasty mesa
#

You could also use vector3s as keys

cerulean osprey
#

Basically i should store each color and is active as a vector and all in the parent table basically buffer without going in depth?

hasty mesa
#

Yeah

cerulean osprey
#

And what can i do instead of parenting and unparenting and changing color if needed

#

It takes perfomance on 50x50x50 cube when i for example make noise terrain that moves rapidly

hasty mesa
#

Move it instead of parenting it

cerulean osprey
cerulean osprey
#

Not so sure about 125000 small parts in the distance but will try later

#

And what else could take time when switching buffers and rendering

hasty mesa
#

as old

#

roblox would check already

#

if its the same or not

cerulean osprey
#

Ok

#

Thanks for the tips, will use later

#

Bye

celest cipher
#

im tryna tween a model but i cant, how can i use weld constraint to make 2 parts form into one like a model

remote yarrow
#

Hairy twinkle

craggy niche
#

what this means when i play game

charred ledge
#

Guys is there a way to script a build board in my game so it says "come join my game called ……." That people can hire but like how do I make it so they can only type their game name and not edit the rest of the text

ruby iron
craggy niche
honest moss
#

anyone experienced in making pet simulators or simulators in general? DM

fathom hawk
#

I feel like i can find more linux people here than in general chat so imma ask here; does anyone know if the flathub version of discord has hardware acceleration enabled by default? changing the hardware acceleration slider in the settings doesnt really feel like its changing anything

craggy niche
#
function VFXHandle(Player)
    if Player:GetAttribute("VFXGamepass", true) then
        local HumanoidRootPart: Model? = Player:WaitForChild("Character"):WaitForChild("HumanoidRootPart")
        if HumanoidRootPart then
            HumanoidRootPart.
        end
    else
        return
    end
end

how do i display a vfx in this function? im guessing its to do w humanoidrootpart but whats the function to display the aura? i have it in replicated

tidal mantle
#

how long did it took y'all to learn metatables?

celest cipher
#

also, i made a moving platform tween but my player wont move with the platform

#

HOW TF DO I FIX THAT

cinder wave
noble granite
#

anyone who can code a 2 player obby system where the player is on a skateboard and one person on front is controlling moving it, and one on the back controlling direction, (payment robux caus im poor)

noble granite
shy dock
#

i wasnt gonna take the job

noble granite
#

oh igh

shy dock
#

i have no idea how to make 2 play controls

noble granite
#

then why u ask bruh

#

💔

noble granite
shy dock
#

i was asking how much because some people pay by the cost to buy robux not dev ex rates

shy dock
noble granite
#

if u wanna get coms

shy dock
#

i gtg to school

noble granite
#

😭

shy dock
#

can we talk later

noble granite
#

prob not ill find some1 else

#

but mayb

shy dock
#

wait what is it

#

what do you need

noble granite
#

a

#

tween

shy dock
#

dms

noble granite
#

qwhat happend to schl

white seal
#

i iant scripter !

lusty barn
#

its a breakpoint

#

red circles on left of script

white seal
#

Idk bro i am stupid

#

🫡

uneven jolt
#

Does anyone know why UserSettings().CameraRelative is not working when the player respawns? It just locks the current facing position instead

#

Works fine the first time, then on character respawn it just faces the same way

mint cloud
noble granite
#

anyone can do a tween dm me payment robux cus im poor

vagrant shoal
hardy pilot
#

I mean you can use a dictionary of callbacks if you really want

vagrant shoal
#

Yeah but who wants to do allat

hardy pilot
#

You

vagrant shoal
#

Making functions uses more memory

hardy pilot
#

Not a significant amount

noble granite
#

dm me if u can make tweens payment robux

vagrant shoal
#

And after the “statement” is executed there is no longer a use for the dictionary of functions

vagrant shoal
hardy pilot
#

Also not sure how switch statements compare in other langs

hardy pilot
#

It does not add up

vagrant shoal
#

Only 10?

#

How much code do you write

hardy pilot
#

How many cases do you possibly have

hardy pilot
vagrant shoal
#

At least 50 for only 4000 lines

#

Depends on what I’m trying to accomplish

hardy pilot
#

50 switch cases???

vagrant shoal
#

I might be a switch fein

hardy pilot
#

😭

#

YandereDev evolution

#

I have like.. 5 in 25k lines

mint cloud
#

What is bro writing 25k lines for 🙏

hardy pilot
#

And two are for dev products and gamepasses

hardy pilot
vagrant shoal
mint cloud
sudden bane
#

Does anyone has a tutor for creating a movement physics for skates and bikes , ex : obby but you're on a bike blob_help

noble granite
fresh cloud
#

guyyss

#

someone can give me ideias of how make my code prettier?

#

why discord keeps removing my tabs 😭

rugged island
#

Rate limiting remote functions

rugged island
#

Type checking

local isCar: boolean = game.car.value
#

For example

fresh cloud
#

cool

#

the image is related?

bleak glade
#

you dont need to include the possibiltiy for the nil question mark either as youre waiting for it

ruby iron
#

^

#

use FFC

bleak glade
ruby iron
#

2008 ahh tutorial

#

you don't need to cache functions anymore lil bro

fresh cloud
#

there is any performance issues/

ruby iron
#

i mean, there's no performance gains

bleak glade
#

you asked how to make your code prettier, well that isnt helping

#

that makes it more unreadable imo

ruby iron
#

^

fresh cloud
#

idk i just like this

#

task.wait inst cool idk

bleak glade
#

you can learn type checks if you want your code prettier

fresh cloud
#

oh

#

what ? means?

#

"?"*

bleak glade
fresh cloud
#

cool

bleak glade
#

its the same as NpcName: string | nil

fresh cloud
#

didn't there be something like:
local number = 7==7 then 7 else 9

bleak glade
#

?

fresh cloud
#

i dont remember exactly

ruby iron
#

ternary operators

fresh cloud
#

yes

ruby iron
#

yes but that's different than types

fresh cloud
#

yes

#

I just didn't remember exactly, it's been a while since I used it

bleak glade
#

typeof is helpful for instances/ objects too

ruby iron
#

ya but you can't use that on custom types 😔

fresh cloud
#

local num= 2 > 6 and "I am greater than 3!" or 2 == 2 and "I am equal to 2" or "I am less than 4"

bleak glade
#

its just helpful for carrying types over

bleak glade
#

unless its returning the string or smth

ruby iron
#

he's returning the string

#

it would work

fresh cloud
#

yeah i will test

ruby iron
#

tbh if you have more than 2 conditions, just use an elseif

bleak glade
#

idk when youd need a comparision like that though

ruby iron
#

or it gets confusing and buggy

fresh cloud
#

same

eager lodge
fresh cloud
bleak glade
ruby iron
eager lodge
bleak glade
#

i mean really else ifs

ruby iron
#

ur line works

eager lodge
#

wouldnt that be more effective here than an elseif

ruby iron
#

no

eager lodge
ruby iron
#

wait elseif is basically case

#

so yes

eager lodge
#

ya

bleak glade
#

i dont really use elseifs

fresh cloud
#

what

hollow plover
#

💔

placid agate
#

else if 💔 elif ❤️

dusty pine
#

someone tryna give me a game idea to practice my coding im decent at it

dusty pine
runic ocean
#

pretty basic

dusty pine
# runic ocean Incremental Game

I just started making one but got stuck on something and I think it had to do with the logic of my code and i dont wanna restart cause im too lazy

runic ocean
dusty pine
#

ima restart tmr or something prob

normal sinew
dusty pine
#

yea but it just wasnt working

#

ima redo the logic tmr

normal sinew
#

for bug fixes i use claude, from experience it helps the most

fresh cloud
#

Ai is last opition

normal sinew
runic ocean
fresh cloud
runic ocean
#

who would want to write this much

fresh cloud
#

i

runic ocean
#

my order is taking so much time bruh

lofty plinth
#

Feels like a crime reading that

fresh cloud
#

Eyes bleeding

#

i dont have gifs 😭

fresh cloud
#

what is the reason of why reason why there is like no?

runic ocean
#

u needa be bronze

#

Bronze II

fresh cloud
#

What is bronze II

runic ocean
#

i think 😆

short crystal
#

Roblox coding feels light for some reason

#

Even tho i’m new

fresh cloud
#

Because it is

#

Relly easy language

#

really*

short crystal
#

Ive done python before anyway

runic ocean
short crystal
runic ocean
fresh cloud
#

bro

#

idk try using ps script or basic c++

#

to se what is mid

onyx inlet
short crystal
short crystal
#

Maybe

onyx inlet
runic ocean
#

i do

Python
Lua
JavaScript
C++

for others

Html
CSS

lofty plinth
#

Lua only gets difficult when you set ur font to wingdings

fresh cloud
#

wtf

short crystal
#

Probably gonna nail the language down by like the end of next month

runic ocean
#

750$ still not paying , my friend wont be active for some reason im waiting for him

short crystal
fresh cloud
#

know many things and is good a nothing

runic ocean
runic ocean
short crystal
runic ocean
#

hardest language i

#

ve ever learned

fresh cloud
#

was English

runic ocean
#

i stopped halfway

short crystal
#

I can’t understand java

#

Literally annoying

fresh cloud
#

guys i will sleep

short crystal
#

Its 2am and i have school in 6 hours

#

I cba to sleep

fresh cloud
#

good night everyone

runic ocean
short crystal
runic ocean
#

i will sleep when i go to school

#

which is in a month and half

short crystal
#

Pretty lucky then

#

I just know I’m gonna crash when I start coding advanced stuff

#

I feel it

runic ocean
#

u can ask me if u need any help lol

short crystal
#

Its not abt help

#

Mostly just like a mental crash

runic ocean
short crystal
#

Idk why though

runic ocean
#

I crash out on errors that now I treat as a piece of cake

short crystal
#

Literally python was my enemy at times

#

Now I just laugh on why i was crashing on these mistakes

onyx inlet
short crystal
#

Don’t even need skl anymore

#

Realistically i want to make a good income

uneven jolt
#

How ineffecient is it to set an attribute every tick on the server?
Currently I have a stun system that sets a timer on the server, and every heartbeat it's subtracting the delta time until it reaches zero. Is there a more efficient way to do this?

normal sinew
normal sinew
#

I didn’t publish it yet but if it is useful for others I will

sudden estuary
#

mate do with for a LARGE POOL

#

of items

fleet siren
#

How do i start learning scripting(without watching basic starter youtube tutorial)

spark lark
#

i want it for my game

#

i know nothing about roblox studio

hollow plover
spark lark
#

i have money not the skills lmao

hollow plover
#

nahh thats some mafia type shit

spark lark
#

yea, i tried to learn lua but i just dont have time

hollow plover
#

Understandable

#

some people dont have the time to solve a code which problem was a miss pronunciation for 6 hours

spark lark
#

thats brutal man

#

u coders are diffrent animals

lost pebble
spark lark
#

I guess it’s just a matter of interest you have in learning

clear mural
#

yeah im trynna learn but i feel stuck all i know to do is do a kill brick i know while loops for loops functions tables instances but idk how to implement them into something

odd copper
clear mural
#

its like i know how to use the tools but i cant use them to build something real

odd copper
#

Not to build things but to test how to script with almost every scriptable thing on a part.

#

One level, one thing changing (ex transparency, color, size, …)

#

And this will just lead you to more knowledge

clear mural
odd copper
#

Start really slow (a bit boring I know) then grow

odd copper
# clear mural interesting i will try to do that thank you

Yeah no problem. And personally, I know the basics, but then (really preference) I went full on UI and Camera/cut scene and stuff. So I was doing small projects I saw on other games or just out of my head and try to reproduce them

odd copper
#

And obviously sometimes it’s gonna be « oh well I want to make the camera move. Easy. Now, how to move the camera? »

cyan lantern
#

How would you guys tween a model

hollow plover
#

In my side i did simulators and searched uo how to do simulators and what to use and learned pretty quick

odd copper
#

Then you will learn some Services and bla bla

#

Like Tweening

hollow plover
#

first game was for pratice

odd copper
clear mural
cyan lantern
#

Then my pc must have rotten

odd copper
#

I’ve just started my first combat system perso

#

Not crazy but nice to do

hollow plover
#

Yea i do combat systems also

#

they are fun

odd copper
#

Indeed

hollow plover
#

I can make m1, m2, dash, dodge, attacks, etc

#

You learn A LOT from them

odd copper
#

UI is funnier

#

Hehe

hollow plover
#

UIP, Body/Linear Velocity, Hitboxes, etc

hollow plover
odd copper
#

The amount of things you can do if you understand physics right is just absolutely crazy

hazy rain
#

Guys

lost pebble
#

Gals

odd copper
#

Hello

hazy rain
#

I'm looking for a gui Maker in scripter

cyan lantern
#

oh god

hazy rain
#

Who can make something like this?

#

But our own way

odd copper
#

Oh nice

#

Idk if I can make that I’ve never tried let me check smt

hazy rain
#

My Battlegrounds game is about all animes

odd copper
hazy rain
#

Dm

#

@odd copper hey I need a picture in video of what u done so I'll know what u doing ok I can give ideas if want

#

But I gotta eat brb

cyan lantern
celest cipher
shell imp
#

GIVE ME Basic things to script

lyric dirge
crisp path
lyric dirge
#

Im the dumbass while basic can be multiple things lol, yeah well try to do a loading screen, it aint that hard

hexed cedar
#

Try a round system, or buyable coins from a button.

#

Depending on how much you know

proud idol
proud idol
weak radish
prisma meteor
#

why does predator sense not launch when i press the key

weak radish
sudden estuary
#

im talking about a productive case here, the manual work is difficult

#

and the multiplying factor doesn't really represent the luck sense at all

weak radish
#

Also

celest cipher
sudden estuary
weak radish
#

wdym add more collections, all games like pet SIM just take a script like that and put it in a module, nothing hard

sudden estuary
#

you are talking as ifyou witnessed that 🙏

sudden estuary
weak radish
sudden estuary
#

highly likely 🤣

weak radish
#

Are you dumb

#

Do you work for pet SIM?

sudden estuary
weak radish
sudden estuary
sudden estuary
#

none , im just talking about silly ur idea is when it comes to large scale games

weak radish
#

That they don't use that kind of system

#

That they're look is more realistic

sudden estuary
#

they have tons of egg , now imagine manually editing data for these when you could develop an algorithm that divides the luck and not multiplying by some arbitary factor that fakes it

sudden estuary
weak radish
violet citrus
#

i have a question that is related to coding, how does the storage limit work?

weak radish
#

Times everything else by lower multiplier

#

And it's done

sudden estuary
#

yea u r just finding easy workarounds when it doesn't do what u r intending to

weak radish
#

That would give it an accurate

violet citrus
weak radish
#

Chance

sudden estuary
rigid cedar
violet citrus
sudden estuary
weak radish
rigid cedar
sudden estuary
# violet citrus how the storage limit work
weak radish
sudden estuary
#

or yeah what bryce sent

sudden estuary
#

u were justifying it by saying "thats how popular games do" when infact ur assuming

rigid cedar
#

one character is one byte in terms of strings

weak radish
#

Can you not count?

violet citrus
sudden estuary
weak radish
#

Have you never added all the chances of an egg

#

It doesn't add to 100

sudden estuary
#

so?

#

what does that have to do with what I said

weak radish
#

Because they lie about chances

rigid cedar
#

it probably exists i just dont know about it

sudden estuary
violet citrus
rigid cedar
#

but generally you should be fine unless your use case is massive

rigid cedar
#

what's your use case if you have one? if you're just curious that's fine

#

you generally wont really hit the limit

violet citrus
violet citrus
rigid cedar
rigid cedar
violet citrus
rigid cedar
#

and it has to be ridiculously big for it to even hit the limit because roblox is pretty generous

rigid cedar
weak radish
rigid cedar
violet citrus
rigid cedar
#

see

lean ocean
#

We in the big 25

weak radish
#

wdym see

violet citrus
rigid cedar
#

it was nothing good

rigid cedar
violet citrus
#

i mean once u join the game u have 1.2KB data of storage...

rigid cedar
#

what kind of game is it

violet citrus
#

simulator

rigid cedar
#

tf

weak radish
#

What

rigid cedar
#

how much bigger does it get from there

violet citrus
#

idk

rigid cedar
#

i can see a set data structure on join being set so it's not too bad at that point

weak radish
rigid cedar
#

it just depends on if it gets even worse from that point

violet citrus
rigid cedar
#

then you'd have to implement some optimizations

#

and even then you're 0.029% of the max limit per key so it's probably still fine lmfao

violet citrus
#

i had a game where it saves recording, 15 sec recording is in megabyte

weak radish
rigid cedar
#

megabyte is crazy

#

yeah you should be fine

violet citrus
#

good

rigid cedar
#

it's not very optimized considering your game but it wont hit any limits

weak radish
violet citrus
#

idk shouldn't be too big

rigid cedar
#

im pretty curious too how big is that data structure

violet citrus
#

like just the name and bunch of attributes

weak radish
violet citrus
rigid cedar
violet citrus
weak radish
#

Like: Apples = {Quantity = 3, Shiny = 2, Mouldy = 1, Sizes = {1,0.5,0.9}}

violet citrus
#

ye

#

but they're more like pets

weak radish
violet citrus
#

but i think they're more attributes

somber vault
#

Does anyone here have approval for the hidden app developer? I'd like someone to review my code, please, if possible.

rugged island
#

rate limiting

weak radish
#

*48h

#

I think

sudden estuary
somber vault
ocean yacht
#

local num = 5
local question = print(5 + 1)
if num == question: then
print('hello')
end -- i rlly thought python and luau was the same shit, shit did not work

sudden estuary
#

print returns nothing

#

it has nothing to do with python and luau not being similar

ocean yacht
#

Ok

#

so what would be the working version

#

or what went wrong

sudden estuary
#

u did question = print(5+1)

ocean yacht
#

so do i just remove print

sudden estuary
#

question becomes nil

#

yea , but ur if statement will still be false

ocean yacht
#

so what else needs changing?

sudden estuary
#

what r u trying to do?

ocean yacht
#

wait

#

local num = 5
local question = (num + 1)
local answer = 6
local num2 = 1

if num + num2 == (6): then
print('hello')
end

#

wait local question was irrelevant

#

man idk plis help

ocean yacht
sudden estuary
ocean yacht
sudden estuary
#

no

placid matrix
sudden estuary
#

no

sudden estuary
#

can't help u learn lua

#

whole

ocean yacht
sudden estuary
#

bye

glacial kestrel
#
#

asking here since you’re probably like

#

the more sentient ones

#

yeah how do I make it fun

gray maple
#

i aint a kid bra, so im not the intended audience 💔

#

if you have a little cousin, ask them

glacial kestrel
#

I don’t 😭

ocean yacht
#

@placid matrix Sorry

glacial kestrel
#

he isn’t sorry btw

ocean yacht
#

i only like uwuu daddy girl

ocean yacht
gray maple
#

my 9 year old self would eat this

glacial kestrel
#

😭

#

yeah it makes a shit ton of money but lowkey

#

stats r dogshit

gray maple
#

freaking XP

#

money

#

youre lacking skill trees dude

#

add pvp

glacial kestrel
#

upgrades

gray maple
#

those low effort anime battleground pvp

glacial kestrel
#

I think

ocean yacht
placid matrix
gray maple
placid matrix
#

devouch

glacial kestrel
#

idrk

#

nvm I’ll keep them

gray maple
ocean yacht
glacial kestrel
#

I think they

#

nvm

placid matrix
#

to anyone who sees this message, femboys are welcome to become my disciple.

ocean yacht
#

Ok

gray maple
#

freaking roblox chat moderation is broken

#

im sure its a bug

#

cant say a goddamn thing

chilly canyon
#

How td

#

How much did you pay them?

ocean yacht
#

@tulip hearth

#

Pls uwu with em

#

Me

smoky condor
#

Whos ready?

violet citrus
#

Is it fine if i use offset to drag ui?

gray maple
smoky condor
gray maple
rugged island
sudden estuary
#

just convert it to scale

gray maple
#

mouse position are in offset

#

revoked your profound intelligence

sudden estuary
#

the above gif was meant for yourself 🙏

gray maple
#

theres no reason to convert tho

#

it would break if you change resolution

sudden estuary
gray maple
#

no, when dragging ui

sudden estuary
#

who even changes resolution mid game

gray maple
#

idk

gray maple
sudden estuary
#

fr we good

lost burrow
#

no hiring inchat

steep sable
velvet skiff
#

can any1 teach me scriptin

astral blaze
#

guys does anyone know a good dev fourm that has a already pre built zombie ai system? with pathfinding and raycasting

abstract dagger
hardy pilot
deft patio
#

Takes two seconds

astral blaze
#

like literally

#

i did everythign correct and it still gltiches

slow quest
#

enum.code/if did then lua.=PartPart or respawn
if respawn then add "You died" splash text.gui.enabled
if respawn then go to .. Checkpoint/"Part"

#

simple code for respawning and death message

abstract dagger
slow quest
abstract dagger
#

no

slow quest
abstract dagger
#

i have no need for it

slow quest
#

idk if i did my varbals right

abstract dagger
#

nah it doesnt

languid prawn
smoky condor
#

Still working on it

#

Im trying to get my staffs from my main UI server to be temporary staff there

balmy rover
#

yo guys how do u get the inventory/backpack system like in fisch or grow a garden?

spice sedge
#

some mobile devices also do a bit of trolling and change resolution randomly to display notifications or something

sudden estuary
#

fair

fringe knot
#

Who wants to make a game with me?

fringe knot
spice sedge
sturdy furnace
#

um guys so how do i make my game without knowing scripts 😦

silk sky
sturdy furnace
#

I am broke and i dont like to learn scripting bruv

#

i already tried learning sadly :/

silk sky
#

then I don't know what to tell you lol

sturdy furnace
#

bruh i am doomed i have been searching for a scripter for like 3 years

sudden estuary
silk sky
#

?

sudden estuary
#

he had that pfp

silk sky
#

insane

uncut isle
#

Can someone help me? My image buttons look like this before the game starts but when I press play this happens

sturdy furnace
#

Just Move it until it looks like what you wanted (no matter if in studio it isnt in place if it works in the ACTUAL game)

sturdy furnace
#

tbh i feel its the solution

#

if it doesnt work make a script to place it automatically

uncut isle
#

yooo

#

you a W

#

thank you

sturdy furnace
#

It worked?

#

thats crazy i suck in Ui tho lol

silk sky
#

scaling is going to go wild

weak radish
weak radish
sturdy furnace
silk sky
#

if you were a scripter, would you work for free?

weak radish
white seal
sturdy furnace
#

i did

#

WDYM FIND WORK

#

I Literally Suck at everything

uncut isle
white seal
sturdy furnace
#

shut the hell up

#

Murfel you too

white seal
#

No thx

uncut isle
white seal
#

@sturdy furnace oh u are a game tester that explains lol

sturdy furnace
#

can yall stop being mean

white seal
#

What tf did I say to offend u

#

U having a schizophrenic paranoia or something

#

Did u forget to take your dopamine pills

weak radish
sturdy furnace
#

yeah it is

white seal
#

Bro forgot his aripiprazole pills

sturdy furnace
#

alr im done report

white seal
#

Tf did I say

#

From medical view point I said no wrong shit

weak radish
white seal
#

I legit said nothing other then being worried for his health I didn't do non

regal geyser
#

paranoid schizophrenia is a rare disorder

weak radish
regal geyser
#

thing is i also got it so me seeing people talking bout it is quite surprising

#

especially how you even know

white seal
#

It's the most common type of schizo

regal geyser
#

isn't it rare tho?

#

oh what

weak radish
#

Not really that much

regal geyser
#

in here it is rare

weak radish
#

Most people know about it

regal geyser
#

most are just delusional one with hallucinations

white seal
#

Well paranoid schizophrenia is the most common type of schizophrenia almost everywhere

regal geyser
white seal
#

The most common is catatonic schizophrenia

#

Which is like really rare

regal geyser
#

oo

#

which one is that

white seal
#

And sadly it's hardly treatable

regal geyser
#

yeah rip for those who suffer it

white seal
regal geyser
#

oo

white seal
#

Well not really

#

U can still move there is nothing wrong with muscles

#

But ur brain doesn't let u

regal geyser
#

but just their brain?

white seal
#

But that is in the worst cases

regal geyser
#

oh wth that sounds so awful wth

white seal
#

Usually u just have restricted movement

#

The second one is treatable with pills

#

But the first it's I am sure untreated

#

U will prob die in matter of days if u aren't taken care off

#

Cuz u can't have normal human function

#

Like eating drinking and shit

regal geyser
#

dang i ain't even know the type of schizophrenia like this

#

wth 😭

#

rip

white seal
#

Ye I think I am educated on this theme cuz I actually go to the psychiatry often and read the medical books cuz family member works there

regal geyser
#

I think I also need to take pills bro without that thing in given time exp 1 month, my mind dazes to insanity icl

regal geyser
#

just surprised how someone mentioned that name

white seal
#

If unregulated

#

Ur go oopsy melted brain

regal geyser
#

unregulated? like too much dose?

white seal
#

Ye

regal geyser
#

oh ye i only take 10 mg

white seal
#

Cuz it fucks up the dopamine receptors in most of the cases

regal geyser
#

thing is with the pill i get sedated for days but without it my mind will slowly crumble

#

this disease is the worst sh i ever had

#

i don't even know how i got ts

#

prob covid

#

and i never hallucinate

white seal
#

What was your diagnosis

regal geyser
#

paranoid schizo

white seal
#

U don't need to Teel if u ain't conformable

#

Tell*

regal geyser
#

it's like super super serious brain fog

white seal
regal geyser
white seal
regal geyser
#

when I do it messes with how I think logically 😭 fkk

white seal
regal geyser
#

yeah

white seal
#

Usually u take em 1 year

#

They stop them for a awhile

regal geyser
#

I should and must

white seal
#

And if they see u good

regal geyser
#

yeah

white seal
#

They stop then entirely

regal geyser
#

that's what i was told to do

white seal
#

So just take em fully now

regal geyser
#

I will tonight but tommorow im finna be sleepy ash

#

😭

white seal
#

And after a year u prob will stop em and be fine

regal geyser
#

😪

regal geyser
white seal
regal geyser
#

for ur time

#

and all

white seal
#

Dw bro I like talking to people

#

If u want dm when u lonely or wanan talk to someone

#

@regal geyser btw what are u interestes if u wanan talk cuz I have no one to talk with

abstract dagger
#

goat

weak radish
#

Best tycoon or best tycoon?

#

.

umbral carbon
#

best tycoon

weak radish
weak radish
# umbral carbon

100 lines of code for that ui 😭 (I made it so I can infinitely add new settings without adding new scripts for each one)

#

its also not the neatest

#

quite a few lines of code I coulda put in functions but oh well

zealous path
#

Does anyone wanna help me build an anti scam bot

zealous path
marble pelican
#

hey guys

#

does anyone have a map for a mil academy i can buy

marble pelican
twilit garden
#

Whats up with my script, why isnt this hiding roblox inventory UI? game:GetService(“StarterGui”):SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false) / Its on replicatedfist

proud idol
silver verge
distant hinge
#

why doesnt the frame open when i click the button

proud idol
#

essentially core scripts might not be ready on load so

twilit garden
twilit garden
silver verge
silver verge
proud idol
silver verge
#

local Game = game is crazy

weak radish
proud idol
silver verge
#

it's fine yeah

twilit garden
proud idol
#

just replace the resetbuttoncallback with the backpack

zealous path
weak radish
#

Dms

twilit garden
#

Its like 1am here, I dont understand anything could someone please rephrase this: game:GetService(“StarterGui”):SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)

proud idol
# twilit garden Link please?

the dev forum is for disabling reset button but it also works with the backpack coregui https://devforum.roblox.com/t/how-can-i-disable-reset-button/1969975/3

proud idol
#

all you gotta do is swap the resetbuttoncallback to the backpack one

twilit garden
silver verge
#

setcoregui has a race condition with the actual coregui loading

#

read that devforum post

static coral
lime gyro
weak radish
twilit garden
#

---// Roblox Services
local StarterGUI = game:GetService("StarterGui")

---// Deactivates the Reset Button
StarterGUI:SetCore("Enum.CoreGuiType.Backpack", false)
print("SUCCESS | Reset button core GUI disabled!") -- Debugging

#

Will this work?

silver verge
#

if you put it in startergui it should

#

you didn't change anything at all though

weak radish
twilit garden
#

Can anyone please make me functional script that hides roblox inventory, please. ill make it up to you

static coral
proud idol
silver verge
#

startergui loads after coregui

static coral
gray maple
gray maple
#

use pcall

static coral
gray maple
#

sometimes it errors, when it does, you need to do repeat

twilit garden
silver verge
#

in the devforum post

proud idol
#
local StarterGui = game:GetService("StarterGui")
local Success
while true do
    Success, _ = pcall(StarterGui.SetCore, StarterGui, Enum.CoreGuiType.Backpack.Name, false)
    if Success then break else task.wait() end --No need to yield if the operation was successful.
end
static coral
#

👍

proud idol
#

like it doesnt take a rocket scienctist dude

twilit garden
weak radish
proud idol
static coral
twilit garden
#

Ill try SPP

proud idol
twilit garden
#

SPS

#

Nope, both of them wont work for some reason

proud idol
#

can you check output?

twilit garden
#

Cant seem to find anything

proud idol
#
local StarterGui = game:GetService("StarterGui")
local Success
while true do
    Success, _ = pcall(function()
        StarterGUI:SetCore(Enum.CoreGuiType.Backpack, false)
    end)
    if Success then break else task.wait() end --No need to yield if the operation was successful.
end
#

try this @twilit garden

twilit garden
#

Thanks, 1 sec

#

Still same

static coral
twilit garden
# static coral do this ```lua while true do end ```

On what part: local StarterGui = game:GetService("StarterGui")
local Success
while true do
Success, _ = pcall(function()
StarterGUI:SetCore(Enum.CoreGuiType.Backpack, false)
end)
if Success then break else task.wait() end --No need to yield if the operation was successful.
end

static coral
twilit garden
#

while true do end local StarterGui = game:GetService("StarterGui")
local Success
while true do
Success, _ = pcall(function()
StarterGUI:SetCore(Enum.CoreGuiType.Backpack, false)
end)
if Success then break else task.wait() end --No need to yield if the operation was successful.
end

twilit garden
#

while true do end
local StarterGui = game:GetService("StarterGui")
local Success
while true do
Success, _ = pcall(function()
StarterGUI:SetCore(Enum.CoreGuiType.Backpack, false)
end)
if Success then break else task.wait() end --No need to yield if the operation was successful.
end

#

This?

wraith gate
#

i need somone to test my game. dm me if intrested. you just gotta test the lobby for now and tell me if its good and any suggestions

twilit garden
#

MY HARD WORK

proud idol
#

HAHA bro no way

twilit garden
#

MY PRECIOUS

#

NOOOOOOOOOOO

proud idol
#

while true do end crashes studio

#

unless u let it timeout

static coral
proud idol
#

so dont close studio until it unfreezes

static coral
#

💔

twilit garden
proud idol
#

if u wanna keep the files

twilit garden
proud idol
twilit garden
proud idol
twilit garden
proud idol
# twilit garden Thanks🙏 I could screenshare if that helps
local StarterGui = game:GetService("StarterGui")
local Success
while true do
    Success, _ = pcall(function()
        StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack.Name, false)
    end)
    if Success then break else task.wait() end --No need to yield if the operation was successful.
end
proud idol
#

my dumbass forgot that it was the other setcore function

proud idol
twilit garden
proud idol
#

i personally would put it on StarterplayerScripts

twilit garden
#

It doesnt work still, is my studio lagged or how

proud idol
twilit garden
proud idol
#

no need to

#

just send screenshot on how u set up the script

#

on explorer