#code-discussion
1 messages · Page 266 of 1
how do I use instance.new
Protip
You won't learn shit by copy-pasting code from chatgpt, I hope that helps
I mean I was alr aware of that
And if you forget your scripts' logic your naming sucks ig
Is using bindable function the same as Modul scripts ?
Good code is read like a book
Yea I’m still new so long way to go
Not even close
Can u explain ik what bindabels do but not Moduls
Long story short they don't have anything in common lol
Ugh that don’t rlly helps aren’t they both to make your scripts more organized?
Well, that's the only thing in common
hey is anyone will to work for free dm ill tell u more
Well if you open your f eyes and read the message just 2 messages above...
mb mb
bindable events are entirely replaceable by module scripts
that said yes module scripts keep your code organized among many other things
you can think of module scripts like instances that hold arbitrary lua variables
including functions and tables
I have a question about Object Oriented Programming. Is the requirement for something to be considered a use of it just using a module script to make functions?
nope a module with only functions is essentially a singleton which is just one type of object
Okay, what would be considered a use of OOP then?
actually constructing and mutating stateful objects and passing them around and optionally inheritance and polymorphism
does memorystoreservice act as a datastore as well?
Don't use Bindables
Use custom signals instead
So if I were to make a "Service" with a module script(As an example, a service for hitboxes), would that be considered use of it?
it entirely depends on the implementation
nothing of what you said really forces it to be oop or anything else, and its not really a prime candidate for oop either (just from context)
how to make a system where when the player joins all the players who he cant talk with will have a tag over their head?
Also(Final question), what would be Stateful objects, mutation, inheritance and Polymorphism?
I think there's something to check and implement that in the Chat Service, but I would have to check the documents to be 100% sure.
oh
can someone explain why my script isnt working
?
my skip stage was working earlier but idk what i did cause now its buggy
Can you show the script?
it adds a leader stat to the stage but doesnt tp me to the next lvl
local productId = 3537936219
local player = game.Players.LocalPlayer
script.Parent.MouseButton1Click:connect(function()
game:GetService("MarketplaceService"):PromptProductPurchase(player, productId)
end) -- this is the ui
server script local stat = "Stage" -- Stat name
local award = 1 -- Amount to add
local MarketplaceService = game:GetService("MarketplaceService")
local Players = game:GetService("Players")
MarketplaceService.ProcessReceipt = function(receiptInfo)
local player = Players:GetPlayerByUserId(receiptInfo.PlayerId)
if not player then
return Enum.ProductPurchaseDecision.NotProcessedYet
end
if player:FindFirstChild("leaderstats") then
local statObject = player.leaderstats:FindFirstChild(stat)
if statObject then
statObject.Value += award
end
end
return Enum.ProductPurchaseDecision.PurchaseGranted
end
- a stateful object is anything that can remember what it is and perform actions based on that, commonly in lua oop this is just a table, such as dog={name="woof"}
- mutation is changing the properties of something, in this case the ability to write dog.name = "bark" and then all references to the same dog will know about the new name, and the dog itself also does
- inheritance and polymorphism are general oop concepts (not roblox specific) that you should just look up online cause it would take too long to explain
Anyone know how to save the studio file on MacBook?
I don't know much about MarketplaceService, so I'm not sure if the problem's there. Besides that, in your game, which I presume is an obby, does the player get teleported to a stage based on the leaderstat?
file -> save to file as?
it's a obby but the player is supposed to get tped one stage up but it only adds 1 to the leaderstat
called "download local copy" if its team create
Where’s file at?
top left
It’s not in the top left like it normally is…
do ctrl alt p
Try debugging: print(statObject.Value)
there isn’t a alt…
no shot
it’s a MacBook bro
how do you save bro
If you go fullscreen then take your mouse up, there should be something that says File
It shows me the name of the studio
When I go up
let me screenshot(I'm on a 2017 mac air)
okay lol
do u have an f11 key
yes
press that
wtf are macbooks bruh
Hold function then press f11
my pc is broke
Nothing is popping up omfg
Does this pop up
click file?
You're welcome!
wtf is that bruh that cant be practical
i noticed the stages will have you spawn on the stage you skipped to only when you reset
?
idk who to blame apple or roblox but that looks stupid
Then make a function that reloads a player's character then call it when they buy?
All applications look like this on mac
what does whatever you use look like?
i dont use mac
what do you use then?
in fullscreen?
ive never fullscreened studio in my life i dont even know if it exists
task bar is too important
On mac it only appears when you take your mouse up or you make the screen smaller
like this or the previous example
Does it work now?
But the "dog" table doesn't follow your definition
How can it "perform actions" if it has no methods?
it can perform actions i never said that it does
back i havent fixed it idk what to do
There's no method 😭 what can it perform?
does oop imply that every single class you make needs to have methods
or does oop imply the ability to create classes with methods
You were defining stateful object
does stateful object imply that every object you make needs to have methods
or does stateful object imply that some objects may have methods that read the state of the object ("this")
dumb fuck
Woah
What did you mean by performing actions if not methods?
just know that ur stupid and im right and all the answers to ur questions are already in my original message
just ask chatgpt if you need more advice
Do you mean that you can't make a way to reload a players's character?
If so, I can make one for you or you can search one up.
yeah when they skip stage they should telport
i can add you to the game so you can see it for your self
Why not just get the current spawn point(Assuming there is), then teleport the player's character to it?
well
idk what do
cause it was fine before
but i did notice the stats name is highlighted
Before what?
like 7 hours ago
i dont know what happened
ill compare the og files
Did you add the game pass requirement 7 hours ago?
wait the og file isnt working anymore
oh my god bruh
Wait let me review the script again
So in your script that you're debugging currently, the character is moved to the stage if they reset, right?
yeah
and i need them to tp
ok then get the current spawn point's CFrame, then set the Character's CFrame to that += Vector3.new(0,1,0)
Tbh I’m still new I only started this week so idk rlly know much of the stuff yet i always had problems cause they was so unorganized and they broke so much and i just found out abt bindabels function so yea
how much do you guys think it'll cost to hire a long term scripter for a simulator game?
2 robux
if its me
can anyone help mwein coding or my game
yare yare
Larp
local function addition(number1, number2)
print("starting addition")
print("working...")
wait(2)
local result = number1 + number2
print("The result is: " .. result)
return result
end
addition(25, 10)
addition(67, 41)
guys im trying to learn how to code and i think most of these things are useless to learn, what are useful things that i can learn for making a game?
nah functions are the goat and very useful you need them
do you recomend any videos to watch, or websites to look at to learn faster, or more advanced topics, i wanna make a rpg game
do NOT start with an rpg game
I recommend asking chatgpt, reading docs and experimenting in studio. dont watch tutorials unless it's a specific advanced topic
tutorial thing is up to preference
if you learn easier by following tutorials then its not a bad idea
how od i reference a player in studio? i wanna make a kill part script
local Player = game.Workspace.LocalPlayer
local KillPart = script.Parent
local function KillPlayer()
local Player = KillPart.Parent
Player:TakeDamage(100)
end
KillPart.Touched:Connect(KillPlayer)
by myself
i think code assist messed me up
wait
im gonna remake it
when learning apis like touch you gotta know what it does first so either ask ai what it returns or just read the docs
touched returns what touches it so you gotta check if that thing is inside the player model or not
What are the best scripting tutorials? Like i can do some basic scripting, but when ever i look at any other remotely big developer I cant even remotely understand their scripts
LocalPlayer does not exist on the server, nor is that how you'd get it anyway
the Touched event sends a Part argument to the function it calls, which if it's a player, will be a part under the player's character. you can then use the part's parent to FindFirstChild for a humanoid, and if that exists, use takedamage on it
local killPart = script.Parent
local function onTouch(otherPart)
local character = otherPart.Parent
local humanoid = character:FindFirstChild("Humanoid")
if humanoid then
humanoid.Health = 0
end
end
killPart.Touched:Connect(onTouch)
would this be fine, i generated it with ai, but i dont understand what "otherpart" means, is it the part argument that gets sent to the function?
yes
you should get ai to explain the code to you if youre gonna generate code with it
It returns the part it touched
youll get nowhere by copy pasting things you dont understand
so if i add a print that says print "otherpart" will it print the part that was sent to the function?
yes
and yes i did ask it to explain it, it just didnt explain that it returned it to the funciton
Is OOP very important in roblox scripting?
it's not VERY important, but its definitely useful to know
you could do everything its useful for without it, but it can make it significantly easier
what is OOP, also, would this be the right way to print it, like, inside of the function itself?
local function onTouch(otherPart)
print("La parte del cuerpo que tocó es: " .. otherPart.Name)
local character = otherPart.Parent
local humanoid = character:FindFirstChild("Humanoid")
if humanoid then
humanoid.Health = 0
end
end
yep
OOP is Object Oriented Programming, its essentially creating a bunch of things with the same common variables and functions but different values
i dont think i could explain OOP very well lol
if im a mainly spanish speaker would you reccomend using spanish for naming functions, or would it be better to use english to name them
or does that not matter
Im tryna make roblox games and i understand basics but whenever i see any other developers script outside of tutorials, i genuinely dont understand a single thing in their script its like 10000 module scripts , i have a feeling like im not missing out on something super important 😭 also do you know any scripting outside of just basic ones that just cover functions, data stores, variables and etc
it wont matter unless you want english speakers to read your code
but dont use any accents, that wont work
dunno how many of these might be useful to you but https://www.youtube.com/playlist?list=PLQ1Qd31Hmi3WKkVHnadvhOOjz04AuMYAf
ive found that you wont learn about most things until you make something using them
and even then you have to find a use for it
ive been coding for 9 years and still learn new things most times i code something new lol
Ty il try but i think i know most of these except some of them
can i add you in case of when ilearn this i have a question, i can ask it to you, when im creating my frist big game?
youll be better off just asking here, im not available to help most of the day
but if i am on ill try to respond if i see you ask something
ok ty, what scripts do you reccomend i try doing by myself with no help that i could learn something out of, for making my game later on
like things that i can learn early on that will be helpful
an obby would be a good place to start
since youre still learning the basics
and obbies are simple
do you reccomend taking a obby map from toolbox if i dont wanna make the map myself
im asking too many do you reccomend questions
lmao sorry
that's up to you, just make sure it doesnt already have scripts
https://medal.tv/games/roblox-studio/clips/m827f86BP1Y1--jkW?invite=cr-MSxhYzksNTM1OTE3NDg does anyone know why this is happening?
Watch Untitled by C3rtxfied and millions of other Roblox Studio videos on Medal. #robloxstudio
it wont load the shirt with the script but it updates the id
and when i do this
the id works
Watch Untitled by C3rtxfied and millions of other Roblox Studio videos on Medal. #robloxstudio
i ask chatgpt for a roadmap of things to learn how to do, is this cool?
Mini-Project 1 — Custom Stat System
Goal: Player has stats saved + editable.
Build:
Strength / Agility / Vitality stats
RemoteEvent to allocate points
DataStore save/load
UI that updates live
Learn:
RemoteEvents
Server vs client authority
DataStore patterns
ModuleScripts for shared logic
Mini-Project 2 — Basic Inventory System
Goal: Real item container system.
Build:
Items as ModuleScripts
Add/remove items
Equip weapon slot
Drop item to world
Learn:
OOP patterns in Lua
Tables as data objects
Server validation
hey would any of you have any suggestions for me? basically, i have this old almost 3 year old but still advanced admin system, basically the issue is, it works only on this specific place/game, (i can download it as .rbxl and itll also work but not on any other place) i tried removing every single irrelevant entity, just kept the core structure and it works perfectly fine, so i copied it over to my game, and it doesnt work, same for an empty baseplate, i tried copying over every single entity from the game over to an empty baseplate as well but for some reason it didnt work lmao
never in 7 years have i had such issue
no idea how the hell this works but it only works on a specific "game" even though i wouldnt call it that since it also works when you download the game as a file and open it/save it to roblox
@shadow cedar ban, she is collecting devs to start her own corporation
wont repeat again
What if instead of print it was Simon says so you did "Simon says("hello world") hello to you too Simon
dattebayo
Oi oi oi! A fellow weeb from the homeland i see
daijobu
Idk what that means
nice time to steal
thanks
NUH UH
I should add watermarks on all my gifs so people cant steal them
Even tho i stole all of them
Me too
I went on a date with my gf and spent the entire time planning out a system in my head
I've been coding for almost 3 years
how was it at the start
what language
Luau was my first
I've been doing c++, java, python, and some quantum programming languages for a couple months
well
Is there any easy way how to make physic based vehicle pathfinding? I need ship to move on the sea, but I do not want to rip server by having X ships raycast etc every moment
was it worth it?
I do it for a hobby so yes very worth it
Im a nerd and i love coding
have to strap myself down everytime i try learning
I'm working on a new framework of programming. I would like it if someone had time they could listen to my idea and let me know their thoughts
Im pretty sure you'd need raycasts
You should learn about optimisation techniques so that you can actually use it
Im down
Dm me whenever
I gotta do something right now so gimmie like 20 minutes
Would it be possible to create basic pathfind:CreatePath() with params and then just move ship forward untill it reaches waypoint, slow down, calculate angle between orientation of waypoints and turn ship?
Raycasting each ship would be painful for server
Uhhh i think so
I'll be real i've not done much with pathfinding so im not really the person to be asking 💔
@rotund pawn yes it is completely possible
Yes
Type shit
its not hard when your having fun with it
Yeah
Sure
if i want to like, detect a player standing on or inside somth like a zone or something, is it better to use touched or raycast
or something else
Raycast is a invisible line that returns what it hits, so i suggest to update the player position with a touched
what?
did u use AI?
i didnt say anything abt updating plr position
Eins and Tein
what are yal using for a slide system vector force linear velocity, straight math or something else?
Velocity
can someone teach me copde please
who tf uses the helper
gng how do i script and orbital cannon that comes out from the behind of the character
Me, because I’m new to scripting
local part = game.Workspace.Part
i want to ask you guys if its even worth it to learn scripting anymore because of AI?, currently im doing 3d modeling and have gotten quite good at it but is learning scripting worth it anymore or nah?
You're more at risk of losing work for 3D modelling than scripting
I own a Roblox group with 10,000 active real members (no bots). It also includes two extra roles already set up. I’m considering selling it what price offers can you give?
why tho?
AI scripting is just another tool, give it to an already experienced scripter and he gets a task done 10x faster
And in practicality, most of the time you spend on scripting is on bug fixing and finding what's the issue
without first hand experience and knowledge - this will be a painful process
and no AI can substitute that
so youd recommend i continue to learn scripting and get advanced?
Plus without actual scripters feeding new scripts, the AI scripting will probably just get obselete
if everyone is just fully depending on it
That's for sure - it's still worth it learning
what about the competition tho? there are a lot of scripters, I've been away from this server for a few years and the competition for scripting was pretty low at that time, but now it surely has increased for commissions, so what type of portfolio would one need to get a few commissions a month at least?
Just learn the industry standard tools
And make sure your portfolio is not the typical "systems"
think of cool ideas and make a small prototype of it
you could also just make mini version of existing games as from my experience
most clients are asking for remakes or inspiration games - so showing them you can copy those ideas
you'll probably get more likely to get hired
alright thank you for the help man, ill definitely stick with scripting and see where it can take me, knowledge is power at the end of the day
You're welcome, good luck on your learning journey 
thank you sir
you mean the ai that was only added like 4 months ago 🙏
there are way more people in scripting yes but the demand keeps increasing in general
in general there are more roblox games being made, total, so while there may be more supply there is absolutely a lot of demand
print(“Hello World”)
get a comma and an exclamation mark in there or you're not a real one
Having a portfolio is one thing but you need connections
very
local Players = game:GetService("Players")
local SPAWN_DISTANCE = 1000
local INTERVAL = 0.1
local function getRandomDirection()
local direction = Vector3.new(
math.random(-100,100),
math.random(-100,100),
math.random(-100,100)
)
return direction.Unit
end
while true do
task.wait(INTERVAL)
local playerList = Players:GetPlayers()
if #playerList == 0 then
continue
end
local randomPlayer = playerList[math.random(1, #playerList)]
if randomPlayer.Character and randomPlayer.Character:FindFirstChild("HumanoidRootPart") then
local root = randomPlayer.Character.HumanoidRootPart
local spawnPosition = root.Position + getRandomDirection() * SPAWN_DISTANCE
local part = Instance.new("Part")
part.Size = Vector3.new(4,4,4)
part.Anchored = true
part.Position = spawnPosition
part.Parent = workspace
end
end
Use this script trust
local Players = game:GetService("Players")
local SPAWN_DISTANCE = 1000
local INTERVAL = 0.1
local function getRandomDirection()
local direction = Vector3.new(
math.random(-100,100),
math.random(-100,100),
math.random(-100,100)
)
return direction.Unit
end
while true do
task.wait(INTERVAL)
local playerList = Players:GetPlayers()
if #playerList == 0 then
continue
end
local randomPlayer = playerList[math.random(1, #playerList)]
if randomPlayer.Character and randomPlayer.Character:FindFirstChild("HumanoidRootPart") then
local root = randomPlayer.Character.HumanoidRootPart
local spawnPosition = root.Position + getRandomDirection() * SPAWN_DISTANCE
local part = Instance.new("Part")
part.Size = Vector3.new(4,4,4)
part.Anchored = true
part.Position = spawnPosition
part.Parent = workspace
end
end
Use this script trust
twk next unit vector
awww you stol me super safe lag removal script
Nah you stole it
Guys i have a game idea
it's flee the facility
but instead of facility it's an island
and instead of a random giant chassing you it's that guy
and also the players are kids size
i deleted skateboard support from my playermodule
absolute disaster
breaking change
self.lastSubjectCFrame = cameraSubject.CFrame
else
self.lastSubjectCFrame = nil
end]] -- no more skateboards```
never liked the auto rotate on the cars either, and there wont be any
@sage solstice might be onto smth
Whats the best way to access a character state machine on the server from the client
Invoke server?
have copy of state manager on the client
and use fire client to update it so it syncs
Hi guys i just finished basic tutorials with dev king should I watch the advanced now or what? And can I make advanced games after it (like brain root games?
brainrot games and advanced games in same sentence bro
For me at least xd
try watching BrawlDev on yt
Best i can do is print("hotdog")
Is he better than dev king?
best??
2 days of watching dev king tutorial and only print man
Just kidding I can do some shit but nothing crazy
Yeah
Yes
Idk i didnt try to make tools ever
I just finished basics
I can do functions and tables in pair loops events
DUDE
But dont know how to make a tool like swrod or a gun
MOST PEOPLE DONT KNOW HOW TO MAKE TABLES NOR PAIRS
and tools are easy
just make a tool in workspace
give it a part named handle
handle with uppercase H
and boom
itsa tool
but it would require some modifications
well you will need help icl
btw u also got to learn in roblox stuff like services
such as debris service
and input service
etc.
Is it ok to watch brawl dev advanced if i learned the basics with devking
I will try my best
You can give it a go
Since when u started ur journey as a developer
or tycoons
and if u are stuck on smth
ask sm1
if u dont know
ask sm1
journey started since long ig
maybe 1-2 years
I will try after know how to do more stuff with events and functions
u do u
yea
Like to leran data store and know how to interact with the game
Maybe i will try tycoon after that I will try tower defense
Have you ever make big project?
2 years and only tycoon? Did u stop
ye
Soo looks u just came back to roblox deving
first time joining this
And did u forgot everything?
in scripting? not really,
guys how did the grow a garden devs do the shop where it extends to show you the robux or cash section
wym "extends"
yk like when you click a frame in the grow a garden shop, it extends at the bottom showing the option to buy the item
ooooh
mouse.Hover:Connect(function(idk))
dude..
wat
MouseHover and play a tween
the problem is i use a uiList which needs to push the next frames farword
you could have a frame behind the "Beanstalk Seed" thing
include that in the tween goal
what?
instead of just making the money and robux cost come down (which would be hidden behind the main "Beanstalk Seed" square), you also tween the rest of the square containing other seeds DOWN
alr thanks
ig u would only need to indentify the seeds below the beanstalk one
which i dont rlly know how to do but with AI you can learn it easy
pretty sure the UI list layout does that for you
Yo I’m down
i have that in my game lil bro
its actuall not that simple
what did u do then?
because when u tween it down now ur entire shop is actuall bigger
therefore u need to also change the canvas size
no
what then
i automatically position and resize everything
lowkey u cud try uilist and auto canvas size
yea
i think that would be the easiest way if it works
thing is uilist is kinda janky tho
idk if it lets u change the offset inndividually
thats the main issue
it lets u offset but i think it offsets all the frames inside the list
but try autocanvassize
altho again if u r using scale for ur sizes it will automatically make ur canvas bigger but the frames are gonna expand and if u r using offset u still need to manually scale either way i believe
i see a lot of different data store methods people use like i see profilestore, some modules people install and stuff to make it easier. what would the best one be? i dont necessarily care about it being easy to implement, just that it works the best and stuff
What is the limit of information that we can get of the users hardware on roblox? Such that we can get a nunber from it
brochacho-
What
Alright, for a swing system, do I play the animation then fire to server, or fire to server and the server tells the client to play the animation
are any scripters available for a quick question? :D
sure
ty sm! i dmed u
How do professionals organize games with multiple universes using the same script? Do they put a package under each system folder in a service or do they have a folder and package for the entire service
Who can help me to do a system of kill effects
Working a on a pvp project right now and I have the attack animations on the client, but how can I watch keyframe signals on the server/cancel the attack if the animation isn't played on the server?
DM me if you are a scripter and looking for a dev group
Guys, how do your global leaderboard systems work? (how they don't over use the datastore)
OrderedDatastore or something
yo guys can yall explain parameters for me i dont rlly get it
sure i can do that
is there something specific you were looking about?
or do you a have a script example?
umm not rlly i was just watching like an script tut
like what is the point of parameters?
parameters are information, do you know the touched event?
yes
when you touch a part in roblox it passes the hit parameter, which is the object that touched the part, this is so you can use that information and do stuff with it
i thought like parameter where the stuff in the () in a function
they are
this is the simplest version of a parameter, and there are many more
id you don't know what a event passes you can look it up in the roblox documentation
still to keep it short, it's the information that an event passes into a function
alr imma go check it out
gl!
tyyy
does anyone know why this is doing this? so it acts exactly the way i want it to in studio and then when i publish to go in game its differenthttps://medal.tv/games/roblox/clips/m8ijcDAaZZdRQhAEq?invite=cr-MSxIeWYsNTM1OTE3NDg
in game ^
https://medal.tv/games/roblox-studio/clips/m8i6TDOiDPrdsgQVW?invite=cr-MSxnbk8sNTM1OTE3NDg&v=13
Watch Untitled by C3rtxfied and millions of other Roblox videos on Medal. #roblox, #dietryingtesting
Watch Untitled by C3rtxfied and millions of other Roblox Studio videos on Medal. #robloxstudio
can someone give me a system idea for portofillo?
how to force a player out of a seat using code
Humanoid.Sit = false
a tower defense system/framework might be good
You must've mistaken smth
You look more like a self promoting prick
thats just every percentage job lol
oof
pro level coding skills
local eggs = 1
local function cookEggs(seasoning, cook) -- seasoning and cook is a parameter
eggs += seasoning
print(`{cook}:{eggs}`)
end
cookEggs(2, "DeepFry") -- 2 and "DeepFry" is an argument
hello is any one on
nah
hello
we?
...
comedy
doing comms
i am a scripter
🎮 i can print games for you🤑
🗄️ Portfolio:
print("games")
What are you looking for, go dm me now!
DM me if you are a scripter and looking for a dev group
hi i can print games for you
good coding?
Hackers = no
Why is there code on your comments?
print("games")
bugs is a request not a statement so youll probably still get bugs, might wanna change that
damn sorry
yeah you should be 
now bind this into https://create.roblox.com/docs/reference/engine/classes/TextGenerator#GenerateTextAsync and tell it to create the game at runtime based on that info!
how can i get the humanoid description from a npc so i can work on my morph system first time using humanoid descriptions so idk alot of it
is the scripting tab active?
Quick dev question I’m designing a Builder class for a co-op survival horror game and I want some sanity checks on my idea rq.
The idea is Builder is “OP but earned” anyone can build basic stuff, but Builder can set up real infrastructure like power, automated defenses, sensors/alarms, and later simple drones. the key is it only works well if the player actually designs it right (bad layouts fail, good layouts make runs way safer and last longer imo).
Not trying to make a full Industrialist/Factorio simulation even tho I did kinda take inspo from thete. But its More like a simplified power + automation system made for survival gameplay.
So from a scripting standpoint, what part of that is usually the hardest on Roblox? And what’s a realistic effort range for a solid implementation and like what I mean is how much would it cost to pay a scripter to do make all this happen.
factorio?
Hello, does anyone have any good guides for SSA in roblox?
What is even that
single script architecture
what guide u need gng
its just one server script one client and rest modules
no guide needed
That sounds like a lot of effort
no its ez
i dont know how to setup the server part
in a safe and good way i mean
cant
can you send it to me in private?
ok
thank you
doing comms
i am a scripter
🎮 i can print games for you🤑
🗄️ Portfolio:
print("games")
games = "games"
for games = 1, 10000000 do -- 1000000 is the money you are going to gain in your game!
print("games")
end
What are you looking for, go hire this supercalifragilisticexpialidocious guy now!
local games = "games"
```*
:/
scripting error
NOT hiring...
no i intentionally made it global so everyone on platform see's it! because its GLOBAL!
see? I'm so smart! Now go hire this SUPERCALIFRAGILISTICEXPIALIDOCIUS guy now!
and remember! Everything happens for a reason. 
thats why ```lua
games = "games"
is also written for a reason
ur a helper and you dont even know?
what he doesn't know?
global vars
i think he just implies that its dangerous to set global vars
its not dangerous
he said scripting error
maybe its because he just mistyped it or he just mean't what i said? Who knows, He's still a human being and a human makes mistakes. Everybody makes mistakes.
SEE? i'm so smart, honest, and kind! So everyone should hire this SUPERCALIFRAGILISTICEXPIALIDOCIUS guy!
Guys Why When I Reset and i respawn, my text in TextGui reset also ?
Because it does that
I don’t want, How i can do?
Turn it off in properties
Wall climb
︀︀#ROBLOX #robloxstudio #RobloxDev #robloxdevtwt #robloxdevelopers
**👁️ 1 **
nice
those somewan got same problem when you actually got a script but you dont where to even do anythinh
guys how can i make a r6 character bigger (they are becoming hulk) via script
cool

Adjust their body size
any one from norden
hej
i am looking for a scripter that i can partner with for my game dm @terse stone if you are intrested.
Increase the model scale
I was explaining how it worked to someone
guys packet or blink

I have 5 hours before I need to import 3-4 vfx, should I increase my cortisol
Blink
Guys how ı can do a button that open shop
Use a proximity prompt, just needs some code to check when its used, and you're golden.
Or if you want to open the shop by clicking on your screen then use a gui button.
why blink
button.mousebutton1click event
frame.visible or screengui.enabled properties
you have to make a script under the butth that says this
StarterGui.OpenGUI("Shop")
end)``` hope i could help 🙂
what
wdym what this is how you open a gui??
please tell me clicked and opengui are not real
uhh startergui??
yes what about it?
who sneaked this guy in sc
im in skid central because i inow how to code if you knew how to code you would be too
id check our mutuals if i were you
why yo sc roles like that twin 😭 🙏
i didnt make them bro
some dude put me as the grey one
and i kinda wanted the green nametag so
use blink
fire
(your game here)
guys robuilders new game is failing, can we show some support?
Frostfall ahh
Bytenet bad
Zap better
But blink benches the best out of them all
@wise turtle
Ur coding helper now
Wow
isnt blink and zap almost same
?
whats different
Some of it
the usage is like the same
where is the amerika ya and omayga
youre a fake
oooomaygaaaa
no i aint
Credits to Zap for the range and array syntax
Credits to ArvidSilverlock for the float16 implementation
Studio plugin auto completion icons are sourced from Microsoft and are under the CC BY 4.0 license.
Speed icons created by alkhalifi design - Flaticon
@ember nimbus
what about it
I found ur name in it
yes
R u Indian origin?
no
Arvid landlabad
arvid is a swedish name
Ahh
The F1 dude
Arvid, he's indian and Swedish and brit
I been helper
blink has more features, is faster, and more maintained
Im banned from inviting people to that server
Whyy
Does infinite have invite perms?
i invited some people in hd and they invited ragebaiters
and frostfall is mad at me
💔
Frostfall also hates sc
So most likely I won't get in
Makes sense because all the ragebaiters were from sc
Cmon
why should i use blink instead of packet or bytenet
No way u found kirk ariel not funny
Bro r u tryna ragebait
Cuz ur being ahh at it
From the creator of bytenet
no
yes
but ^
zap is missing some pretty major optimizations
idk about zap 1.0
blink rewrite is already available
@wise turtle
I am rewriting Flux rn
I'll send the rewrite in like 20 mins, could u tell me how it is?
Also is chrono's serialisation good?
If yes then it will take more time
ugh
for cframes yeah
Im in bed
just use the builtin ones
ask arvid hes here.
were talking about buffer serialization
oof
if by compression you mean serde imo most libraries are too general
How much do you guys usually give to people who sponsor game % wise
you're not leveraging buffers properly if aren't using a static schema
avoiding type tags and string keys is the main benefit of buffers for networking
hes writing a serdes library
for like datastores?
Im assuming general purpose
idk what he means by this though
what would be good for creating soccer physics like kicking the ball?
most dont work the way i want them to
i feel like ive answered this question in forums
like 3 months ago
i would appreciate if you could remember and tell me
if you dont want bladeball ah bs then use vectorforce if i remember correctly
o your right i havent tried that
apply the force depending on current cameras rotation
lookvector
Also slightly flatten it so if a player looks directly up, the ball wont fly in the air
peak tip
i learned to script just to buy minecraft lollllll
What's the best way to learn scripting in studio?
learning
documentation and devforums, + youtube if you find tutorials helpful
soemone gimme suggestions (not the ui as ive tried for way too long on that and still failed)
https://www.roblox.com/games/92983569646728/Stud-Slaughter
⭐ EARLY RELEASE ⭐
This game is actively being developed and open for testing. Enjoying it? Drop a like to support continued development.
A mysterious entity known as S.T.U.D has dragged unfortunate survivors and corrupted killers into an unfamiliar realm.
🧍 SURVIVORS
Cooperate with your team using unique abilities. Smart use of gears an...
Clanker
advertise the gamelil bro
not enough playesr to play the game
u need ad to get that initail boost in players
Yo does anyone know if scripters actually answer those hiring post I’m tryna make one
idk why but ts hurts my eyes
WHAT SRIGHT WITH IT
honestly my brain fried too
setting owner ship to server for physics force for knock back
but making client but unresponsive sometimes snappy
is there better way to do it
i do
i dont really work with physics but idk
ts hell bruh
1 wrong move and u made new laws
Dm me
damn never thought of it like this
what are the most impressive things a scripter can do
.
brawldev has a 3 part series on yt it’s very good and interactive so you’re actually doing the work at times
yo what do scoping mean
depends on the context
like in coding
guys what string concatination is ?
how did u make so there the trails on the path ?
before it moving to it
i madeee a function at th start
n as bot made progress i ran ths
u did waypoint.Position so it move where the bot goes but did u like make it calculate with a bit of lag so the path wan be placed just before it
and not like at same time it is at the so called position
i never felt any lag~
no i mean if the balls are placed where the bot move how is it like before it does ? or does when it move it just already a few studs calculated already for it route so that why
i guess i ask stuff too hard for me at my lvl lol
nn th path is already calculated~
th balls r js visual effects
thyy dont have any purpose w/ guiding the NPC
its really easy.
local Number = 100
warn("the number is: "..Number) -- the ".." is the concat thing. helps combine numbers and strings.
why the fuck is this in the documentation if it hasnt even been implemented into roblox studio
what is the point of putting a thing that doesnt exist in the documentation
an os, a game engine, a new language
wsp
yup thx just learned it now
can someone help me and my friend script
maybe its beta
and u have to enable it
problem is apparently beta features dont work when other people play the game
yeah
hence no reason to use those
they change them up a fair bit before (and if) they ever release
wheres ias 😡
how to disable resetting character
this aint google
wrong channel
bruh just google it
ong
beta features are only studio
Yes
fyi, string concatenation isnt just combining strings and numbers into one string. it's combining multiple strings into one string. lua does some work in the background to automatically convert the numbers into a string when you concat them
what can i do to make this ability feel more lively and interactive
can i commission a coder to come remove all these pop-ups/backdoors from my game
sure
dms
send portfolio here
c
same point
just letting you know in case you didnt know
"sky is not blue, it's light blue" ahh
exactly
im pretty sure thats model issue
not code
go to #modeling
i wonder how does import export issue have to do anything with code
i certainly did not skip brain day like you
oka
hmm?
i think you have no choice but to manually adjust it
or ask ai to give you a formula for making the mesh cframe be alligned to the bodypart
irrelevant to the code discussion
imagine arguing when i said go to #modeling
they certainly have solutions
hiddendevs should stop allowing kids
to be here
calm down brochacho
i think that's a rigger
that you are refering to
you could go to #animation or #modeling
for asking help with that type of stuffs since they are good at that
smh
i love cats
just gotta get my own house to own one :(((
my parents are allergic
bruhhh
:((((
For some reason when i create a motor6d and link a part (part0) to an animated part (part1), part0 doesn't follow movement. Could anybody help?
what do you mean by that
does part1 move but part0 doesn't?
show me pics
<3
Yes, when they're supposed to be connected through a motor6d
Part1 moves during an animation
No perms 💔
Alright
with y axis i guess
u can't do that
without manually adjusting the cframes
or not, i'm not really good at that type of stuffs
chill
tf happened here
rbo?
@fringe chasm
what is ace's id
?
@wise turtle
ahh yes
I have seen multiple servers be able to ban users on Roblox in discord VIA a discord bot. So i wanted to see if i could make a External EXE application to see if it would be possible VIA a admin pannel. What are the steps i need the game dev to do for that to work. I was thinking a Cloud API but as that does not exist anymore im stuck. All i need is My app to be able to the roblox game with some sort of key or api? Im not sure how roblox works
AW snap wrong channel.
just call the banasync api
and you can use messeging service api to kick them
or execute a luau script
you to know a bit of web development for that to work. Instead of an exe i suggest you make a web page that "talks" with the discord bot via API. Im not 100% sure but there should be a way to interact with the banned players via an API too (or a workaround is certainly possible). So the page would need to pull from the database of banned players and then make the request to ban the players in the discord via the bot.
now that i think about it, if you dont need a ui and just want them banned a python script could do the job just fine
you could also keep a server hosted 24/7 via cloud execute and having a small proxy service to poll in discord requests
yeah, iw as trying to go the route of not talking with anything but vsc the cloud and roblox api handles. I wish i could send puctyres here. But i got the messaging API and it was a JWT form for some reason. And im guessing Cloud Api is not a thing. I cant ban through a JWT
althought thats not as reliable
I am using Railway to host the exe
who can help me make rounding system like when player spawan wait for round to finish and after round finish new round starts and repeat
sorry which part are you trying to avoid? connecting with the bot?
Do you want to move to #code-help to not flood here. Or is here fine?
code help is usually roblox scripting not this, but its fine
Alright
you can also use luau's cloud compute to run code to ban the user
Alright, Im not the main roblox dev who handles API's as i am not smart enough for that yet haha. I would have to get a message to relay to the owner to create the keys for me to implement. If i could send pictures here it would help me explain much better
Guys is it possible to make an update log that goes ingame and follows a discord channel
seems unnecessarily complicated
you can just use any web service meant for this, a website, or just config manager in roblox
http service ig or what the guy above me just said
you can hire someone
who wants help
can someone explain what a PID controller is and its use cases in roblox dev
what game yall making
if i have gotten the verified badge from a games group with 10% revenue share if i leave that group will i lose the badge aswell?
is there a module to craete admin panels ?
yo ive struggled with cooldown desync and now ive started using a module for managing them, is it optimal?
where do you guys learn how to code for roblox studio
Im currently learning and I use Forums, YouTube and sometimes Chatgpt + claude
Helps alot
Use conch
me for 50 robux
what videos
Idk js videos
Twitter is definitely the best app for finding scripters, better than HD
Tf is this😭😭😭🇮🇱🇮🇱
Glory to israel 🇮🇱
Buddy thought we didn't notice
hello noob
Notice what
Emojis
sneaky
broke boy
only 32gb ddr5 😭
nd a 5070
😭
bro prolly got a brokie motherboard and shitty ahh alibaba psu
1200w psu
Asus Crosshair X870E Extrem
i woulda gotten the 5090 but then it was lowkenuinely not my style
thank your parents for me
its a joke
my parents wouldnt spend that unless it has a big ROI
make it less believable
you are the roi
Guys ima be honest can semeone help me.
It’s been days and days that i’m trying scripting but i understand nothing , i keep trying and be patient and every tutorial i watch at the start it’s easy but after it’s ragebaiting i keep training and it’s too much for my brain.
💔💔💔💔😭😭😭
uh when is bro getting banned?
Guys ima be honest can semeone help me.
It’s been days and days that i’m trying scripting but i understand nothing , i keep trying and be patient and every tutorial i watch at the start it’s easy but after it’s ragebaiting i keep training and it’s too much for my brain.
scripting isnt for u then
sorry lil bro move to modeling or animation
learning --!strict for the first time 🪦
ignore the suggestion above, i think you just need to give yourself a break
the first time i tried learning like no progress was made at all
then one day it kind of just clicked
ty
ts is so ass
imagine not having a 5090, 9850x3d, 192 gb ddr5-6000 cl26
Can someone with the scripter role help me with the scripter application? I’m not sure what I should make. I already made one before and sent it, but it didn’t get approved, so I wanna know if it actually works or needs changes?
im interpreting it so hard rn
make a compiler next
lowk same, I've made one before but I forgot
you dont
you have a assembler like NASM
that turns the asm code into a object file
then you have a linker turn that into machine code
you transpile to assembly?
well thats the step after you've made the compiler, you still need to write a compiler that turns the whatever code into asm
you dont technically need to know assembly
you just need to know how to turn stuff into asm
how long should u script a week to get better?
uhhmm i mean people have different rates but generally youll always get better if you keep scripting, as long as each time youre 1) actually learning something new OR 2) mastering a previous skill
Guys, how do i stop players spawning through ceiling in a small spawn area?
(does adding multiple spawns help?)
Guys, why does my animation work when it's 1 second long, but not if it's less than 1 second?
Pos
Pls*
Put the spawn slightly under map maybe ?
i'll try it thanks
If you fall under the map maybe add like a invisible base near it
Guys, why doesn't the animation play when I swing my sword? I'll show you the script privately; I can't seem to send a screenshot here.
Pls
sned
Send the script in #code-help
Mp
Anyone who can make fully games
Does anyone have a script for NPCs that detects obstacles under their feet and jumps if the obstacle is small? My NPCs are crashing into small rocks, even those 0.1 meters high
how do i get rid of the roblox inventory system without getting rid of my custom UI system too?
awda
Why are scripters so expensive
cuz ppl gotta make cash
Yeah but animatons are cheap and so are vfx
those 2 are easier
