#code-discussion
1 messages · Page 156 of 1
omg i cant code
one of u people help me and ill pay u something idk 20 bucks or idk i need this done
i litearlly tried for hours
have a heartbeat connection, drain in there, and disconnect the connection when they stop draining
my world generator works perfectly
but i cant get it to optomize or make fog fade
its so much math
i cant do taht much math
No, ive meant animations in game, like ODM gear
Would be genuinely surprized if its possible to code animations in game
Cuz you havent noted anything about them
nah they're animation instances
Alright
no
did u disable hats
u could always just force appearance with ApplyDescription()
in command bar?
nah I meant like the method when peoples humanoid load
i think it works even if you have force r6 on i never tried though
in a script
alr
guys is 4.5k too low for a ng and inventory system
trading
and inventory system
idk if its underpriced
i needed advice from scripters
anyone?
I mean you can def find people
yes
what abt 9k
theres probably some guy ready to do for that price and lower, but the quality would be bad
?
thats what I was thinking aswell
is 9k too low
depends on what exactly you need
9k rounds up to 30 dollars
an inventory system where people collect potions with aritys and they can trade them with others
perhaps you would find someone decent in that range ig
for 100usd you should expect shit
You got scammed simulator
Hi guys, doing simple fast coding tasks, feel free to DM me 😄
From 5$. Im just bored this week & need something to fill my monthly tax report with 😄
Entire game in a week for $100... This is HiddenDevs
Dawg I don’t care if it’s pokemon server
I need someone to make my whole code for 100 bucks
I can model and animate
But code
What I'm saying is your offer perfectly describes most offers on this server
I mean do you really expect someone to do allat for 100 bucks
what game are u making @velvet saffron
?
The idea doesn't make sense
How will sonic exe fit with this
Na boi
i just dont give my billion dollar idae
here
in hidden devs
but if u wanna do the code for me and work ill explain it
Lemme guess, it's open world
dawg thats literally sonic and once human ofc
Yeah
Haven't checked
p
ITS ME
your boy acid guys come on
i have the art skills
not the coding skills PLASE
You did not make this
WHGATWHAT
WHAT
ITS ME ACID OF COURSE I DID
okay okay ill give you another clue to my game
its like the last of us
but sonic
metal virus game
cheats 😔
Is it clever to say on DevForum that you have used exploits?
Sounds like you could get terminated for that comment
no one's gonan understand whats it about
😭
i enjoyed coding them
vro
😜
he didnt even reply to you or anything
did you find the post
yes
he will probably reply tomorrow idk
what if I go on dev forum and make a deep dive on that guy but fill it with meaningless sentences and random screenshots
😭🙏
i do ig
Did u ask chat gpt?
whats linear velocity the thing is blocking it
i lowkey just forgot about it until he brung it up
this ss
new level of stalking from blud
hey
i'm kinda stuck with roblox studio
how to script a cutscene
using moonanimator
my animator made the cutscene on moonanimator
ong
also making exploits is against TOS idk if he'd try to get you in trouble with roblox or not
also you honestly should just have the .lua file in the repo itself
why i cant delet them?
virus
Guys diarrhea is so scary
yes
U cant delete bro
remove plugins and scripts
how i tryid
when i use OnEvent then is there a way to dsconnect the function without destroying the ui? (Fusion package)
Hello I’m looking for a partner for my game that can fully help me while creating my dream game and that’s decided I have so many ideas that can get us somewhere
whats the best garbage collection module? should i use maid, janitor, trove or smt else
"Game"
payment?
Payment?
Set the cameras cframe to the cutscene cameras cframe values
How I do them is I make a separate module and it returns all of the cameras cframe values, then in the script I set the cameras frame to the module and it does it
Depends on ur game they all work fine tho
Is there any way to tween players camera SIMPLY to moving character?
Camera has set position, player starts moving in vehicle (automatic) > Camera tween to player while player is in movement.
Tween only tweens to position of players character during the tween creation
Who knows how I can create the Grow a Garden planting system?
So you basically want a cutscene where a camera somewhere away from the car is looking at the character in the car for a second and thens swaps back to the character?
sorry i replied to the wrong person
@rotund pawn ?
can you add me on roblox please
Zeden_ytt
?
can someone help me with my roblox project game I copy pasted my code from my other game which is sprint script with animation inside it it works perfectly fine on my other game but in the game im working on the sprint works but the animation not working HELP MEE
lerp + heartbeat loop
Is learning Roblox coding hard
if u dont have previous coding experience with other languages then yes
Yup I'm cooked
can start with like C or something first
learning how to program in C
Can you explain how?
you lerp the camera to the target position based on a specific alpha determined by the deltatime every frame
To be honest this is first time I heard that there is a lerp function. Thanks
workspace.CurrentCamera.CFrame = workspace.CurrentCamera.CFrame:Lerp(game.Players.LocalPlayer.Character:GetPIvot(), delta*someconstant)
delta => time
constrant is?
deltaTime is the amount of time passed between 2 frames
its passed as the first arg in a heartbeat loop
Cool thank you
local RunService = game:GetService("RunService")
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
RunService.Heartbeat:Connect(function(deltaTime)
workspace.CurrentCamera.CFrame = workspace.CurrentCamera.CFrame:Lerp(Character:GetPivot(), deltaTime * 0.1)
end)
something like this
(untested)
Is using collection service instead of waitforchild better?
depends what its for
Workspace instances: For example, I have electrical levers and a clickable part inside them (the part players need to click to activate the lever). However, since I'm using streaming, these objects don’t load/spawn properly, which causes an infinite yield
Because I'm a little confused and don't quite understand when it's better to use Collection Service and WaitForChild()
guys what good ways are there to learn scripting im just using youtube tutorials rn 😭
Practice, devforum, roblox docs
what are roblox docs
roblox documentation, you can find some useful info here
Basically, focus on mastering the fundamentals.
Understand how logic gates work, what specific functions do, and start recognizing common patterns. One thing I’d highly recommend is using AI when you have questions - it can often explain concepts in a way that’s easier to grasp and tailored to your understanding.
However, don’t rely on AI to write code for you by just copy-pasting.
You’ll learn much more by struggling through the process and figuring things out yourself.
Try recreating systems from other games - that can be a great learning experience. Some developers recommend to use the Toolbox to study how different systems are made - not to copy them, but to understand the logic and ideas behind them.
yeah but for learning the basics, is the roblox docs lua guide good?
Can I reset all my players stats when using profilestore?
Yeah, kinda. You can also watch DevKing Tutorials, he explains stuff kinda good. After you understand theory then just keep practicing
The API on ProfileService’s GitHub page mentions that the WipeProfileAsync() method allows for this to be possible. Here’s the example that is provided: ProfileStore:WipeProfileAsync() ProfileStore:WipeProfileAsync(profile_key) --> is_wipe_successful [bool] -- profile_key [string] -- DataStore key Use :WipeProfileAsync() to erase user...
use collection service
100%
and use the GetInstanceAddedSignal method
Alright, I'll try find more info about that. Because I have never used the collection service before
not really hard
Could the datastore editor plugin works?
work?
I don't think, so
Well, I'm not sure
I Personally Follow BrawlDev on youtube, just practice what you see and understand how and why the code works, as an ex unity dev his course helped me to get on the new platform
ill check him out
I started from dev king tutorials
His tutorials are outdated
What order should I use these resources in? I got some experience in coding in general but not much.
guys how to code 😨
lua.org is a big brainer
i am making an isometric map maker for a future engine on Roblox and this is a test for the edit viewport. what should i add to this for now to make it look better
bed
is this code hot jarbage
Yes
reminds me of rbxts transpiled code
what is it!
give names to arguments
"a,b,c" 😭
uurgh fine
anyone know a module that makes clients reading oop objects i make on server easy
LESS INDENTS!! HAHAAAAHAHAHHAHA
please use the format tool bro 🙏
?
Learning loops
local health = 100
while health > 0 do
print("You have " .. health .. "!")
health = health - 10
end
this will crash ur thing bro
Ik
add a taskwait
you could also save yourself a bit of time in the future by instead writing health -= 10
its the same as saying health = health - 10
Im more comfy with health = health - 10
print(You have {health} health!)
do this instead of the ".."
I WILL NOT NEST MY CODE.
idk why they don't have a :getIP() method for players
devs should have acces to that
fr
definetly!
local timer = 10
while timer > 0 do
print("You have " .. timer .. " seconds!")
timer = timer - 1
task.wait(1)
end
if timer == 0 then
print("Oh no.. The time ran out!")
end
More looping..
guys is it Bad To : Play Audio On Server ("to make sound replication ")
i asked a lot of People and said it`s Bad,
?Is the alternative Validation of an Action and Then Firing to All Clients to Play The Audio
Thx.
they should release that and returned a hashed ip instead of just the ip in plaintext
and only callable from server
can sm help with a system i need to make for my game??? dms i promise its very cool!!!!
hello i am a scripter wanting to make projects for free bec i need to make my portfolio and experience if you are interested please dm me
guys so i have a lot of static npcs in my game but each npc has a lot of welds, ig this killed the performance how to fix?
delete the experience
me cuz i confuse it with python everytime
what function there's multiple
sry for not being clear
GUYS did roblox change their giftcard api endpoint
this code sucks im sorry
yea i already got comments
make your variable names clearer cuz wtf is re and pp
😭
yeah so a remoteevent will only do the code, the thread calling it will not wait until it finishes. You'd need a remotefunction
remote event and proximityprompt😭
oh
is there any other way than remote function
no
can someone test my game
why not
why not use them
``` do someone know why the last function are not executing
you either didn't copy the entire script or you're missing an end) at the bottom
download the file
to see the complete script
there's no end) after
Players.PlayerRemoving:Connect(function(Plr)
SetPlayerData(Plr)
how do i access the catalog to give hairs to people
you mean the GetPlayerData is not executing?
hi hello
cavatareditorservice
yes
the script is waiting here
while true do
wait(5)
task.spawn(function()
walkNPCTo()
end)
end
and then connects to playeradded after a player is added
oh
either put the datastore part before the while or make the while a coroutine
right
also you do realize that pairs() is useless
what is easier for scripting "tower defense" or "clicking simulator"
wdym better
@gaunt acorn its working tysm God bless you
Dude Clicking simulator
Easiest i think
so take my ham its so funnnnnnnnn<3
Can you explain Better tthe error i wanna understand tho
your script is yielding on the while true loop that never stops, what means it won't do the code after the loop
thank you
i need help with my clickign smiulator game
Hwo many years of scripting do you have?
idk how to fix a scriptt
around 3-4
Me 2-3
maybye show it then
im talking in code discussion
its loading
not studio lite 😭
Where do you guys find the idea Of the script
please get away from me
js kidding
any errors or does it just not do anything
provide some context please
brain
top 10 smartest people
Thats what i do
does any1 know how to adjust Lighting so that it doesnt reflect alot, i want the cartoony overall lighting but i cant seem to figure it out
good
Bro is passionate
increase the ambient color and decrease brightness in lighting properties
thank you
I'm using a LocalScript to play a sound. The sound is a child of a part. Why is the sound playing server-sided when the part is touched, even though it's a LocalScript?
am i supposed to create 50 loops inside eachother
yes
can anyone help with the wrecking ball script
How do I make a hitbox?
wdym hitbox
Weapon hitbox
just use a spatial query method
GetPartBoundInBox or some shit
im trying to make a cloud that you can go through from the bottom but can also stand on, how could i do this?
I wanna build a scripting portfolio what should I make
Just enable api services lol
Any coders willing to put their knowledge to the test? Dm me if interested
if i am using client rendered enemies, on death if i want to drag their bodies, should i clone it to the server or just keep it client side and replicate
Huh?
Yo I got to check if the mobileplayers mouse thingy is over a ui element, how do I do this?
Mobile players don't have a mouse
They don't hover over things
But I got a building system, and when the player presses the Place button the block snaps to there
Just keep it in the same position until the next input
Looking to create a game with actual locked in and committed devs
make the block appear when only once they touch screen
for some reason I welded everything to my main door part, unanchored all the other parts and now when I tween the main part the door parts dont follow along, why?
how does map in build a plane work were there is infinite terrain
im trying to make custom water similar to deepwoken and rune slayer and was wondering how to make the character floating mechanic that they use, if anyone could help
for some reason I welded everything to my main door part, unanchored all the other parts and now when I tween the main part the door parts dont follow along, why?
wel why do it like that in the first place friend
It's what I always use for doors except this door is supposed to slide to the side
and it doesnt work
strategy i use is to add a cframe value inside of the model i want to tween and then tween the value of that cframevalue and use a property changed thing to pivot the model
which is much easier and doesn't involve every door being an assembly
yes
why predefine a cframe value if you're gonna add to it
It'd be easier to predefine and just tween to that location
because it's already in the model i just tween that value
but that isnt my issue, my issue is that nothing fucking sticks to the part
only the main part moves, no other part follows even though they're welded and unanchored
yay
You need to tween cframe
i stil believe that this strategy is fun so try it out in the future if you ever have spare time
cuz it cuts down on the number of active assembly which is always nice
This seems like a really funny way to do it though
I get what you mean tho
I just make a door manager script that handles all door logic for me
wel unfortunately there is no easy way to tween models since roblox is evil so that is the simplest way that i have found to set it up
that doesn't involve 9999 assembly
well tweening models is rlly easy though
but your method might be efficient while tweening large models with a ton of parts
the easiest method is just to weld everything to one anchored part
and then move that part
this is my concern a lot of the time becuase i do not like assemblies
well
u gotta do some typing if ur scripting anyway
how can I make my NPC heavier so that he can push you and you cant push him?
turn on customphysicalproperties of the humanoidrootpart, and set the density to a high number
idk if that actually works but it does make the NPC heavier
I just did that thank you
Yo so yk in build a plane they have this system where u can basically pickup blocks and place them how can I do that
why would you play grow a plane
mb I meant build a plane
I’m creating a game similar
And I wanna know how to create the mechanics
can anyone help me debug my server browser
Is there anybody here who is really good with IKControl
What's wrong w assemblies
who needs help with scripting
guys what do i learn after i learn looping and functions? (i know variables if statements)
(pasting this here beacuse no one helped in #code-help
Try making a small game, like a simple obby
How much would combat, dashing and movement cost if its like this. ( Without anims )
alr
anyone know a good scripter mine just bailed half way through because of brainrot models because their against his beliefs apparently
good to see good people these days
not sure how ai brainrot goes against beliefs
it goes
and some ethical things, this is for sure
why isnt it printing neither c or d
what is ipairs() ?
wdym, whats inside fornitures?
maybe Fornitures is empty, try printing it
it's still not printing d so that's not the case
before the for loop, try print(#Fornitures)
its empty
so it prints 0?
{}
you put print(#Fornitures) or print(Fornitures)
either way the table is empty cuz the getpartsinboundingbox returned an empty table
what means there's just nothing in that bounding box
yea
How owuld i go abt ediitng the code to properly weld onto the back left shoulder since i cant seem to find the right co ordinate position
looking for anyone that can give me a job for free, looking to upgrade my portfolio
depends on what u do
scripting,
hmm i do already have 1 on my team tho i suppose it wouldnt hurt to look into speanding
Well what expectly yk how to do since the thing im working on is a rp game mixed w sword n shield combat
i can script with ui, client - server communication, modules etc
and i want to make my portfolio stronger and gain more experience yk
hmm alr
(and i also need to apply for the scripter role)
ill talk w my dev, we are looking to redo our horse system so i suppose u oculd lookinto that n if u do decent job we could take u on fully
alright
I dislike gd
scripter hiring is dry
is scripter hiring actually worth using to find clients?
how do i make a constraint on a location? but rotates to face the camera
like on a ball lets say i add a constrain on a radius of a ball thats idk 5 by 5
i want it to move around the sphere based on the camera's location
like on the sphere
omg wait instead of task.wait
inpairs too
Has anyone made a inventory stacking system
Make ir
thats how u get good
Yeah, I just want something to try to reference and understnad how one is created so I have a baseline
welcome to gardening thyme
"that's what we call, dead heading"
that episode was awesome
but every gumball episode post s1 is peak fiction too so
I never understand what changes from wait to task.wait
uh no throttling(idk wtf that is)
Wait is decapricated or ehatever its called
its more efficent with task.wait
Deprecated i think
Is it just for performance?
Wait is being phased out
Oh shot
Why
I use it so much
I love for _,v in pairs
No. Definitively not, task.wait is definitively better. The differences with wait and task.wait are: wait() can sometimes delay when it resumes the thread because of performance concerns, which is actually bad because you will rarely have those because of it task.wait() updates 2x faster than wait(), therefore more accurate Also: Jus...
Ik but isnt pairs cooler?
verbose
Also deprecated
btw i have no idea what inpard and stuff was used for before but i have never used it
I HAVE NEVER USED IT (dont use it)
So u have a table or folder
For _,v in pairs(folder) gives all the childrens
No
Likely cause of your problem is nothing is being returned after running GetPartsBoundsInBox
It’s the same as :getcgildren yea
No
does it???
The problem was that the table was empty
yeah exactly, nothing gets returned from the getpartsboundsinbox
I think so, i mean i use it for that and it works fine
Cuz getchildren returns a table and tables does not need inpairs
Like said its depricated p sure
I would refrain from using depricated weird stuff
Yea I didn’t know it
What?
Send code
Me poor me need food
and send output
Not me right
nah
And also one use for pairs i rmembee now is mixed tables
B it i have no idea how to use mixed tables and what they are
Neither me
i need proof you are good
But yea When I first learnt how to use for i,v or whatever i learnt with pairs
or good enough to make it work
just send the code's error and the line its erroring at if you dont want to reveal all the code
i dont have a code i just dont know how to make it i just want a a square to project on the face of a sphere
and it follows around the sphere
Only scripting? Or ui as well (good looking)
bit confused what you mean by this
like a UI on a sphere part?
both
no like a cartoon
mesh can go left or right on top of the mesh
hold on lemme finish modeling and ill show what i mean
guys how would you go by setting a player camera to a certain cframe 🤔 ?
not just ui
Hello everyone, can someone from the experienced suggest:
There is this game - "Trident Survival". On the main page, after logging in, a list of servers is shown, and the server region is indicated there, as well as servers that have 0 online, meaning they do not disappear. Does anyone have any idea how this is implemented? How did they manage to make permanent servers? Thank you in advance
HWO DOES IT NOT WORK?
can anyone explain if using knit is worth it if you use your own custom data cache and profile service with oop
Sad I just script
@solar inlet
Add a wait
what is starterplayer?
After repeat
local player?
k
I wouldn’t
uhhhh ok
or add a debounce
local UserInputService = game:GetService("UserInputService")
local RunService = game:GetService("RunService")
local player = Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
local walkSpeedNormal = 16
local walkSpeedSprint = 25
local stamina = 100
local isSprinting = false
RunService.RenderStepped:Connect(function()
if isSprinting and stamina > 0 then
stamina -= 0.5
if stamina <= 0 then
stamina = 0
isSprinting = false
humanoid.WalkSpeed = walkSpeedNormal
end
end
end)
UserInputService.InputBegan:Connect(function(input, gameProcessed)
if gameProcessed then return end
if input.KeyCode == Enum.KeyCode.LeftShift and stamina > 0 then
isSprinting = true
humanoid.WalkSpeed = walkSpeedSprint
end
end)
UserInputService.InputEnded:Connect(function(input)
if input.KeyCode == Enum.KeyCode.LeftShift then
isSprinting = false
humanoid.WalkSpeed = walkSpeedNormal
end
end)```
uhhh im not that advanced
anybody need a grapphic deisgner for there game wallpaper dm me i have pics min price 1k
Use the marketplace for getting hiired
Hello guys I need help on something about my rarity system. Imagine if I have an egg with some pets stored like this ```lua
local CommonEgg = {
Dog = 30, — 30 %
Cat = 30,
Tiger = 15,
Panda = 15,
Lion = 10
}
As you can see the total is **100** which perfectly fit 100% but how could I possibly make a luck multiplier while keeping 100% total ?
U modify the walk speed on the client side
Oh and also repeat needs a wait between each loop
If you're talking about posts in #scripter-hiring, yes you can just DM them and say you're interested
oh alright thanks
whenever i clone a part that contains my vfx, the vfx dont appear even though theyre enabled and at the correct position
https://gyazo.com/b4fb100a7e27edcf121c9fd9ecb829e8
why does he do this? is he artistic???
Can somone help with this friends script? It keeps on printing failed to fetch
its a server script btw
Why does the NPC pathfinding start glitching out so bad, its like generating 5 more paths and hes unsure which one to choose
https://gyazo.com/b4fb100a7e27edcf121c9fd9ecb829e8
why does he do this? is he artistic???
local goalpos = goalasset.Position
local path = pathfindingservice:CreatePath({
AgentRadius = 2,
Costs = {
Neon = 1,
Woodplanks = 100,
}
})
local success, error = pcall(function()
path:ComputeAsync(hrpPos,goalpos)
end)
if success and path.Status == Enum.PathStatus.Success then
for _, way in pairs(path:GetWaypoints()) do
local point = Instance.new("Part")
point.Anchored = true
point.Size = Vector3.new(1,1,1)
point.Material = Enum.Material.Neon
point.Position = way.Position
point.Parent = workspace
hum:MoveTo(way.Position)
hum.MoveToFinished:Wait()
end
else
print("Cannot Compute a Path")
end
end```
No he have bran dimige
deadass bro
Anyone here able to script a catalog via AvatarEditorService? I have the UI already made. Will pay USD
anyone else having problems with datastores today?
Not recently nor throughout the day. Are you getting warnings in the output?
no
There's this game i'm working on where you place furniture in a plot, and when I place down the furniture, it stays. If i have 2 of the furniture and place one down, then leave the game, the furniture in the in-game inventory (not roblox backpack) is gone. Can anyone help me fix?
@bold hound
i made a pretty fast face click detector though most of it was recycled from my old version
hi do yall suggest i have my discord bot on python or javascript/typescript
do scripter evcen put themselves for percentages anymore
It's really risky
cause if the game does bad, then boom wasted all ur time
dam cus im an aninmator an i kinda wanna make the type stud games u get me
im broke....
u should just learn to code ur self fr
but a few scripters do take percentage mostly ones starting out
tryna build experience
Cause ur making a new path continuosly probably
Yea only do % for games with potential and or released games that alr have players
pm if u wanna join dev team of 3 You must script (Everyone can script, me other guy + u.) game currently has 10-15 ccu had 30-40 earlier released today no ads
oop
has 20 ccu rn
😄
lmk if ur interested
guys i have 0 experience in coding any tips?
get experience
yeah i did that dw
ive been banned multiple times AND terminated on this account before 😭
how to learn coding
does startergui:GetCore("BlockedUserIds") not work anymore
Are you using it in a local script
And are you testing in studio or in game
studio and local script
Might just be studio idk
but the error says BlockedUserIds has not been registered by the CoreScripts
Okay I found out that GetBlockedUserIds is only for blocked players in your current server not all the players blocked id's
Oh damn
If you want to get blocked players refer to api
Wdym
roblox web api
local HttpService = game:GetService("HttpService")
game.Players.PlayerAdded:Connect(function(plr)
local url = "https://users.roblox.com/v1/users/" .. plr.UserId .. "/blocked"
local blockedUserIds = {}
local success, response = pcall(function()
return HttpService:GetAsync(url)
end)
if success then
blockedUserIds = HttpService:JSONDecode(response).data
else
print("Error getting blocked users:", response)
end
end)
``` Heres an example
no
I've never heard that before?!
don't u need to be authenticated for this api?
afaik only you could see your blocked list
im lowk just paranoid
no one else
just enabling http won't make u prone to exploiters
if u have viruses in ur game that uses http, yes then u gotta worry
Yeah I was put in the first block api I found lol
I just*
whats ur use case pedro
So yes you do need to be authenticated for it and this will not work
Some things you just can't get with api at all like dev products
Blocked players might just also be like that
I was gonna make a game that lets you check who blocked u but just shows you people you blocked
not possible
but I think I should just use the friends list
Yea ik it wouldnt really show you
What I did for dev products is just made so you had to add them manually lol, I don't think that would work good with a "See who blocks you" game lol
Although you can't view who blocks you anyways so that wouldn't really work either
yk what they say fake it till you make it. Just generate random user ids and display their character model or something. shady but hey lol
nah im just gonna display the players friends lol
fair enough
id have to leave a disclaimer in the description for tos right
yeah false advertised features would for sure go against tos. So what you do is just say the game shows players that have likely blocked you based on statistics. Doubt any one would check into it LOL
this is all in minecraft though
not real advice
nice pfp lmao
anyways im making it under a group owned by an alt

The point of a luck boost is to have a better chance to get the rarer items... So you are gonna wanna decrease the chance for common items, and increase the chance of rarer items.
He already got helped
dm if if you're looking for a scripter
the clicks doesn't increment after i activate the tool, what could be the problem?
you use game.starterpack
to reference the tool
you need to do differently
like for example, make a script in the tool with the tool.activated and just use script.parent
Can someone help me woth that one
hi
idk it shouldnt but i barely read the script so dont listen to me.
yeah same i dont really know what your trying to do but is abit weird for me
Nevermind ive already Fixed !
cool
Yeah that was why
I fixed it now
Yo guys
Do roblox devs have any UI libraries that handle common components like modlas/popups? Or do devs do it manually
Hi there, does anyone know anything about how to use the Microsoft Flight Simulator SDK?
If so, please dm me
What's the point of adding task.spawn/delay/defer to janitor? It would work just the same as without using janitor?
Is anyone here in any large discord servers specifically for p? Would appreciate an invite if you have one.
modlas?
i have added some block placement and removal
woah thats really cool
Doing any works for 5$
I have work for you
Ok dm
the problem by doing this that way, is that if the luck multiplier is high such as 10x luck you will have a pet that is considered as rare have a percentage higher then 100% and so the final result won't be 100%
yo @grave zenith
are u using gui for that?
i am using canvas draw versoin 3.4.1 as my graphics library so technically yes
I see
what do yall think about the thing i did send
that's impressive, what is for?
umm notihng
just got an ide
i first want to make sometihng to paint but i desided to do sometihng diffrent
yes?
it's cool I guess
Hello, you did not ask for my opinion but I will opinate either way, I opinate that my opinion is opinionized
I will opinionate
I just opioned so hard
wait
opinioned*
the insides look tuff
crazy
ARE YOU STILL PAYING FOR GAMEPASS ICONS IN 2025?👀📦
I’ve made a FREE Roblox Gamepass/Badge Icons Pack
(40+ clean, original assets for Game Developers)
And I’m dropping it PUBLICLY 🔓
🔗 Download available NOW: https://t.co/L9YSW5WRVg
Wanna join the Discord? QR code is on the
cash grab games assemble
and by this i mean a lot of em finna use yo shit twin,,,
can be used for anything 😉
got that dw, i was just mocking how a lot of cash grab games use the same assets and they will DEFINITELY use yours 2
i love scripting vfx!
i love the way i have to put task.wait(0.001) in between certain emitters
otherwise they dont do anything!!
exciting
u can just task.wait()
you know leaving it empty is the same right
its literally the same
yeah
if u come across that problem again and it doesnt work empty i wanna see
i love roblox
this is pretty epic thanks man
let me record rq
yes pols
do you take commissions perchance..?👉 👈 
there is a star and a swirl
that doesnt appear after i leave it blank
oh okay
thats interesting
I see what youre talking about
i was just focused on the projectile
whatever works I guess 🤷♂️
I thought it would work the same way
good to know
yeah im not sure why
what kind?
yeah i could do that
You lower the percentage of the more common items. If you need to make the chance for a dog = 0, and give it all to the lion.
yes but with a high percentage it won't fix and make impossible to get rare itme
It will be
Dog = 0
Cat = 0
Etc = 0
...
...
Lion = 100
I would recommend not having the ability for 10x luck, but it's your game 
Dms with previous work
his previous work is in the chat thats why you asked him if he does commissions
that was kinda weird
is there a way to delete this stupid assdeath sound?
absolute goat
Anyone here that wants to tutor scripting for money/robux?
The tutors in the channel dont respond for some reason when I dm
Is there any free global restocking systems out there/Can I use profilestore for it?
you can use profilestore to save the stock
sure i can tutor
can I in profilestore make a table that when changed by a server, updates in all servers?
task.wait(math.huge) is the only way
this guy gets it
script.Parent.Touched:Connect(function)(hit)
local character = hit.Parent
local humanoid = character:FindFirstChild("Humanoid")
if humanoid then
humanoid.Health = 0
r u looking to make a global stock system?
yo
how do I get out of tutorial hell? I am stuck just looking up everything
sup yall
roblox docs are key when starting out
look up everything
and eventually it will become natural
But for example I don’t know what to look up if I want to do something. Like if I want to make a live event I don’t know what to look up in docs
can somebody help me with adding custom r6 anims
is this real : 10 % for scripting a game and a 100 - 1000$ refund if game goes bad
seems real to me
ui channel
yea that seems fair
I wud rec brawldevs playlist
Bro knows 💀
who want to make a game with me
im here
me
your a scripter?
really good?
yeah
Let talk in dm if you want to still work with us
alr
writing for a game, made a few changes since last time. any suggestions on improvements? nowhere near done, concept right now. first is a module i call on the server and second is a client script that ill probably turn into a module at some point
dm me?
hey its me
my account got suspended
@odd marlin
bruh
is using boolvalue for marking player a good thing or any other
marking player as what
like general stuff
example in hide and seek
marking player as a hider
boolvalue isn't good for that
you would be better off with attributes or just storing it in a module
ohhh
okay
thanks
I was trying to optimize my game
u could use a table
how do i return a scripting application i didnt send the game link
if i ask for somone to do work and they did it(in like an hour) and i decline it for whatever reason(uh particularly cuz i dont got enouhg robux to pay them) and i just realised that and i decline it and i dont recieve the work does it count as scamming ( and the person didnt say anything against it in their portfolio or msgs)
no because you declined it
in his case hider or not i think it wouldnt bad enough for him to rewrite the system then again im not that expirienced
depends when u declined it if u did it when he was almost done its def scamming u cant just realize u dont got enough
its counted as scamming , you wasted their time
ur clearly lying but idc since im not involved
why would you hire someone if you don't have enough to pay them
how do i return a scripting application i didnt send the game link
i didnt get it tho so i wasted mine too
hes lying
what?
u did nothing
this is hypothetically btw
on what did you waste your time
idk if im reading this right but if you hire someone to do something, then decline it for any reason at all no matter how much progress they've made, u shouldnt expect to receive anything from them
no you pay him for his work as decided before, else its scamming
thank you
u could be right maybe
no lol if he says i decline while ur already almost done thats not it
its like i pay 20 dollars per hour i work 40 mins and he says no i wont u can go home
its an example
you jsut wanted to hear that you were right
so u can understand the concept im suggestion and the one that is simply the truth
ur not right either
exacly lol like in no world he is right 0
i neeed to ask a actual mod
he is surely go ask any of the scamm mods
i dont understand bro
ok
read the rules bud
imaging someone telling u to do a hide and seek game u make almost everything and then he says i decline'
oh i didnt see that in the rules
its the same thing on a smaller scale
where does it mention an whole game
ik what to do
just ask a mod if u dont belive me idk how u even belive what ur saying
dang ur a wizard
hahaha im crying lol
I have 3 options
bro if he accepts not to cry about it and accepts his fate give him half the money
hope you get banned 🙏
i believe u now because its in the rules, but in some other places like dev forum if u commissioned someone and declined it then your not scamming them, u just wasted their time
i think u need to decline before they start working on it
i can either give him half the money for the time, pay him later + a bit more when i get more money
shi thats 2 options
thats why serious people pay half or 1 fourth of the price before
ik thats what i do to prevent people like me
if he agrees for 1st u r good, else its still scamming
i mean he might agree to that
good idea
ill just wait till tmr to deal with this
yep but u can change your mind, its more of an moral issue some people say its very wrong and some people say its kinda wrong
he is sleeping nayways
ok lets say you hired someone to mow your lawn, after they finished you say you don't have the money
is that scamming or just time wasting
bro its not a morla issue moral issues are not a problem its an acutla scamm
theyve done the work and u got the whats the word
u got the uh
its different
its not any different
its exacly the same thing
not really
if you mow their lawn your actively mowing their lawn, if ur working on a project and they decline just dont give em the project
what am i gonna do with it
you jsut want to hear what makes you feel good brother
and he found an actual follower
since when im asking for advice lol
are u a paid actor?
its scamming
no ? this is literally the first time i chatted in this server
ok lets say you hired someone to make a statue of yourself, once hes done he says can't pay for it
its happeneed to me for smaller commisions but i thought it was normal 
why would I keep the statue of a random person for myself
have you ever done commissions before
then just never give them the statue - yes your time was wasted but you werent scammed
how old are you?
like one on dev forum
how and why does that matter
that is true but also not
im literally trying to help with issues not take sides in an arguement bru
your thought flow makes me think you are not eligible for discord
shi i spent too much time on this im supposed to be working on a project 😭
idk what ur talking about and u dont either imagine if someone tells u to build a statue of theyre grandfather and u do it, they say i cant pay u u can just keep it? READ THIS
is it scamming
bro i didnt read the rule that said it was scamming
its common sense 💔
brother is completely neglecting the effort put into work
im actually wondering if u agree with ur logic given a diffrent situation
Guys do i deal with it now ( he thinks im a bit sus) or do i do it later so he gives me mercy
this servers application process is really weird to me but if anyone needs an old programmer or tutor lmk
you misread my answer
u can just scamm him if u want its ur thing but the problem with it is u dont even know ur scamming like the example i just gave
its exacly what u said to a te
let him know you are paying him later
or see if he agrees for half
i dont wnana get banned(again)
and i neeed thumbails from him too
ok then just pay him what he asked for and never let him see what ur saying now
since ur debating whether to scamm him or use him since hes probably cheap
Then just pay him
ur never gonna make a good game if u do this
alr let me make it as clear as i can then imma go
A - the person who hired B
B - the person building the statue
when B is almsot done, if A declines then, A is not allowed to take any of B's work because he didnt pay for it
ul always have diffrent bad begginer devs that want to work just to do so
i spent all my robux on gag
Still scammed
sad
💀
its ok thanks for the help at least
and he gets scammed bc he already did the statue
and couldve done actual work in the meanwhile for which he wouldve gotten paid
meaning u lost him money not just time
Yeah youre still just scamming
how much are u supposed to pay anyway
@near pelican god why is there so many degens in code-help now
what coding server did a banwave
Yeah its weird
wdym by degen
not contributing to shit
i agree
all the channels are dead exept code help
its just a bunch of skids with nothing to do
who want to work with me in a game?
they aren't even there to talk about anything coding related and just cause arguements
its every day as well 💀
and new people too who proceed to get banned 3 days later and new ones show up
I now know what i must do
////// ¯_(ツ)_/¯
💀
o
I got a question if u can help is using hte same image for ur thumbail and icon bad( obviously wider for thumbail but it wont look streched out) because wont players normally just focus on one or the other before playing

