#code-discussion
1 messages Β· Page 112 of 1
no
If I were to post on scripter hireable anyone know the standard in terms of who provides the UI for the project? Does the scripter who is hired make just template UI so they can code it?
im sole owner and the animation is also made by me
this is some insane cope
if it says the animation is "sanatised" its not owned by u
do you know what jokes are
No, obviously
oh, sorry then
its not cope, its the truth
Why bother develop feelings of happiness when all it does is distract me from my goal
no errors except for a door script but i'll fix it
ts* we dont got all day bucko
on foenem (not my foenem)
Doesn't TS mean This Sh#t?
brah im tryna help u understand and ur saying that i got a banana up my ahh, am i not supposed to answer you?
or something
ts pmo icl bfr with me gng
it does but i like using it as this aswell π₯
okay
this shit piss mo off i cant lie be for real with me gang
must be lupus
on foenem grave π
yes
ur my foenem gng on foenem grave
-# shhh
@silver verge so it's better than normally writing lines of code inside a single function because of organization and readability? And that's it?
?
passing functions as parameters
passing functions to other functions has nothing to do with readability
or organization
bro
you pass them when you need to pass them dawg idk what to tell you
use case could be creating a benching function like
local function to_bench<T>(fn: T): T
assert(type(fn) == "function", "expected function")
return function(...)
local s = os.clock()
fn(...)
print(os.clock() - s)
end
end
local function my_fn(message: string)
print("Loading message...")
task.wait(1)
print(message)
end
local my_fn_benched = to_bench(my_fn)
my_fn_benched("Hello, world!")
another hacker word
benchmark
benchmarking
Ong benchmarks are witchcraft
seeing how long it takes to run
what does "benching function" mean
a function for benchmarking another function
what does that mean
it takes a function and returns a function that mimics the first one except adds a print
ong scripting is witchcraft
the print tells you how long the function took
I open studio and my timbers get shivered
how is that useful dawg
Optimization
bro i open a modulescript and i cower and cry in the corner
you should be using the microprofiler for benchmarking
im just showing you a basic example of how passing functions as arguments can work
twin WATCH a basic scripting tutorial...
they teach u connections
hooks is another word for connections
i already mentioned the bind functions and connections, idk what other examples you need
its not for readabiltiy its just a part of programming
who
i used to watch alvinblox or thedevking
but only the old alvinblox vids
bro i'm 1 shedletsky away from becoming racist
g-g-gulp....
why cant i send gifs...
ts PMO.
those dudes do not teach a single useful shit
if you think that then that's why you're not learning
i don't use youtube for learning anymore but i know it's good for a lot of people
gang I actually understand everything except the typescript at the top but I'll get on your level soon
"what is benchmarking" "what is a hook" "passing functions is for readability"
trust me I have watched the series of both of them
They were good in 2021
but it's 2025
um what typescript
a language
the fundamentals are still there
thed*vking is objectively shit
for things like networking
ye don't watch shitters
imo docs are all you need
they have plenty of good guides
he talked so fast
how are docs better you don't even know what to learn next
twin if youtubers and the docs dont help u
and u dont wanna use free models to learn
then just pay for one of those shitty courses
just learn how code runs and learn some computer architecture and some algorithms and you are good to go with almost any language
I will use my 164 iq brain and surpass every one of you soon
i'm learning every day
YES TWIN...
the docs are better because theyre written by the people who work on the engine itself? π
intro to scripting is what i send everyone who asks where to start
i find it difficult to learn from them
ass reading comprehension moment
popcorn reading is my worst enemy
st*pid
j*b
These newgens need to learn their place
π₯±
what powers do you have
how much time of experience do you have
~4 years
what can you do
do you have a portfolio
not as of now since i'm not for hire
like what
been working on two games, one on roblox and one in react native
elaborate
what can you do in backend development
do you know what backend development is
coding things that are not visible to the client
Do you program to a level of a programmer
I know how to do every skill of deving at a decent level and Iβm highly proficient in both modeling and scripting
I can understand stuff that would take u years to learn
show me your modeling powers
Check images from me in modeling chat
is this a challenge to my god brain
Do yall have some coding gifs memes for me?
kid u canβt even use metatables and u think ur allat
Can I ask for some help since mfs in #code-help dont wanna help me
hn βοΈ
m*tatables mentioned π₯π₯π₯π
you have an anime avatar on roblox dawg
what is ts
Yuurp
"a female" π₯ π₯ π
Please..
I know what table.__index = table does
kaminari dev - bro does not have the lightning quirk π
What it do then
doesnt .__index assign a spot in the global index or something with that tablename so it can be reached from more places- IDFK IM NEW TO SCRIPTING WHARRADO π
i literally came here to ask for help π
dont worry about m*tatables you most likely wont ever need them
simulate oop in roblox studio
show your drawings then
let us see
what do m*tatables even do
bro is flexing his modeling powers with low poly and saying it's gonna take me years to get on his level π if only he'd know what I'm capable of
they can be used to assign custom behaviour to regular tables such as βoverloadingβ operators but certain blasphemists use it for pseudo OOP
if only you'd provide proof of what ur capable of </3
oop?
anyone can model high poly, it takes real skill to be conservative with your geometry and still make nice stuff.
object oriented programming
can you explain like im 5 π
just ask google or youtube
fair point
its not that deep
OOP isnt really 1 specific thing, its just a method of organizing your code.
if you know what a dictionary is, OOP is mostly that, but youre putting functions inside the dictionary.
its not necessary for making any kind of game though
its just basically making blueprints and then making instances that inherit the properties and methods of the blueprint
its just a method of organizing stuff thats somewhat intuitive
Pls
but it doesnt actually exist in roblox scripting
on another note
can someone help me figure out why my npc isn't moving? i can hop in vc and screenshare if its easier
some of the code is hardcoded/different bc i was testing it
im sorry if ts is insanely obvious π
local Enemy = script.Parent
local Radius = 20
local Position = Enemy.HumanoidRootPart.Position
local createRange = workspace:GetPartBoundsInRadius(Position, Radius)
local target = nil
local TowersInRange = {}
local mindistance = math.huge
local distance = {}
local pathfindingservice = game:GetService("PathfindingService")
for i, v in pairs(createRange) do
if v.Parent.Name == "Tower" and not TowersInRange[v.Parent.Name] and v.Parent.Name ~= Enemy then
TowersInRange[v.Parent.Name] = true
end
end
if TowersInRange == nil then
target = workspace.BASE
else
for i, v in pairs(TowersInRange) do
distance[v.Name] = (v.Position - Enemy.Position).Magnitude
end
for name, distance in pairs(distance) do
if distance < mindistance then
mindistance = distance
target = name
target = workspace:FindFirstChild(target)
end
end
end
local path = pathfindingservice:CreatePath()
path:ComputeAsync(Position,workspace.BASE.Position )
for _, waypoint in pairs(path:GetWaypoints()) do
Enemy.Humanoid:MoveTo(waypoint.Position)
Enemy.Humanoid.MoveToFinished:Wait()
end
i see
im not reading all that, but to start, add prints to see where your code stops running. doing that will illuminate 99% of bugs
bro is struggling on artificial intelligence
it's 2025
when did he start learning?
thank you sm
uh about like 2-3 days ago
all my prints ran, my npc just refuses to move π
Make sure itβs not anchored
its weird then, that he shamed you for not already knowing how to make pathfinding
bruh imagine
istg if thats my issue
its a rig, it doesnt have anchored property
primary part
or any other parts in it
it really takes skill to put base meshes together for sure
models dont have an anchored property because models are just groups of instances
o
Select all the parts in the model then set their anchored property to false
low poly is hard to do well because its really easy to make actual dogshit
uh won't the whole avatar rip apart like that
Not if you weld it together
rigs are held together by joints
you don't use welds for a character
yeah dude I was thinking just about that
i did that, it still doesn't move
ts so weird wth
Have you checked the console for any errors
yeah
theres errors, but its not relevant to this code
its some script idk where its coming from
and idk how to get rid ofit
bc i delete the script and it comes back
You should be able to click on the error and it will take you to what caused it
its scripts in textchat service and serverscript service, its telling it to require an id that doesnt exist
Is the dev forum down??
and comes back even if i delete the szcripts π
bad gateway 2 different links
I donβt know why ur npc isnβt moving but if you ask chat GPT it is usually quite helpful
o
got it
thank you sm
Make sure to say your coding in roblox studio
.
did u try asking chat gpt since this is dead
no i didnt
youre making a request to a url that doesnt exist
read the error
404 not found
get out
Nagi is buns
I always knew reo was better
Should I always use meta tables when doing Object oriented programming
yo.
Ye
look up "bl manga" now
Ik he gets recruited for the bum team
no you have to look it up on google images
"bl manga"
"bl manga" copy and paste this into google dot com
I donβt trust u π
you love bl right
Ts is def bait
say you love bl
never
no balls buddy
Hi
yea look up bl manga.
yes
I did read new chapter
is that the donaldo mcdonaldo guy
just search bl manga
At least he is not Pessi
there's a new chapter bro
look up bl manga and go to images you ll see 309
u have to spell it like this bl manga
What in the fuck
Did u look it up
you should look it up too
HELL NAH ππ
Yes
XD
i don't know why that other dude was talking about boy love or something
I thought bl means blue lock
it does
My day is ruined
Iβm so glad I didnβt look it up
Hey fellas!
I'm now searching for meaningful project concepts to include in my portfolio.
Please note that I will not tolerate suggestions that are: intentionally provocative, frivolous, low-effort, AI-generated, identity-based (e.g. LGBTQ+), offensive, explicit, too random, unoriginal, or illegal.
bro did research π
Look up bl manga and itβll give u ideas
Tf
I didn't brave ai thing showed me what it called when I searched bl manga
I do not accept your unmeaningful suggestion.
What about mine π₯Ί
I don't even understand what you saying
We go way back purpul I would never bait u
That is your problem sir
Sorry sir ποΈποΈ
yo guys, can someone give me a idea/challenge that i can try to do so i can improve at scripting
make a game were you move in a straight line completing challenges, and once u reach the end u get a badge and are teleported to a new stage
an obby?
ig but just try and use challenges that arent always just in obbie
okay
yo i need a challenge too. I need something harder than making a tycoon or obby
Make mini games. Like 8 of them
ok what minigames
Ask ChatGPT for ideas.
ok
Or take inspiration from other minigames like epic minigames
wana help
Learning how to code
why the fuck does sometimes the humanoid.autorotate property load and other times it doesnt π€£ im going insane
use wait for child
I do bro
but like humanoid is there
it says I'm trying to index nil with the property
show me the code
local player = players.LocalPlayer
local playerUI = player.PlayerGui
local character
player.CharacterAdded:Connect(function()
character = player.Character
humanoid = character:WaitForChild("Humanoid")
if not humanoid then
warn("No humanoid")
humanoid = character:FindFirstChild("Humanoid")
task.wait()
end
end)
humanoid.AutoRotate = true```
show me the error
@slender yew try this local player = game.Players.LocalPlayer
local playerUI = player.PlayerGui
local character
local humanoid
player.CharacterAdded:Connect(function()
character = player.Character
humanoid = character:WaitForChild("Humanoid")
-- Now humanoid should be guaranteed to exist
if humanoid then
humanoid.AutoRotate = true
else
warn("No humanoid found")
end
end)
dawg
I told u that humanoid exists
its the property that didnt load
its mad weird
gng just try it
humanoid is set inside the CharacterAdded event: This means humanoid.AutoRotate = true will run before the humanoid is set, leading to a possible nil value error
lmk if it works
thing is
it only errors sometimes
I added a wait for child
yeah it could load before
u should try using spawn or delay
delay would prob workout best
or even defer so it runs last tbh
thing is I have the humanoid.autorotate inside of a function
so I need it to run when the function runs
never sooner or later
did u try the code i sent u
yeah
do that with a wait for child and run it a few times
alr
if i start learning how to script today how long will it take me to learn how to make one of those rainbow balls that roll around and change color when you touch them
like roll around in circles or randomly
randomly
so can even fall off the map right
like it would be unanchored nothing fancy and you can push it around
Hmm
i meant the color changing part when touched mostly
lmfao like a day ?
its so easy
Players.Natheus_s.PlayerScripts.Modules_Client.MODULES.DialogueModule:140: attempt to index nil with 'AutoRotate'
I think I can help you
if u want it stick to ur head just learn other stuff and its gonna be stuck in ur head so u can make it any time after learning for like 1-3 days
maybe u messed up and end sequences or ur pc/internet is just messing up
wdym end sequences?
literally in the name
it cant find the player model
I have an entire function
cause I was getting outdated plr.character variables at first
like when I reset
yeah its not loading properly
the code was breaking
its either ur internet or studio is just bugging
how do I know which
send me ur code again
is it like doing errors from time to time or always
dms
if active then
humanoid.AutoRotate = false
currentCamera.CFrame = part.CFrame
currentCamera.CameraType = Enum.CameraType.Scriptable
currentCamera.FieldOfView = sceneFOV
for _, v in pairs(player.Character:GetDescendants()) do
if v:IsA("BasePart") or v:IsA("MeshPart") and v.Name ~= "HumanoidRootPart" then
v.LocalTransparencyModifier = 0
end
end
else
currentCamera.FieldOfView = 70
currentCamera.CameraType = Enum.CameraType.Custom
currentCamera.CFrame = player.Character:FindFirstChild("HumanoidRootPart").CFrame
humanoid.AutoRotate = true
end
end```
here I adjust the players camera ^^^
```local player = players.LocalPlayer
local playerUI = player.PlayerGui
local character
player.CharacterAdded:Connect(function()
character = player.Character
humanoid = character:WaitForChild("Humanoid")
if not humanoid.AutoRotate then
warn("No humanoid property")
humanoid = character:WaitForChild("Humanoid")
task.wait()
end
end)```
here I define variables for player instances ^^^
which one has errors and is it always or from time to time
time to time
has to be ur internet
the one where I modify the property
so I should js disregard it?
I mean ig I'll truly find out during bug testing
do u notice urself loading in a bit slower when that errors happens
bro
idk, the error happends when I interact w the UI
why are there NO new posts in scripter hiring
21:48:45.805 Stack Begin - Studio
21:48:45.805 Script 'Players.Natheus_s.PlayerScripts.Modules_Client.MODULES.DialogueModule', Line 138 - function AdjustCamera - Studio - DialogueModule:138
21:48:45.805 Script 'Players.Natheus_s.PlayerScripts.Modules_Client.MODULES.HomelessMan', Line 40 - Studio - HomelessMan:40
21:48:45.806 Stack End - Studio```
nope
eat banana
I think its good now, basically I just get the entire variable from the beginning
I think coding is really intresting cause what.
it depends how you learn, some do tutorials some read forums
personally learnt the basics via tutorial
how the fuck does this happen from these two lines of code??
char.PrimaryPart.Orientation = Vector3.new(90,100,30)```
then just start
anchor them
Nah
what would that change
from who?
I kept my hair π₯Ή
wtf
since when is the primary part of a model the head
the fuck?
Since you set it to that? Idk
I dont remember doing ts
Then change primary part to hrp via the script
js checked find all and I have not done that
but ye I was gonna do that
Wild
ikr
What u making?
Yeaa lemme see π
No i dont
alright what the FUCK JUST HAPPEND YO
Im employed so im pretty busy
I CAN WALK NORMALLY BRO
Orientation line?
nah no way
No your not or you wouldn't be in this chat saying that over and over
Chill im just employed chill guy
bet check dms
Wtf did you do?
im jk its prolly the orientation line π
you wont believe this
r6 primary parts have always been heads
I was about to make a bug report because the primary part is set to the Head instead of the HRP. Happens in studio & online and only with R6. I then found the same report made by someone a few years prior. I always assumed the root part was the primary part, and so Iβve always used the PrimaryPart property to get the HRP. So what Iβm real...
not a single original thought.
What???
check the thread dawg
same
yo does anyone know wherer i can find a custom animation script for a custom rig??
Yea, you make it
chatgpt/gemini, be sure to ask it to use the "animator" object or an animation controller or something UNLESS you want it to be a humanoid Roblox rig
if its any other kind of rig i think youre meant to use the Animation Controller
Guys what would be best way to make first person view like in that card game like Twenty One for example, where i fully control the head movement by mouse
Guys what should I do, I got no coding experience should I go straight to luau or learn something easy and then transition to luau
so ive been trying to code a door for an hour and a half and struggled, is it possible that anyone here could help me out?
Hey is there any devs here that wanna help me make a game? I know how to build and model but I need a scripter and vfx maker
yes
anyone willing to coach me scripting for 13 robux
you can just use datastores ervice
why does bro have a spoiler
guys what plugin do i add to add admin commands and stuff like for example the one jandel uses to spawn weather and stuff
It does not matter really, choose one which you feel more comfortable with
Idk maybe #1278154978598326406
idk which one its in ngl
If a free one without admin commands doesnt work or a tutorial on youtube then youll either have ti make it or someone else makes it for you
Idk who jandel is but it sounds like he scripted it himself
Adonis
i need help π, it doesn't fire event properly.
In toolbox
ty
See if clicking the button prints out anything
dude i was ignored in code help 6 times now, how does blue lock rivals and azure latch do theyre ball physics and idk where to start
But you still need to like fill you user in the script and staff groups if you want to do that
oh okay
wdym
how long would it take to fully learn programming with lau or whatever itβs called
put my id?
oo it doesn't print out anything
oh its a text button not a image buttonπ€¦ββοΈ
In the adonis script you have ranks and you have to put yourself in on a rank
mb
Haha everyone makes little mistakes have a good day
Depends on how much work youβre putting on
Itβs a weird question
And itβs βLuaβ
ty mate π
If you run this code alot or every round make sure you disconnect all connections, if there are more than one textbuttons then store the connections inside a table
Np
how so?
hmmmmm ok
wdym by disconnect all connections
is this it?
Just do as best as you can and youβll progress
so all i have to do is put myself in the script right

or
:Connect <- this you can disconnect it. If you connect something twice or dont disconnect something before you reconnect it again you will see a problem where the button will execute two times instead of one or even more
Just open the script it will say where you have to put your user or group id
oh
how do i do that
Like this
You can do as many users as you want
fair
Connection= Robloxpart.Touched:connect(bla)
When u want to disconnect it Connection:Disconnect()
Im not really sure but you only have to do this if you need to connect it again with a different value, you disconnect the connection if it exists first and then connect it again
Scroll
ohhhh i got u
Try a other Adonis choose the one with the most uses they all have the same name so yea
cuz i got mine in a function, so at the end of the function imma do
local connection = VoteEvent.OnServerEvent:Connect(function(plr, buttonName)
print(plr.Name)
if PlayerVotes[plr.UserId] then
return
end
-- save the player votes
PlayerVotes[plr.UserId] = buttonName
votes[buttonName] = votes[buttonName] + 1
print(plr.name .. " voted for: " .. buttonName)
end)
-- at the end
connection:disonnect()
okay so basically what youre doing here
okay
Is youre saying if this remote event gets a signal then do that,
And then right after that you are saying that you no longer need this connection
Usually you dont need to do this only if you need to change the code or values
yes
Good work
But if you do this
It probably wont work idk im too tired to explain it to you
Just test it out, you'll understand it sooner or later
Iβve been scripting for about 2 weeks and a half and Iβm still lost as in I canβt make anything on my own and donβt know how to put code together even tho I know most syntax any suggestions please Iβm desperate ππ
its alright, i was in the same boat π just keep scripting
everyone basically was
can you guys give me something to script
Make a chess game
Glad to hear im not alone thanks
dawg
no cap when I started aint even know what functions r
Whose tutorials are you following
ok
Gl
ok
ok
do you think scripter should be good at designing?
what is designing
Making ui's pretty or buildings that require scripting pretty
You should to some degree yes
not who i asked
the timer works but it just doesnt update the value
Can you print intermissiontext.textlabel for me
okay so it does exist
yeah, it does exist, it even shows up on my screen and if i change something in the text, it does change, its just that the i value doesnt change
i tried, still doesn't work
Iβve really just followed a bunch of one around yt
tried this aswell, it doesnt work
can you print out i
you are updating the label in startergui, startergui is a container that gets cloned into player gui when the character respawns, you aren't actually updating the guis of each player as they are alive
ohhhhhhhhhhhhhhhhhhhhh
trueeeee
π€¦ββοΈ
It needs to be game.Players.PlayerGui....
Or if the script is inside the gui js do script.parent
yes sir
Honestly I dont really know how far you are but if i can be any help to your problems and im free ill try to rrspond to you
nah its a sever script
Server...
I know about module scripts everything up to that
My main issue is that letβs say I want to make something I look up how to make it and donβt understand a thing itβs telling me so I give up π
Yeah well thats not what ur supposed to do
Its simple
You never give up
But thats just a saying from someone who has never given up
If u need any help lmk in dms
If i can be any help ill help but im not gonna do ur work
Well like I give up because I donβt find any solutions
just ask chatgpt to explain it for you
Real chatgpt also saves me alot
He's implying that chat gpt couldnt fix his problem
Even tho chat got explains it I still donβt understand it
And on the rare occasion, I do understand it I forget it in the next 10 minutes
then say that you don't understand it to chatgpt
you know what genuinely pisses me off
you know how in other languages u can like
lets say c++
and don't delete your chats and you can read them later so you don't forget it in 10 minutes
Then thereβs also sometime gpt is wrong
Because luau is not c+++'s son
What does the error day
i want it all in 1 line
say
smth like add string and int
because the string concatenation operator is .. not +
ohhh
Just use βfinal number is β .. myvar
You can also use ,
let me try
ok it worked thanks
chat rate my shit (i started today)
for myCounter = 1, 5, 1 do
myVar = myVar + 1
print(myVar)
wait(1)
end
print("First loop done")
local myVar = 1
wait(1)
print("Starting second loop")
wait(1)
for myCounter = 5, 1, -1 do
myVar = myVar *3
print(myVar)
wait(1)
end
print("Second loop done")
local myVar = 1
wait(1)
local myWhileCounter = 1
print("Starting third loop")
wait(1)
while myWhileCounter <= 5 do
myVar = myVar * 2
print(myVar)
myWhileCounter = myWhileCounter + 1
wait(1)
end
print("Third loop done")
local myVar = 1
wait(1)
print("Starting last loop which is a nested loop")
wait(1)
myVar = 1
for myCounter = 1, 5, 1 do
myVar = myVar + 10
print(myVar)
wait(0.75)
for myCounter2 = 0, 1, 1 do
myVar = myVar - 4
print (myVar)
wait(0.75)
end
end
print("Loop ended")
print("Final number is " , myVar)
myVar = myVar * 100
-- or
print("Second final number is " .. myVar)
10/10 code right there i can smell it
Nah i just type insanely fast
ok rate my code tho
Looks clean, you might wanna add some comments
i mean yeah but its ok i understand ts im studying ICS lol
Dunno what that is
informatics and computer science
Oh thatβs why ur so good first try huh
If you want it to look even cleaner you might want to put all these into a function
i mean i do c++ in uni i also did java
icl twin im just watching a yt playlist and doing stuff so yeah
Do you use OOP?
i just finished my first year of uni so im not that experienced
I'm also a new learner
Oh
You're doing really well on your first day I must say
i tried to learn lua before but i never rly stuck to it so i forgot everything
that was like last year so
Ohh yeah, they say that if you've learned something before that its easier to learn it again (in case youve forgotten it)
Man yall make me want to get out of my bed and code
More
Lol
whats the difference between wait and task.wait
One is just more accurate using a different method
you could say that wait is outdated
does it matter
so basically wait is same as task.wait but its better to use task.wait
Yes
Wait is deprecated
It is I think
So It could have problems
so people prefer task.wait
Thatβs why itβs not wise to use it
Yes
You can also use heartbeat or render if you really need accuraxy in time
I prefer wait but someone forced me to use task.wait
try to turn standard into 3 letters
that word is the same word used for uh, not so nice things
Oh
yeah
You wonβt be banned if the game isnβt published
Or u talking about in discord
who wants to see some c++ code
here
ughh c++ hell nah
#include <iostream>
#include <string>
using namespace std;
struct Employee {
int ID;
string name;
double salary;
double performance;
};
void getEmployeeInfo(Employee& emp) {
cout << "Enter employee ID: ";
while (!(cin >> emp.ID)) {
cout << "Invalid input. Please enter a numeric employee ID: ";
cin.clear();
cin.ignore(10000, '\n');
}
cin.ignore();
cout << "Enter employee name: ";
getline(cin, emp.name);
cout << "Enter employee salary: ";
while (!(cin >> emp.salary)) {
cout << "Invalid input. Please enter a numeric salary: ";
cin.clear();
cin.ignore(10000, '\n');
}
cout << "Enter employee performance (0-100): ";
while (!(cin >> emp.performance) || emp.performance < 0 || emp.performance > 100) {
cout << "Invalid input. Please enter a performance score between 0 and 100: ";
cin.clear();
cin.ignore(10000, '\n');
}
}
void incrementSalary(Employee& emp) {
if (emp.performance >= 80) {
emp.salary += emp.salary * 0.20;
}
}
void printEmployeeInfo(const Employee& emp) {
cout << "Employee ID: " << emp.ID << endl;
cout << "Employee Name: " << emp.name << endl;
cout << "Employee Salary: " << emp.salary << endl;
cout << "Employee Performance: " << emp.performance << endl;
}
int main() {
const int numEmployees = 3;
Employee employees[numEmployees];
for (int i = 0; i < numEmployees; i++) {
cout << "\nEnter details for Employee " << i + 1 << ":" << endl;
getEmployeeInfo(employees[i]);
}
for (int i = 0; i < numEmployees; i++) {
incrementSalary(employees[i]);
}
cout << "\nEmployee data after salary increase:\n" << endl;
for (int i = 0; i < numEmployees; i++) {
printEmployeeInfo(employees[i]);
cout << "--------------------------" << endl;
}
return 0;
}
Smells nice
Who cares
are there arrays in luau
Yes
3d arrays?
wait lemme update my roblox user
i got a cool programming related username now one sec
kk
but server is lame and dont show roblox usernames
whats funny
U can change ur name
i cant
Declarationerror
this the type of shit im talking about enough to make me wanna close studio rn
The bot should allow it
how is it funny
It made me feel a certain way inside me that said its funny
Idk man i think his arm is disclocated
there we go
bro roblox stuido animator is hot dog shit
Thats fine
π
Bruh who allowed this into robloc π
wym nothing wrong with my avatar
You need to read the terms of service then
what do u wanna animate?
elaborate
do you have hair in
are u referencing the little kid????
I animated a jump air spin motion and I was gonna use a different animation for the throw because the player throws a lance and it did that
you arent allowed to upload anything that identifies anyone in any sort of way
finish what he says
nope
Do you know how many times I got banned for that reason π
identity crisisπ
Rip
fr π
i have had the name "veko" for 5 years now
U shouldnt be proud of ur current name in my opinion
it's a name wdym
Yeah but youre referencing it to something degenerate
i see
how am i refrencing it to something degenerate
Im not gonna explain it bro u wont get it
how to give yourself a seizure in studio tutorial script
for myCounter = 1, 100, 1 do
baseplate.BrickColor = BrickColor.Random()
task.wait(0.05)
end```
Just play with lighting and set the exposure to 0 to 100 each loop
Lol
true
guys like you won't get far in life always saying sombody is doing something bad and then avoiding the question on what is bad
The entire screen will turn white
thats literally what i posted
this what i ment this give more of the effect
baseplate.BrickColor = BrickColor.Random()
baseplate.Material = Enum.Material.Neon
task.wait(0.05)
end```
Make sure you have values set inside, i think you can do random( 0, #baseplate.BrickColor)
Probably not
baseplate.BrickColor = BrickColor.Random()
baseplate.Material = Enum.Material.Neon
task.wait(0)
end```
even better
can i ask an question?
yes?
if i want an dev to help me making roblox game this dev will take money?
huh
wdym by "take money" exactly?
Yes, developers cant work for free unless its your friend
They need bills to pay
Chill π
yes they are giving you their freedom and up to years of experience it's extremly rare to have someone work for free and there is never a permament person that works for free
need a lil help ngl
okay
Is the problem that the shop dissappears? When the player is standing inside
no like i dont wnat it to show when im in mean menu
do you have anything to know when your in the main menu like a boolvalue or global?
yeha it says play setting n stuff
hey does anyone have a work around for my leaderstat hitting the max number (9223372036854776000)
just add this to your localscript
local RunService = game:GetService("RunService")
RunService.RenderStepped:Connect(function()
path_to_screengui.Enabled = a_condition_that_is_true_while_main_menu_is_active
end)
yuh
use letters
i did
Smart
Convert it to a string
alr ty
i have it like that it still maxes out
how
is this a display issue?
nope
maybe Im not meant for this chat nvm π
still shows
well shows and error
your good man i have some ideas anyway just wanted someone elses input
show me your error
You need to change the path
...
Let me handle this
ok so Path_to_screengui needs to be ur ui location
so rename it to that
try switching them to strings?
To your path
alr
the problem is that there is a limit to the value a number variable can hold I believe
its in every programming language
π
LOL
Help me out furry
bro im slow ash bear wit me
try making it a string and the limit will disappear
good idea but that gets complex fast and I am not that experienced
Just do tonumber when adding up and tostring when adding it back @limber vector
ok
You sure that will work?
o
yea
lemme try
its not in a variable
It just converts the string to a number
yuh
im out i can't im just trying to not laugh rnπ
alr one min
as long as you dont store it in a variable you should be good
Ill only help if you let me in ur studio

Ggs
I show how to enable team create on roblox studio and how to turn on team create on roblox studio in this video. For more videos like this roblox studio team create guide then please leave a like.
GuideRealm is the home of technology-based how-to's, guides & tips.
Please like, subscribe, and comment.
GuideRealm
see man im smart
dang
I'm proud of you
alr hollon leme go watch this
TheOneAndOnlyReza
insane
Ikr
ad dme back
One sec
ok it kinda works but my chance to commit homicide just went up a lot
Accepted
it screws up a lot of my old sytems but i should work thxs guys
kk
U want the ui to dissappear if the main ui is open right
yes
Oki
idk why im doign this man in a builder not no scripter but i gotta learn 
in screengui 
Not that one
oh
mine better
It should work now
do they work offline tho
Just a question tho, the menu appears only once yes?
it not make me open shop :broken'
wym
Hold on i think its cuz u named it wrong
Dw
char:PivotTo(CFrame_new(vector_create(ctx.posX,ctx.posY,ctx.posZ)))
how to make this faster
now time to go figure out how to make a leaderboard
bc im big pro
time to do this for another 7 hours or more π
did u completely overwrite the script? π
I see no script checking for the remote event to say open to screengui
Rip
can 25k robux get me a dev team
?
what r u trying to achieve
So many things are messed up
25k would get you a good dev like me for max 2 months
"like me" π π₯
insane btw
Right now im js tryna make it work with a debounce
25k would get me.... don't compare
but yeah it prolly can
u gotta be working like a good boy for 14 hours stright
itll get you basically enough to make a game
liek scripter animator etc?
yeah rpolyl you can find people in hiring channels
oh shi bet
i mean depends on the scope of ur game
bad ones
like dont be out here making destiny
But realistically speaking u need to calculate if person is inside box with coordinates
but yeah
bruh
nah i got a pretty cracked vfx artist for 80 bucks
im the main dev behind 2 games with Millions of visits
name
guys amazing id buy from him again if i had a reason to
@karmic pasture
i have 80k robux and is still not enough to pay all devs(and i do half of the roles)
buy me for building
im advertising for you gng
u would 
nah
alr thats your issue vro

80k robux is more than enough
No lol
your game probably is easy to make
how much are your commisons
80k is not even 300 dollars
well im solo and i hire a couple freelancers