#code-discussion
1 messages · Page 15 of 1
Press insert
teehee
oh that is to reference another script that is called "Camera"
what
interesting setup
ye im new to this stuffs 💀
omg
i know why it was causing trouble
it was because i named the script "ControlScript"
💀
yea u messed up there
im watching dev king tutorial any other recommendation???
for basics?
He's pretty outdated atp
yeah
but if i wanted to learn stuff more advanced you guys have any recomendations?
You can learn basic stuff by youtube tutorials tho I dont recommend it myself but it works
master Rigs and npcs
also be careful of deprecated stuff
suphi
those youtube tutorials tend to have tons of deprecated stuff since most are old
Cant believe I forgot about him
Sometimes I forget that he has a youtube channel and see him as "Suphis datastore owner 🔥" only
now thats one messy inventory
indeed
this hurts my eyes
question pls, any ideas how i can make it so whenever the player interact with an object, it creates a bubble-like text on top of the player?
make an image gui with the image being a bubble chat liek thing
then enable and diabel it
billboard
i just spent an hour trying to fix a bug just to remember that lua starts arrays at 1... ive been doing too much coding in other languages
do you have a lot of plugins
no
a few like for data ui size automation character loading moon animator
how
jk haha
whats the error
bro
Does anyone know how to set custom characters for teams? I spent a whole day but couldn’t figure out
Would be nice if u guys helped
You need scripts to do that
set player.Character when player.Team changes
Guys is it possible to Showing a certain part of someone's screen live?
tou guys are gay
I have a bug that I am not sure is even a coding bug, might be a roblox studio bug. I have this code that is supposed to create a cframe to position a wedge in a triangle, but it causes the part to appear hollow on server and it has another orientation on the client. Very strange. Here is a test code to replicate the bug:
local function getWedgeCFrame(p1, p2, p3) -- vector3 points that forms a triangle
local v1 = (p2 - p1).unit -- base direction unit
local v2 = (p3 - p1).unit -- side slanted upwards direction unit
local normal = v1:Cross(v2).unit
local slantedSideCenter = p1 + (p1 - p3) * -0.5
local wedgeCFrame = CFrame.fromMatrix(slantedSideCenter, v1, normal, normal:Cross(v1)) -- this fromMatrix operation is what causes it
local correctedCFrame = wedgeCFrame * CFrame.Angles(0,0,math.pi/2) * CFrame.Angles(math.pi/2,0,0)
return correctedCFrame
end
local wedgePart = Instance.new("Part")
wedgePart.Anchored = true
wedgePart.CanCollide = true
wedgePart.Shape = Enum.PartType.Wedge
wedgePart.CFrame = getWedgeCFrame(Vector3.new(1,1,1),Vector3.new(1,1,-5),Vector3.new(5,3,1))
wedgePart.Size = Vector3.one * 10
wedgePart.Parent = workspace
return correctedCFrame
My mistake. However, I have found that the bug is caused only by the CFrame.fromMatrix operation. I will edit the code to highlight
A CFrame internally expects a right-handed, orthonormal basis for its rotational part. If you pass in vectors x,y,z to fromMatrix which do not follow the usual right-hand rule z=x×y, then one axis can get flipped in the resulting matrix
How many raycasts can a server handle? I'm using them for npcs and there will be a lot of them, But I'm only going to raycast to the floor
when moving
2 weeks of scripting is this peak ?https://gyazo.com/6f4e02d1a54e5de54c4f1c0085900f50
you always have something to learn about code so that's not peak of scripting
Raycasts are cheap, so dw abt raycasting every frame for one npc to the floor.
alr thanks
is there any assets where its a tool that can place a model that has unanchored welded parts
No
Very nice
👏
ok
For a small commission he can set you up for a couple bucks
you could just create a weld with instance.new
idk how to script honestly
im just trying to get a tool that can do that for a model i made
oh
you could try like making the model just 1 part and then cloning it from replicated storage or smth
if it was 1 part then the welds wouldnt spawn in
i have a tool that can spawn any anchored part
thats the point
if its 1 part then you wont need any welds
but when theres multiple parts and some of them are unanchored and welded to a part
no it needs welds, its a turret and theres a piece that has to rotate and shoot and stuff
oh
you could try just storing the whole model with the welds and then clone it when you need it
right it is, its stored in lighting and then the tool grabs it from lighting and places it where you click but it doesnt grab the welds
you could maybe try grouping the entire thing as a model and then cloning the model
it is
can you show me the code?
just gimmie a second
why is the model in lighting?
uhh
how do you code in lightmode
this is also a great question
did you write this script?
hell no
if the model is not in lighting then the script wont work
it is now
yes
the script defines the variable as something in lighting
it was when i tried it as well
if its not in lighting then it wont get a model and the variable will just be nil i think
i deleted it a while ago so i had to set it up again when u asked to see it and wasnt sure if it was supposed to be lighting or under the tool
but yes its in lighting and it still doesnt really work
it looks like its supposed to be in lighting
try moving it to replicated storage
idk why the person who made this would put it in lighting
okay and changing the script?
that seems really weird
make it "game.replicatedstorage:findfirstchild(placeablename):clone()"
yeah
okay gotcha
and another question
?
if you are meant to be placing this model multiple times then why is the clone only made once?
its whatever dont anwer
i think this part is onlly meant to be placed once
that is what it looks like
nah just once per tool you have
yeah so thats probably why
yeah
yes this is so machine gunners cant spawn in 1000 machine guns
only meant to be placed once
are the welds set up correctly in the model?
i dont see anything about creating welds in the script
yes the welds are set up correctly i the model
the gun is fully operational in the game
except when u try to place it using the tool
i might try to get someone to make one specifically for this
yes
maybe
it is possible for it to clone that right?
i think so
i probably need to get a scripter for this
i feel like its with this part right here
yes thats what i was looking at
because the function only "gets" the stuff that is a part
no, only the stuff that is a part
that function gets the things and stores them in a table
Thank you for your response.
wait so
i spawned it in
using the tool and stuff
and it does have all the scripts and welds in it
but it is broken
look inside the weld constraint
see if its set right
hm
i think you might need someone a bit better than me for this
because it should work perfectly fine
what i want to know is why the person who made it didnt just clone the whole thing and put it where your mouse was
yo any experienced scripter here dm me i need some help ngl
i got it to spawn in the entire thing now
the parts that werent spawning had a script that auto welded and i think that script is not working due to the tool
@humble portal
so i added welds to every part that was under that auto weld thing
thats weird
idk man
it should work as normal as far as i know if it cloned everything correctly
added a press e to sit script imma see if that works
might work maybe
maybe the hiring channel;s
mr beast ahh font
Guys help
How do I make this (when you go on it, it gives u 1 rebirth the script) into a buyable +1 rebirth, I already made the UI and Dev product
script:
local part = script.Parent
local db = false
part.Touched:Connect(function(hit)
if not db then
db = true
local hum = hit.Parent
local player = game.Players:GetPlayerFromCharacter(hit.Parent)
local leaderstats = player:WaitForChild("leaderstats")
local rebirths = leaderstats:WaitForChild("Rebirths")
if hum and player then
rebirths.Value += 1
local humrootpart = hit.Parent:WaitForChild("HumanoidRootPart")
local spawn = game.Workspace.StartSpawn
humrootpart.CFrame = spawn.CFrame
end
wait(3)
db = false
end
end)
https://gyazo.com/aa13cc51a5aa393f8d314081e6413b44
Fixed up my notification system, the queue wasn't processing if two notification was created at an instant, now it does
the root is apart of the characyer
character
so what’s wrong?
That is my script
yeah I kbow it looks right
I want to make it into a buyable thing for +1 rebirth
So when they click on the UI it gives them a +1 rebirth also
when they purchuse it ofc
I have my UI set up and my dev product already
localscript with ui button, prompt purchase on click. Activate +1 rebirth on success of purchase
Use remote events !!!!!!!
When Button is pressed, fire serverscript wich gives you plus 1 rebirth
my friend put this local script into the Ui already
local ProductId = 3224459393
local Player = game.Players.LocalPlayer
local MarketplaceService = game:GetService("MarketplaceService")
script.Parent.REBIRTHBUTTON.MouseButton1Click:Connect(function()
MarketplaceService:PromptProductPurchase(Player, ProductId)
end)
yes
Then you have to do it different
You have to make a main serverscript
For all your devproduct ß
And….
It’s a little long to explain
yea
put it on the server and make a function ot process receipt
😅
return the purchase granted or not process yet enums
I dont know shit abt coding btw, my friend made that code for me
just take my code for it idc
If it is, you can give 1 rebirth
how can i change this into a +1 rebirth
Show whole script
That your friend made
With the Process Reciept
I can’t send you code because I’m on phone
can somebody help me I made developer product and i would like to make ban everyone script but idk how can i do that (Button is already scripted) but i need the serverscript
Type in Google, roblox Studio how to Ban Player
just kick all children of playerservice on the server when its processed
And then Loop trough every plsyer, and ban them
for i, v in game:GetService("Players") do v:Kick
Buut i want to make 1 kick everyone button and one ban button it should be like 5 minutes ban 😅
that seems stupid for a dev product
Yes
losing players lol
Yes
use os.time
when the purchase is granted check the os.Time and set it as an attribute on the player
on join check if they have that attribute, if they do check the time, os.time + 300 seconds is the current os.time, allow join
Attributes are stored on player instances?
yes they can be
use a datastore to secure it
You could ban all players in process reciept, then wait 5 min, and unban them
I aleady had code (from AI) and it was wotking but next day when i tried it again it didnt work idk why 😂
it wont be serverwide without an attribute or value
with a datastore
Ok that's what I thought I was like girl no way that shi saves.
you need a datastore to check the time across servers
Bruh typing on phone
No
You can just do task.wait() in server script
And it will wait
In the Server
? but if its a different server?
how is that a ban
There is a script to ban a plsyer in the whole game
I forgot how
It was like BanAsync
I think
Then the plsyer is just banned from the game
Whole game all servers
sounds like custom api
it should be only for 1 server
then you dont need attribute or datastore lol
is get marker reached unreliable?
oh no my bad it should ban players from current server but they cant join other servers if u know what i mean
oh yeah banAsync is a thing, i guess i overcomplicated it
i dont use playerservice enough
is anyone willing to help me add a Free and Buyable Flashlight to my game? I understand most people wouldnt want to for free so If you dont then just dont reply to me.
So then they are banned from whole game, because they can’t join any other servers?
Data store the banned users
And do a check when they join to check fi they are on the banned list
If they are kick them
thats what i said but apparantly banasynced is a thing
Oh i forgot about that
Bro you want to ban from every server or one server
What now
If every server: BanAsync
Use banasync
If one server: data store
anyone know a good way to do recoil? I have a basic one made but it feels very scuffed and delayed
camera changing
how would i make it go back to the old pos? after you stopped shooting? like local OldPos = camera.Cframe?

store it an lerp based on a few parameters you chose
👍
i started a gun thing but never finished it
Humanoid.CameraOffset I think, try to mess around with it
its kinda trash but this is what i have for recoil
I used it and it worked well
I recommend using brawldev tutorials if you're ever struggling. It's great, helped me lots
Holy
does anyone know how to make a hose script and mind tutoring me?
how do i make a button in roblox studio that sends a nuke to china irl when you press it
i have personal beef with this one dude ngl so i wanna settle it rn
any tips on how to make it?
💀
just use an api authkey connected to a external source that has the authority to do that
thank you, china will be off the map of the world in approximately a few minutes
what would be a cool obstacle for a crossy road game other than the basic stuff?
what could cause a ball to lag like slow down, but the rest of the game to be completely fine?
does anyone know how we can make it so shopify api connects to discord python and we can pull order id, email linked on order?
what do I even do about this its a roblox script
wait for roblox to fix it or u can file a report to roblox nothing else you can really do
I made 3 local scripts which are: Sprint, Slide and double jump. But I don't know how to make it so that when, for example, I'm doing sprint with Left Shift and I jump, the sprint stops working.
You’d need to put them all in the same script
yall, got a bit of an issue.
Just made a script to spawn players sat down on one of 16 chairs available upon joining.
Issue is once in a while my character ends up glitching and sitting on the floor. What could be the reason?
That's really annoying ngl
Could do module scripts, then compare values and call the functions
You have to weld the player to the chair manually
uh
I just placed seat parts(the default ones) on the chairs
and the script loops thro them to find an empty one and forces player to sit on it
Yeah if you want to force them to sit you have to weld them manually
At least I think so
Seats are so sucky
I mean script itself its working as far as i can tell
Or are you just teleporting them to the seat?
like im spawning sat down on a random chair
its more like every so often i get sat on the seat but tehn char glitches
and like i am still sat down...under the chair
local Players = game:GetService("Players")
local ChairsFolder = workspace:FindFirstChild("Chairs")
Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
character:WaitForChild("HumanoidRootPart")
local humanoid = character:WaitForChild("Humanoid")
local availableSeats = {}
if ChairsFolder then
for _, chair in pairs(ChairsFolder:GetChildren()) do
local seat = chair:FindFirstChildWhichIsA("Seat")
if seat and not seat.Occupant then
table.insert(availableSeats, seat)
end
end
end
if #availableSeats > 0 then
local chosenSeat = availableSeats[math.random(1, #availableSeats)]
character:SetPrimaryPartCFrame(chosenSeat.CFrame)
task.wait(0.2)
humanoid.Sit = true
else
warn("No available seats!")
end
end)
end)
thats how im doing it

Yeah don’t use set primary part CFrame
Use pivot to on the character model
Setprimarypartcframe is deprecated
But err
ah mb
I think you also have to weld them to the seat
Otherwise they can fall off the chair
ah btw u can do lua availableSeats[math.random(#availableSeats)]
Ill try and see if I can fix it then
im guessing to replace the whole
if #availableSeats > 0 then
local chosenSeat = availableSeats[math.random(1, #availableSeats)]
this?
ye im still learning so my scripts are not the most efficient ones ngl
if #availableSeats > 0 then
local chosenSeat = availableSeats[math.random(#availableSeats)]```
ahh ty
so just replace what I used with the one you said?
ok ty
PivotTo
guar clause it
just tried it and jeez
Like ill use it now that ik the other one is deprecated
But like when spawning my char seems to be spawning midair to then fall on the chair AHAHHA
Yea cause pivot to uses the origin of the model instead of the primary part
like it works cuz i get sat down its just weird seeing the character fall onto the chair like it just jumped to a sat down position
ahh makes sense. Thank you!
So what im seeing is not an issue whatsoever
About welding them to the chair, I create the weld inside the char right?
it clause guar

do it
atm I am doing it with humanoid.Sit = true
not much difference im guessing?
I think the seat method makes a weld
Just setting sit to true just makes the player sit down on nothing
I mean the seat method actually attaches you to the seat rather than just changing your state
ahh makes sense
Ill change it up then
Does the Spatial Voice API have the capability of amplifying and reaching further, like you are on a stage talking to an auditorium?
Who can help me fix bugs in my game 😭 I’ll give ‘em robux giftcard
How much robux
$10-$20 dollar card depending on how much they can fix
How much Robux is rhat
My boss IQ is zero 😭
That*
Like 2.2k?
I can check
oh yea 2.2k
The bugs is this
I just added a new sword with a power called dark defense
And my boss HAS ZERO Iq aka pathfinding issues
Doesn’t target closet players near it
This is my soul game next level will def be front page soon
thought the bug was that insanely big GUI
It is!
So many bugs
Yes 😭
so you mentioning 2 bugs rn
Yeah
Every kill it’s suppose to give you 10% more dmg reduction and make your shadow aura bigger but instead it steals jealth infinity and give you so much
I can show you in live game
so instead od dmg red it does life steal?
The problem is my pc is broken end the guy who relessed it is on vacation now so i can’t access it yk
YUP
ripppp
Instead of reducing dmg it steals there health
how do u plan on fixing that with no access man
I wanna pay someone to get in for me
And ss
My players are so mad
they are 2 completely diff things tho...theres gotta be some missup imo
like giving the wrong skill to the sword
Well the sword is dark heart sword so I think he kept the power of its orginal power
aaa so u can js give someone access
I don’t know how it breaks the health bar
Yeah I’m the owner
You wanna check out the game it’s pretty fun my user AfroWest
ye sounds like the issue lol. Doesnt sound like a bug to me
like the skill is working ig...its just the wrong skill
The bug is having unlimited health
No it legit breaks out is
jeez how many ccu are there?
sure why not
ahhh fair
I dont know how to help ya tbf but Id guess that the health issue is you dont have some like max health limit to prevent it
ye aboutta run roblox
Ah probably
js sent friend req
having one should prevent the issue imo
unless its the lifesteal itself done wrong
Like logically it works that u get a % of dmg done as HP until you reach max HP so the issue might lie bthere but irdk how to help
Ok
ok js join game and imma join u
should i lock in for a week and just remake rdr2 (only some mechanics)
Good luck lmao, it would take you at least 2 weeks to make rdr2
I mean likeeeee
gun mechanics probably only for revolvers
and npc mechanics
I’ll add it just for you 👍
That's my man 👍
Guys 🤔
What do you think about storing all of your Gamepass IDs and Developer Product IDs in just 1 script (module script) in ServerScriptService 🤔
Good or bad?
I wanna start taking crap commissions for coding just to hone in on my skills but why do these people think their entitled to full raycast gun systems for 2500 robux
yo guys i need some help with my combat blocking script and #code-help is not exactly in the mood to talk
local UIS = game:GetService("UserInputService")
local char = script.Parent
local humanoid = char:WaitForChild("Humanoid")
local animator = humanoid:FindFirstChild("Animator") or Instance.new("Animator", humanoid)
local block = script:WaitForChild("Block")
local blockTrack = animator:LoadAnimation(block)
local keybind = UIS:IsKeyDown(Enum.KeyCode.F)
-- Return whether left or right shift keys are down
local function isKeyDown()
return UIS:IsKeyDown(keybind)
end
-- Handle user input began differently depending on whether a shift key is pressed
local function input(input, process)
if process then return end
if not isKeyDown() then
blockTrack:Stop()
humanoid:SetAttribute("Blocking", false)
else
blockTrack:Play()
humanoid:SetAttribute("Blocking", true)
end
end
UIS.InputBegan:Connect(input)
keeps giving output: unable to cast bool to token
btw UIS:IsKeyDown() returns a true or false so instead of doing
local keybind = UIS:IsKeyDown(Enum.KeyCode.F)
do
local keybind = Enum.KeyCode.F
anyone tryna go 50/50 on a game 😭 🙏
Yo I’m in tutorial hell what do I do 😭
Me
are you a scripter
no i can build tho
i need a scripter 🙏
O
@pseudo ether i can help but i really really suck at scripting
if i help we may need a third person to help lol
but im learning
Me
u wanna work on something with me
Sure
its 11 so i gtg in like 45 mins
Ok
why not lol i havent really done a project
DMs?
yeah
Same
ohhhh
u right thx
Public toilet RP
break your problems into simpler steps then apply the stuff you already know
how do i test my anti injection scripts
Do you have any smaller beginning projects I can do
maybe one of those clicker games where you click a button and stuff goes up
then you can buy stuff to increase how much you get from clicking
Thank you! will do that fs
make minecraft
inject 
How
an incremental
can someoen slide the safe teleport module pls thanks u
But none of the scripts I tried worked, can YOU help me?
what scripts did ya try
anyone here using vim + luau-lsp?
https://www.roblox.com/games/75965306756161/Color-io
How much would you charge for this?
🌟 Welcome to Color io
👑In this game the player has to compete with other players to capture the entire arena.
💀Players may defeat others by running their head into other tails.
🌟The point of the game is to capture as much territory as possible by encircling it.
👍 Be sure to like and favorite this game if you enjoyed it! ⭐
Only the main mechanic
Just the mechanic
I can make it, but I want to know what the average rate is now
Interesting, I see it as a 2 hour system so was expecting like 30k robux
like 50$ an hour worth of work
Anyone here own erlc servers?
i need desperate help pls 💀
i want to make my character clone to be able to interact with other objects (using touched:Connect ect ect)
however the clone just doesnt seem to work
i am using a local script tho
so it should detect the clone right?
another this is i made the clone move by having its body part mimic the players CFrame
im not sure if that affects anything
ye but im using a local script inside my StarterPlayerScript tho
so it should be able to detect on the client side right?
i switched from string values to attributes and now when i fire to client, it doesnt work as intended
-- {Variables} --
local plots = game.Workspace:WaitForChild('Plots')
local replicatedStorage = game:GetService('ReplicatedStorage')
local ownerDP_REV = replicatedStorage.RemoteEvents:WaitForChild("OwnerDPEvent")
-- when a player joins
game.Players.PlayerAdded:Connect(function(player)
for _, plot in plots:GetChildren() do
if not plot:GetAttribute("Taken") then
plot:SetAttribute('Taken', true)
plot:SetAttribute('Owner', player.UserId)
local ownerDisplay = plot:FindFirstChild("OwnerDisplay")
if ownerDisplay then
local ownerDisplayGUI = ownerDisplay:FindFirstChild("OwnerDisplayGUI")
if ownerDisplayGUI then
local ownerDP = ownerDisplayGUI:FindFirstChild("OwnerDP")
if ownerDP then
ownerDP_REV:FireClient(player, ownerDP, player.UserId)
end
end
end
-- set spawn location for player
local spawnLocation = plot:FindFirstChild("SpawnLocation")
if spawnLocation then
player.CharacterAdded:Connect(function(character)
character:SetPrimaryPartCFrame(spawnLocation.CFrame)
end)
end
break
end
end
end)
-- when player leaves
game.Players.PlayerRemoving:Connect(function(player)
for _, plot in plots:GetChildren() do
if plot:GetAttribute('Owner') == player.UserId then
plot:SetAttribute('Taken', nil)
plot:SetAttribute('Owner', nil)
break
end
end
end)
CLIENT SCRIPT:
-- {Variables} --
local replicatedStorage = game:GetService("ReplicatedStorage")
local ownerDP_REV = replicatedStorage.RemoteEvents:WaitForChild("OwnerDPEvent")
local ownerDPUpdateEvent_REV = replicatedStorage.RemoteEvents:FindFirstChild("OwnerDPUpdate")
ownerDP_REV.OnClientEvent:Connect(function(ownerDP, userId)
print("on client event triggered with owner dp: ", ownerDP, "UserId: ", userId)
if ownerDP and userId then
local success, image = pcall(function()
return game:GetService('Players'):GetUserThumbnailAsync(
userId, Enum.ThumbnailType.HeadShot, Enum.ThumbnailSize.Size420x420
)
end)
if success and image then
print("Thumbnail loaded successfully:", image)
ownerDP.Image = image
ownerDP.BackgroundTransparency = 1
ownerDPUpdateEvent_REV:FireServer(ownerDP, image)
end
else
warn("ownerdp or userid is invalid:", ownerDP, userId)
end
end)
Umm guys it's me again I need your guys help
What will I use like example
The time is 18176 and the player leaves it will stop and if player join it will play mine is like if player join and it will start timer and if player leave and join the timer will restart
not 2 hours to make that system
unless you use ai or prebuilt code
i think i got it now
Anyone know how i'd change the console default gui navigation selection button to something different? Like rn its the button in the middle of the control pad and then u have to press a button on your dpad depending where you gui element is on the screen
does it have a hrp, humanoid and is it joined together?
yeah you gotta join it
im new to studio and tryna create a stud roblox game
how do i do allat?
I'm back!!! Yay. I just made this rigging tutorial here! I'm also aware about my inconsistent video styles. Sorry about that. I just don't have that type of motivation. Anyways, Enjoy. :)
RigEdit Lite: https://www.roblox.com/library/1274343708/RigEdit-Lite
▶️ Subscribe to EpicallyPNG: https://www.youtube.com/@epicallystuff?sub_confirmation=1
...
this will explain and provides a good plugin
its fairly easy too
bro chat
Does the parts front surface matter?
i dont think so
but id do it just in case
anyone have challenges for me to script [i have a month of roblox coding experience]
anyone down to make a game in 3 days? i am a scripter, js need another scripter or builder
what game?
i mean i kinda want to but i cant anyways since im going on vacation tomorrow lol
so no pc
not sure if i could do it today but when i get back i wouldnt mind
🔥
i wanna start taking shit coding commissions so i can build out that skill tbh the only problem is everyone in the hd servers expects full raycast gun system for a cool 2500 robux
If you want to do the skill, look at the commissions, then do the ones that challenge you, regardless of pay.
(Do it without applying/selling if the pay sucks, then add it to you portfolio)
can anyone help me scripting for leaderstats plss
ye sure
Anyone knows how to fix my issues with layout order not updating properly or bugging making mutliple notifications overlap?
What even is the purpose of local variables
global variables are better in every way
I dont see whats the point behind it
I think you shuld just fix it
fixed it
i’m not even worried about the pay i’m worried about the absurdity of the people offering the pay 😭
Great
as i said i make enough doing ui already
Ok give me the coding earnings
since u have enough
Na
My Po box is always open
The greed spoken about in the 3 holy books
How do I make a button when click make a person auto walk
Dont know about auto walk but i do know about the button click
if button touched autowalk
Does it have it so that we can click a button to activate it?
I know nothing abt scripting really
no you need to look that up separately
Can anyone help me with this?
hurting my soul
Uhh
selling highest bid gets it
alr cool
wait a minute I know that game
why u selling it?? It has 3k active
ok yea… I’m just gonna back away from this….
yes
find me a copy if u can
u there
are u willing to buy it?
We already got it
lmk
You wrote it
anyone here need Script Or UI?
maybe in future
if u want script help u need to write at #code-help and if u want UI help u need to write at #dev-discussion or #interface
if u want to hire #scripter-hirable #interface-hirable
add me friend
dm
looks like the 593592th sports simulator in roblox
yh ofc
u can make alot of money out of it
too bad its stolen
anyone know if there’s a module for animating buildings?
Does anyone have experience with editableimages? Im trying to create one and failing lol
local AssetService = game:GetService("AssetService")
local existingImage = script.Parent
local newEditableImage= AssetService:CreateEditableImageAsync("rbxassetid://96196082353695")
script.Parent.Image = newEditableImage
Error: Unable to assign property Image. ContentId expected, got Object
needs contentid
How do I disable the roblox text box chat?
:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)
on StarterGui
yes but how?
it still somehow has the whole box
sec
@vital creek back sorry
do ImageLabel.ImageContent = EditableImage
yo wsp guys
the countdown aint even centered 😭
#code-help btw
highest bid is 1 penny right?
fuck, you can have it 🙄
if camera is on a part of different world while player character is another world
--> stuff like (lighting) loads for which
the one at camera or ones at character
unholy ai predection
Does anyone want me to do some scripting for them? i need to show examples in my portfolio so its free
Me
check DM's
free work is pointless @toxic grove
look at some of the higher paying posts
and do the coms
then add them to your port
so next time when you apply
itll look like you're more competent
yh when they need a porfolio
yeah exactly you build your port with their tasks
like you're not doing the com for them
that is so mu8ch
you're just looking at the task and doing it for yourself
then putting it on your port
scripting health GUI aor so ez
Wanna do it for robuz
Bro I try do do comms but first thing they send when they dm me "Port?"
how much
You say
did you read what I said
you're not applying
you're doing it on your own
then just putting it on your port
1.2k-2.4k 🙂
😭
What...
This server is so disrespectful
show your dms between gornix rq
Hire devs
Probably
this is certainly not enough to hire an entire team of developers
Its 50 bucks!
you would have to hire at the very least 3 developers for building, scripting and ui design. equally this amounts to 3.2k robux per developer

Try to get someone who can do low pay commissions and make cash grab games to earn more robux and then. Make the game you wanna make
for current devex rates it's $21.70USD
This is all i have
for the us minimum wage average of $7.25/hr that amounts to basically 3 hours of work
learn some form of development and complete commissions to gain more robux
I am afraid someone will scam me... i dont know the prices!
Learn to make games yourself
Make a game idea, then share with others
Maybe you’ll get investors or a publisher.
I have the tiniest bit of experience in scripting!
Any price is fine to start
Raise it as you get better
nobody invests in games, let's be honest. % compensations are dead, and nobody is going to freely invest in a game that's not even in staging yet
this isn't an IPO
Fair point
I only have monster blender design. And jumpscare stuff
I think with 6k robux you might be able to create an cash grab honestly.
PIDGIN
how would this work logistically speaking
I dont know how to make cash grab!
Like
Should i just put gamepasses all over the screen?!?!
does anyone know why it doesnt let me upload the ugc, im literally age verified and i have enough to upload
I mean there is literally plugins to generate an entire tycoon or simulator game for you... use one of those maybe some free models and at least you might have a working game maybe... take 3k and advertise with it you might earn some money
one of the last commissions i did was for an individual who wanted a game which you could try on different outfits, as i created both the UI & scripting, we agreed on a compensation of (iirc) ~32k robux, it was paid 50% mid-way through the project, and 50% after the project was completed
let's say you're able to successfully create a tycoon or simulator "cashgrab" game. great, the game's finished. only issue now is, where are all the players?
That's why you advertise those stupid simulator/ tycoon games are still kinda working today honestly
32k?!?!??!?!?!?!?!!
I have a tiktok sharing my progress its starting to build up
you're going to need traction for your social media platform & you're going to need more money to advertise effectively to a high amount of players
I mean 5k advertising got me about 200 players / visits but my game was too buggy so they all dipped 😭 I think it was about 5k
use around half it or dont do user any of it 🙂
which way did you advertise? banners or promotions
Half what??
Promotion is the best i heard
❌ Promotion is the best
✅ Promotion is the only way
user ads were removed circa '24
Promotion makes your game go to the front page
I did sponsored and image ads
I think
It was a while ago
Obviously though if your game can't hold players like mine failed it's not worth it at all
last time i checked promotion had a low cpc for even 10k robux
but this was before sponsored ads were moved to the sponsored ads manager & i don't handle that because i've never founded a game
Idk bro all ik is that I got about 200 visits and it was because of that
minus the user ads from this total
Also never release a buggy game 😭
i don't do that "bugs" thing
?
I need someone to help me with decisions. I am the worst at making decisions....
welcome to the jungle
i am an elephant named 8ff and i roar
Can you help me?
give it all on pls donate too look cool (pls dont do this)
i have been on roblox for 11 years
i am resting
i have done my charity work
Do you think I WILL?
I need someone to help me with decisions. I am the worst at making decisions....

do you think i wouldn't warn you if it was a valid reason 😭
learn scripting more and make a bunch of proof of concepts games; build your portfolio; gain robux
ngl though 32k for your first commission is insane
Fr
it wasn't my first i made a mistake on that one
o
my first was many many many years ago
Generational wealth
thats good, my first one from here was 35k
bruh
my first one was a scam and my second :<... and then i gave up
howd you get scammed
in experience
i don't get how people get scammed dude just do a 50% 50% payment, 50% in the middle, if they don't pay, you didn't complete the entire comm so it's not horrible, if they do and then afterwards they don't, atleast you got 50% of it
idk i feel like i was stupid a year ago
that's also why i host all my code on private sources, i show them that it works, that it's able to do things, and i don't let them have it until they pay me afterwards too
since i'm obviously not going to run off with the money without giving them the full game--i already made the damn thing
Uh
i told someone i was gonna do that then they just didnt respond to me, obv scam attempt
depends how you learn tbh
i prefer roblox documentation but tutorials seem to be helpful to everyone else
if you have never done any coding whatsoever i use to watch devking and alvinblox tutorials
both outdated
maybe but concepts still apply
? what are you yapping about
idk i just do 1099 agreements now
don't pay me? get sued
wth is 1099 agreements
irs form 1099 is a tax form used for contractors
for roblox commissions???
it's colloquially used to refer to the type of work someone is doing (like contractual, hence me saying i do 1099 agreements)
add memory leaks throughout the code if you know youre gonna get scammed
anti lag scripts all the way
i barely do roblox comms now and yes i require contracts for roblox comms
the 500 connections i have in the anti lag script that run after 10 minutes
how much is your commissions on average if you wouldnt mind sharing im just curious considering you make law binding agreements
lmao
for out of roblox?
any
a couple thousand
oo
$2,000 doesn't get you very far in life when it's your only source of income
depends on the country fr
the median mortgage payment in the us is nearly $3k/mo
welp... in my country earning 2k dollars is above the average wage per month on google... and much higher then what i see a lot of ppl getting paid per month if i convert it to dollars its like 450 dollars a month
which impact frames are better, image ones or color correction ones
ethiopia has a avg wage per month of $69.97
welp
that doesn't account for the housing market, what % of the country is in poverty
if someone's making $5/year that doesn't mean houses are $2.5/year
so take that into account too
yeah 100% but ill say that if im able to pull an income of like 3k usd a month i would probably focus only on that and nothing else .... that's why im kinda trying to make some roblox games i was told a highly monetized roblox game can be making somewhere from 200 - 1k robux per day for every 10 ccu but i doubt i have the skills to actually do it so... my studies have to take priority for most of the day welp if i somehow make it though it might actually be viable for me
wish u the best
welp thx
hi
I’m making 200-300 robux per day from 2d clothing
o sickkk
ye if u want to make around that amount just do 2d clothing
if i wanna focus on roblox i gotta make 30k robux a day 😭
guys how do i start off on learning coding for game development?
idk about 2d clothing but from what i have been told games make about 200 - 1k per 10 ccu but it depends on the monetization ... so i need about 500 ccu in my game if i want it to be a thing unfortunately but the 2d clothing thing seems fun for some side robux fr ... do you have any tips
the dev king
on yt
and then roblox docs
tysm
np
is that how you learned?
yep
okay
also make as many systems you can
hi guys
hi
i was wondering if any of you had beginner coding ideas for me so i could build skill and understanding
how much do you understand about coding
just the basics and a little of the complex
gimme some of the stuff you know by name aka functions modules etc
client server stuff
i know all of the basics like vars,functions,parameters,returning,loops,statments,i,v pairs and thats all
are you there?
okay.. it might take some researching but try to make an obby game... it should have
checkpoint system that can work for 2 players at the same time
a death counter and wins counter
an ability to skip stages
kill blocks you coded and whatever else you can come up with don't use the toolbox unless its for models not scripts
sure
rate my editor
y=mx+b
anyone here ever attempt to make a game similar to rise of nations?
once but i failed
how did u make the borders?
im bored in studio
im thinking generate parts based on the border outline
and then union it + fill it after
and generate a terrain for it
Each city i placed had a radius that i coded
so when the players troops take over said city it took over that radius of area
the terrain was pre generated
ah yeah radius
and colors change to whoever is taking over
theres like alot of stuff that goes into it
just some simple procedural generation but do it by making your own perlin noise
yeah pretty much basically the city had a stored value of the country id that owned it... if a player owned the cities radius i gave it was given to the player then i just used parts to overlay it
I there a way to unpack a table into another one without having to loop all of the table with table.insert?
I want tab to be added to tab1 basically
without looping it
what do you guys think abt this code that i made
does it work
yeah
put it in a local script then put the local script in StarterPlayerScripts
you can't combine tables like that
and its also because table.pack creates a size field n
thats how long the array
wdym it does combine
table1 only has 1 element
if table1 has more then 1 only the first element would be in the combined table
oh
is there a way to combine 2 tables without a loop?
table.move
ok thank you
I am using the UGC homestore template and need to edit proximity promts, but they do not show up unless I play test, anyone know a fix? pwease ><
Am I doing this loop correctly? doesn't seem to work even though I'm for sure it should
I've never done a loop like this before though
Dooes anyone know anything about highlight feature being always ontop even tho its set to occluded
Btw the buildings are meta tables
That might of been obvious but my brain is so broken trying to figure this out
yikes
yeah i dont think i can learn roblox coding😭
I'm pretty advanced so
well how'd you learn to do that stuff
I need to adjust some things first I realized the table of ConnectedBuildings ain't being sent
alr
i’d say just experience tbh personally
oh
just repeatedly trying stuff
discovering the dos and donts
and just learning stuff from devforum and roblox docs
ok
no
just find already written scripts and read and try to figure out what they do
thats what I did
and then do basic stuff and if you need help look back at the scripts to see what they did
ok
!!!
i hate the how to videos on youtube
"here's how to code complicated system A: pastes finished code into text editor. Thanks for watching!"
oh how i spent hours watching combat system videos lmao
lmfao that was me abt 2 years ago
same lol
then I went "fuck it, i'll just wing it"
learnt more from that than the hours of tutorials I watched
i figured it out
