#code-discussion

1 messages · Page 15 of 1

bleak glade
#

click insert on your keyboard

#

reference camera as currentcamera

#

workspace.CurrentCamera

somber vault
#

Press insert

somber vault
#

is embarrassed

bleak glade
twilit parcel
bleak glade
#

what

twilit parcel
bleak glade
#

interesting setup

twilit parcel
#

ye im new to this stuffs 💀

#

omg

#

i know why it was causing trouble

#

it was because i named the script "ControlScript"

#

💀

sour vine
valid bough
#

im watching dev king tutorial any other recommendation???

somber vault
twilit parcel
#

you could try out brawl dev

#

he covers both basics and advance stuffs

somber vault
valid bough
#

but if i wanted to learn stuff more advanced you guys have any recomendations?

somber vault
#

You can learn basic stuff by youtube tutorials tho I dont recommend it myself but it works

somber vault
#

advanced stuff? just no

#

stick with roblox documentation

#

and devforum

valid bough
#

like the forum?

#

ok

somber vault
#

Yes, official roblox docs too

#

check the keywords etc

somber vault
somber vault
#

those youtube tutorials tend to have tons of deprecated stuff since most are old

somber vault
#

Sometimes I forget that he has a youtube channel and see him as "Suphis datastore owner 🔥" only

twilit parcel
#

now thats one messy inventory

carmine siren
#

indeed

sour vine
#

this hurts my eyes

carmine siren
#

but it is messy

#

anyway

twilit parcel
#

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?

carmine siren
#

then enable and diabel it

rain sinew
#

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

inland bay
#

do you have a lot of plugins

kind iron
#

a few like for data ui size automation character loading moon animator

woeful gate
#

yes

#

I fixed it tho

kind iron
woeful gate
inland bay
rain sinew
green willow
#

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

static coral
copper apex
#

I really like AshRBX as well

old valley
#

Guys is it possible to Showing a certain part of someone's screen live?

hidden torrent
#

tou guys are gay

vital saffron
#

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
vital saffron
latent gust
#

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

vital parrot
#

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

waxen vapor
vital parrot
#

you always have something to learn about code so that's not peak of scripting

waxen vapor
#

i know that

#

xd

pearl blaze
hearty sun
#

is there any assets where its a tool that can place a model that has unanchored welded parts

misty geyser
#

No

umbral carbon
#

Bruh

#

“Hey guys I’ve been scripting for 2 weeks and I just made Fortnite”

somber vault
#

any scripter available for a small commision

#

that can script decently quick

somber vault
#

ok

umbral carbon
#

For a small commission he can set you up for a couple bucks

hearty sun
#

is it a roblox issue or

#

like straight up not possible

humble portal
hearty sun
#

idk how to script honestly

#

im just trying to get a tool that can do that for a model i made

humble portal
#

oh

#

you could try like making the model just 1 part and then cloning it from replicated storage or smth

hearty sun
#

if it was 1 part then the welds wouldnt spawn in

#

i have a tool that can spawn any anchored part

humble portal
#

if its 1 part then you wont need any welds

hearty sun
#

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

humble portal
#

oh

#

you could try just storing the whole model with the welds and then clone it when you need it

hearty sun
#

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

humble portal
#

you could maybe try grouping the entire thing as a model and then cloning the model

hearty sun
#

it is

humble portal
#

can you show me the code?

hearty sun
#

sure one sec

humble portal
#

oh geez

#

ok wait

hearty sun
#

shit it might be unreadable

#

i tried to fit as much as i could

humble portal
#

just gimmie a second

hearty sun
humble portal
#

why is the model in lighting?

hearty sun
#

i think i confused myself

#

its under the tool now

humble portal
#

uhh

hearty sun
bleak glade
#

how do you code in lightmode

humble portal
hearty sun
#

i dont 😭

#

i got myself confused twice

#

it is in lighting

humble portal
hearty sun
#

hell no

humble portal
#

if the model is not in lighting then the script wont work

hearty sun
#

it is now

humble portal
hearty sun
#

yes

humble portal
#

the script defines the variable as something in lighting

hearty sun
#

it was when i tried it as well

humble portal
#

if its not in lighting then it wont get a model and the variable will just be nil i think

hearty sun
#

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

humble portal
humble portal
#

idk why the person who made this would put it in lighting

hearty sun
#

okay and changing the script?

humble portal
#

that seems really weird

humble portal
#

make it "game.replicatedstorage:findfirstchild(placeablename):clone()"

hearty sun
humble portal
#

yeah

hearty sun
#

okay gotcha

humble portal
#

and another question

hearty sun
#

?

humble portal
#

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

hearty sun
humble portal
#

yeah so thats probably why

hearty sun
#

so i dont understand

#

oh like

#

when you place it

#

it deletes it from your inventory

humble portal
hearty sun
#

yes this is so machine gunners cant spawn in 1000 machine guns

#

only meant to be placed once

humble portal
#

are the welds set up correctly in the model?

#

i dont see anything about creating welds in the script

hearty sun
#

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

humble portal
#

so inside whichever of these it is

#

you have these 2 filled out?

hearty sun
#

yes

humble portal
#

hmm

#

i feel like it could be an issue with how the turret is being cloned

hearty sun
#

i think so

#

i think its just only cloning parts and no welds

humble portal
#

maybe

hearty sun
#

it is possible for it to clone that right?

humble portal
hearty sun
#

i probably need to get a scripter for this

humble portal
#

i feel like its with this part right here

hearty sun
#

yes thats what i was looking at

humble portal
#

because the function only "gets" the stuff that is a part

hearty sun
#

so it wouldnt be getting scripts either/

#

?

humble portal
#

no, only the stuff that is a part

#

that function gets the things and stores them in a table

vital saffron
hearty sun
#

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

humble portal
#

see if its set right

hearty sun
#

its set

humble portal
#

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

carmine quest
#

yo any experienced scripter here dm me i need some help ngl

hearty sun
#

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

humble portal
#

hello

#

nice job

hearty sun
#

so i added welds to every part that was under that auto weld thing

humble portal
#

nice

#

so it works now?

hearty sun
#

no

#

u cant sit in the seat to use the gun

humble portal
#

oh

#

does it clone the seat

hearty sun
#

and i dont know how thats possible

#

yes

humble portal
#

thats weird

hearty sun
humble portal
#

idk man

#

it should work as normal as far as i know if it cloned everything correctly

hearty sun
#

added a press e to sit script imma see if that works

humble portal
#

might work maybe

hearty sun
#

ye the seat just doesnt work

#

is there a marketplace in this server?

humble portal
#

maybe the hiring channel;s

stark geyser
#

mr beast ahh font

vocal linden
#

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)

copper apex
bleak glade
#

character

#

so what’s wrong?

vocal linden
#

That is my script

bleak glade
vocal linden
#

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

bleak glade
#

localscript with ui button, prompt purchase on click. Activate +1 rebirth on success of purchase

turbid prism
#

Use remote events !!!!!!!

#

When Button is pressed, fire serverscript wich gives you plus 1 rebirth

vocal linden
#

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)

turbid prism
#

Ohhhh

#

It’s a dev product?

vocal linden
#

yes

turbid prism
#

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

bleak glade
#

yea

turbid prism
#

What I mean is you have to do a whole system

#

For dev products

bleak glade
#

put it on the server and make a function ot process receipt

turbid prism
#

I just made that type of system today

#

Yesss

vocal linden
#

😅

bleak glade
#

return the purchase granted or not process yet enums

turbid prism
#

Good that you know

#

And then

#

Check if it’s the product I’d of the devproduct

vocal linden
#

I dont know shit abt coding btw, my friend made that code for me

bleak glade
turbid prism
#

If it is, you can give 1 rebirth

bleak glade
vocal linden
#

how can i change this into a +1 rebirth

turbid prism
#

Show whole script

#

That your friend made

#

With the Process Reciept

#

I can’t send you code because I’m on phone

manic canyon
#

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

turbid prism
#

Type in Google, roblox Studio how to Ban Player

bleak glade
turbid prism
#

And then Loop trough every plsyer, and ban them

bleak glade
#

for i, v in game:GetService("Players") do v:Kick

turbid prism
#

With the script you saw from google

#

But he wants to ban

#

Not Kick

manic canyon
bleak glade
turbid prism
#

Yes

bleak glade
#

losing players lol

turbid prism
#

Yes

bleak glade
#

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

somber vault
bleak glade
#

use a datastore to secure it

turbid prism
#

You could ban all players in process reciept, then wait 5 min, and unban them

manic canyon
#

I aleady had code (from AI) and it was wotking but next day when i tried it again it didnt work idk why 😂

bleak glade
#

with a datastore

somber vault
turbid prism
#

Wdym DatastoreModule

#

Datatsore*

#

Datatsore*

bleak glade
#

you need a datastore to check the time across servers

turbid prism
#

Bruh typing on phone

turbid prism
#

You can just do task.wait() in server script

#

And it will wait

#

In the Server

bleak glade
somber vault
turbid prism
#

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

bleak glade
#

sounds like custom api

turbid prism
#

No

#

Roblox built in function

manic canyon
#

it should be only for 1 server

turbid prism
#

Ohhhhhhh

#

Didn’t. Know sorry

bleak glade
#

then you dont need attribute or datastore lol

plucky plank
#

is get marker reached unreliable?

manic canyon
#

oh no my bad it should ban players from current server but they cant join other servers if u know what i mean

bleak glade
#

oh yeah banAsync is a thing, i guess i overcomplicated it

#

i dont use playerservice enough

turbid prism
#

No problem

#

I love BanSsync

autumn void
#

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.

turbid prism
mint bough
#

And do a check when they join to check fi they are on the banned list

#

If they are kick them

bleak glade
mint bough
turbid prism
#

Bro you want to ban from every server or one server

#

What now

#

If every server: BanAsync

turbid prism
#

If one server: data store

glacial spade
#

anyone know a good way to do recoil? I have a basic one made but it feels very scuffed and delayed

turbid prism
#

Just tell bro

#

Every derver or one server

glacial spade
bleak glade
bleak glade
#

i started a gun thing but never finished it

mint bough
bleak glade
#

its kinda trash but this is what i have for recoil

mint bough
#

I used it and it worked well

lyric hull
#

I recommend using brawldev tutorials if you're ever struggling. It's great, helped me lots

#

Holy

tranquil lintel
#

does anyone know how to make a hose script and mind tutoring me?

uncut helm
#

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?

rain sinew
uncut helm
hearty zodiac
#

what would be a cool obstacle for a crossy road game other than the basic stuff?

spark swallow
#

what could cause a ball to lag like slow down, but the rest of the game to be completely fine?

wheat tulip
#

bru i need a cheap scripter

#

🙏

#

plzzzzz

round relic
#

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?

south remnant
#

what do I even do about this its a roblox script

pure furnace
void valve
#

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.

spiral jungle
jovial ice
#

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?

void valve
#

That's really annoying ngl

quartz vortex
#

Could do module scripts, then compare values and call the functions

spiral jungle
jovial ice
#

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

spiral jungle
#

At least I think so

#

Seats are so sucky

jovial ice
#

I mean script itself its working as far as i can tell

spiral jungle
#

Or are you just teleporting them to the seat?

jovial ice
#

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

spiral jungle
#

Show the code

jovial ice
#
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

toxic iron
spiral jungle
#

Use pivot to on the character model

#

Setprimarypartcframe is deprecated

#

But err

jovial ice
spiral jungle
#

I think you also have to weld them to the seat

#

Otherwise they can fall off the chair

toxic iron
jovial ice
#

Ill try and see if I can fix it then

jovial ice
#

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

toxic iron
#
if #availableSeats > 0 then
            local chosenSeat = availableSeats[math.random(#availableSeats)]```
jovial ice
#

ahh ty

jovial ice
spiral jungle
#

Look it up

jovial ice
#

ok ty

spiral jungle
#

PivotTo

jovial ice
# spiral jungle PivotTo

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

spiral jungle
jovial ice
#

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

jovial ice
#

So what im seeing is not an issue whatsoever

#

About welding them to the chair, I create the weld inside the char right?

spiral jungle
#

I think you can just use built in humanoid functions

#

Seat:Sit()

toxic iron
spiral jungle
stone veldt
jovial ice
#

not much difference im guessing?

spiral jungle
#

Just setting sit to true just makes the player sit down on nothing

somber vault
jovial ice
#

Ill change it up then

dark sundial
#

Does the Spatial Voice API have the capability of amplifying and reaching further, like you are on a stage talking to an auditorium?

young olive
#

Who can help me fix bugs in my game 😭 I’ll give ‘em robux giftcard

young olive
paper imp
#

How much Robux is rhat

young olive
#

My boss IQ is zero 😭

paper imp
#

That*

young olive
#

Like 2.2k?

paper imp
#

eh don't need that

#

But what are your bugs

young olive
#

I can check

paper imp
#

check?

#

Wdym

young olive
#

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

jovial ice
young olive
spiral jungle
#

So many bugs

young olive
#

Yes 😭

jovial ice
young olive
#

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

jovial ice
young olive
#

The problem is my pc is broken end the guy who relessed it is on vacation now so i can’t access it yk

young olive
young olive
jovial ice
#

how do u plan on fixing that with no access man

young olive
#

And ss

#

My players are so mad

jovial ice
#

like giving the wrong skill to the sword

young olive
jovial ice
young olive
#

I don’t know how it breaks the health bar

young olive
young olive
jovial ice
#

like the skill is working ig...its just the wrong skill

young olive
young olive
jovial ice
young olive
#

Breaks the 100% bar yk

#

Ok bet

jovial ice
#

ahhh fair

young olive
#

My group is TeamWest

#

U gonna add me n join ?

#

I’ll be in gsme

#

Game*

jovial ice
jovial ice
jovial ice
#

js sent friend req

jovial ice
#

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

young olive
#

Maybe

#

Yes

jovial ice
#

accept req on roblox

#

so I can join ya

young olive
#

Ok

jovial ice
#

ok js join game and imma join u

vernal valve
#

should i lock in for a week and just remake rdr2 (only some mechanics)

buoyant apex
vernal valve
#

gun mechanics probably only for revolvers

#

and npc mechanics

vernal valve
#

I’ll add it just for you 👍

buoyant apex
#

That's my man 👍

shrewd magnet
#

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?

twin roost
#

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

weak cipher
#

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

surreal roost
#

Who can make me a script to sell drugs on roblox c a French city game

#

im pay

rapid verge
#

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
pseudo ether
#

anyone tryna go 50/50 on a game 😭 🙏

timber swift
#

Yo I’m in tutorial hell what do I do 😭

fallow sandal
pseudo ether
fallow sandal
pseudo ether
#

i need a scripter 🙏

fallow sandal
#

O

indigo sluice
#

@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

indigo sluice
#

u wanna work on something with me

timber swift
#

Sure

indigo sluice
#

its 11 so i gtg in like 45 mins

timber swift
#

Ok

indigo sluice
#

why not lol i havent really done a project

timber swift
#

DMs?

indigo sluice
#

yeah

timber swift
#

Same

odd copper
#

Which type

spiral jungle
rapid verge
urban meadow
#

how do i test my anti injection scripts

timber swift
rapid verge
toxic iron
somber vault
urban meadow
pseudo ether
carmine siren
#

can someoen slide the safe teleport module pls thanks u

green willow
toxic iron
dusky relic
#

anyone here using vim + luau-lsp?

molten creek
#

https://www.roblox.com/games/75965306756161/Color-io

How much would you charge for this?

Roblox

🌟 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

rustic torrent
#

Anyone here own erlc servers?

twilit parcel
#

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?

upbeat grove
#

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)
upbeat grove
# upbeat grove i switched from string values to attributes and now when i fire to client, it do...

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)
rotund lichen
#

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

carmine yacht
#

unless you use ai or prebuilt code

twilit parcel
#

i think i got it now

somber vault
#

ny1 in need of an builder/looking for a dev team

#

do dm

potent quiver
#

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

wide socket
#

How can I make this my startercharacter guy?

#

when I do it look what happens lmafo

fringe barn
wide socket
#

the hat just falls off, and it just lays flat

#

i can move it together tho

fringe barn
#

yeah you gotta join it

wide socket
#

im new to studio and tryna create a stud roblox game

wide socket
fringe barn
#

this will explain and provides a good plugin

#

its fairly easy too

tiny obsidian
#

bro chat

wide socket
fringe barn
#

but id do it just in case

prime cave
#

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

prime cave
#

we can decide. cash-grab, sim, tycoon, obby, anything

fringe barn
#

i mean i kinda want to but i cant anyways since im going on vacation tomorrow lol

#

so no pc

prime cave
#

oh dang, alr

#

we could do a 1 day challenge??

#

haha.. short time, but we can do it

fringe barn
#

not sure if i could do it today but when i get back i wouldnt mind

prime cave
#

🔥

twin roost
#

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

molten plinth
hexed orbit
#

hey

#

hello

indigo pine
#

can anyone help me scripting for leaderstats plss

somber vault
#

ye sure

proper flicker
#

Anyone knows how to fix my issues with layout order not updating properly or bugging making mutliple notifications overlap?

tiny obsidian
#

yo chat

#

whats cookin good lookin

static sphinx
#

What even is the purpose of local variables

#

global variables are better in every way

#

I dont see whats the point behind it

proper flicker
#

fixed it

twin roost
static sphinx
twin roost
#

as i said i make enough doing ui already

static sphinx
#

since u have enough

twin roost
#

Na

static sphinx
#

My Po box is always open

static sphinx
iron wren
#

How do I make a button when click make a person auto walk

thick mulch
toxic iron
frozen swift
#

Dont know about auto walk but i do know about the button click

toxic iron
#

if button touched autowalk

frozen swift
#

Gimme a sec while i type this out

iron wren
#

I know nothing abt scripting really

toxic iron
iron wren
#

Can anyone help me with this?

devout latch
frozen swift
#

Uhh

quaint pine
woeful gate
#

why u selling it?? It has 3k active

quaint pine
#

huh?

#

what no

#

its orignal

woeful gate
#

wait why would u mention its original…

#

are u saying there’s duplicates out there?

quaint pine
#

cause i scripted everything

#

myself

woeful gate
#

ok yea… I’m just gonna back away from this….

quaint pine
#

find me a copy if u can

#

u there

#

are u willing to buy it?

fresh otter
#

We already got it

quaint pine
#

lmk

fresh otter
#

You wrote it

quaint pine
#

alr lmk if anyones willing to buy

old valley
#

anyone here need Script Or UI?

quaint pine
#

maybe in future

true moon
quaint pine
old valley
obsidian lintel
quaint pine
#

u can make alot of money out of it

inland bay
#

too bad its stolen

thick dagger
#

anyone know if there’s a module for animating buildings?

vital creek
#

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

wide socket
#

How do I disable the roblox text box chat?

carmine yacht
#

on StarterGui

vital creek
wide socket
#

it still somehow has the whole box

carmine yacht
#

@vital creek back sorry

#

do ImageLabel.ImageContent = EditableImage

hazy trail
#

yo wsp guys

peak sphinx
peak sphinx
#

highest bid is 1 penny right?

hushed forge
#

8

peak sphinx
#

fuck, you can have it 🙄

hushed forge
tiny obsidian
#

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

rain sinew
#

unholy ai predection

toxic grove
#

Does anyone want me to do some scripting for them? i need to show examples in my portfolio so its free

void valve
#

Can someone guide me? I am making a mmorpg game

#

I have some problems

toxic grove
peak sphinx
#

rip gornix 🙏

#

i swear all the "free" work ive done attracted the worst clients

inland bay
#

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

toxic grove
ivory wing
#

Is it normal to pay 1.2k for health gui

#

Like to make it work not design it

inland bay
#

like you're not doing the com for them

toxic grove
inland bay
#

you're just looking at the task and doing it for yourself

#

then putting it on your port

toxic grove
ivory wing
toxic grove
toxic grove
ivory wing
inland bay
#

you're not applying

#

you're doing it on your own

#

then just putting it on your port

toxic grove
ivory wing
void valve
#

This server is so disrespectful

peak sphinx
void valve
#

I am still a new dev

#

Why so rude

void valve
#

Bro wth

ivory wing
#

Guys is 6.2k good to start a game?

#

6.2k robux

void valve
#

Wdym start a game

#

Invest or what

ivory wing
#

Hire devs

void valve
#

Probably

nimble bolt
ivory wing
#

Its 50 bucks!

void valve
#

Ok nvm

#

I am stupid

nimble bolt
# ivory wing 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

ivory wing
plucky plank
# ivory wing 6.2k robux

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

nimble bolt
ivory wing
#

This is all i have

nimble bolt
#

for the us minimum wage average of $7.25/hr that amounts to basically 3 hours of work

ivory wing
#

Oh

#

What should i do

nimble bolt
#

learn some form of development and complete commissions to gain more robux

ivory wing
#

I am afraid someone will scam me... i dont know the prices!

molten plinth
#

Learn to make games yourself
Make a game idea, then share with others
Maybe you’ll get investors or a publisher.

ivory wing
molten plinth
nimble bolt
#

this isn't an IPO

ivory wing
#

I only have monster blender design. And jumpscare stuff

plucky plank
sacred prairie
#

PIDGIN

nimble bolt
ivory wing
#

Like

#

Should i just put gamepasses all over the screen?!?!

signal pewter
plucky plank
# nimble bolt how would this work logistically speaking

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

nimble bolt
nimble bolt
plucky plank
ivory wing
nimble bolt
#

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

plucky plank
toxic grove
nimble bolt
ivory wing
ivory wing
nimble bolt
#

user ads were removed circa '24

ivory wing
#

Promotion makes your game go to the front page

plucky plank
#

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

nimble bolt
#

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

plucky plank
nimble bolt
plucky plank
#

Also never release a buggy game 😭

nimble bolt
#

i don't do that "bugs" thing

plucky plank
ivory wing
#

I need someone to help me with decisions. I am the worst at making decisions....

nimble bolt
#

i am an elephant named 8ff and i roar

ivory wing
#

Can you help me?

plucky plank
nimble bolt
#

i am resting

#

i have done my charity work

ivory wing
nimble bolt
ivory wing
plucky plank
nimble bolt
plucky plank
ivory wing
#

Fr

nimble bolt
nimble bolt
#

my first was many many many years ago

ivory wing
#

Generational wealth

nimble bolt
#

it was one of my last ones*

#

but my first still paid about that amount

bleak glade
plucky plank
nimble bolt
#

yes it was my first one from here though

#

or talent hub

plucky plank
#

my first one was a scam and my second :<... and then i gave up

bleak glade
plucky plank
nimble bolt
#

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

plucky plank
nimble bolt
#

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

ivory wing
#

Uh

bleak glade
ivory wing
#

How to learn scripting

#

😅

bleak glade
#

i prefer roblox documentation but tutorials seem to be helpful to everyone else

plucky plank
bleak glade
#

both outdated

ivory wing
#

Broo coding hardd

#

Its random numbers

plucky plank
bleak glade
nimble bolt
#

don't pay me? get sued

plucky plank
nimble bolt
plucky plank
#

for roblox commissions???

nimble bolt
#

it's colloquially used to refer to the type of work someone is doing (like contractual, hence me saying i do 1099 agreements)

bleak glade
#

add memory leaks throughout the code if you know youre gonna get scammed

plucky plank
nimble bolt
bleak glade
plucky plank
plucky plank
nimble bolt
#

a couple thousand

plucky plank
#

oo

nimble bolt
#

a couple thousand

#

but that's not roblox work

nimble bolt
# plucky plank oo

$2,000 doesn't get you very far in life when it's your only source of income

plucky plank
nimble bolt
plucky plank
loud hamlet
#

which impact frames are better, image ones or color correction ones

nimble bolt
plucky plank
nimble bolt
#

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

plucky plank
# nimble bolt 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

plucky plank
gleaming wadi
#

hi

woeful gate
plucky plank
woeful gate
plucky plank
dusty lagoon
#

guys how do i start off on learning coding for game development?

plucky plank
plucky plank
#

on yt

#

and then roblox docs

dusty lagoon
#

tysm

plucky plank
#

np

dusty lagoon
#

is that how you learned?

plucky plank
#

yep

dusty lagoon
#

okay

plucky plank
somber vault
#

hi guys

plucky plank
#

hi

somber vault
#

i was wondering if any of you had beginner coding ideas for me so i could build skill and understanding

plucky plank
somber vault
#

just the basics and a little of the complex

plucky plank
#

client server stuff

somber vault
#

i know all of the basics like vars,functions,parameters,returning,loops,statments,i,v pairs and thats all

#

are you there?

plucky plank
somber vault
#

ok

#

i will try

plucky plank
serene rose
#

rate my editor

coarse wyvern
#

y=mx+b

rain raft
#

anyone here ever attempt to make a game similar to rise of nations?

plucky plank
rain raft
#

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

plucky plank
#

so when the players troops take over said city it took over that radius of area

#

the terrain was pre generated

rain raft
#

and colors change to whoever is taking over

#

theres like alot of stuff that goes into it

bleak glade
plucky plank
vital parrot
#

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

somber vault
#

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

vital parrot
#

why does this print n 4?

#

is there a way to remove that

hasty mesa
#

and its also because table.pack creates a size field n

#

thats how long the array

vital parrot
hasty mesa
#

if table1 has more then 1 only the first element would be in the combined table

vital parrot
#

oh

vital parrot
hasty mesa
vital parrot
#

ok thank you

vital parrot
ornate plinth
#

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 ><

vital parrot
#

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

spiral ice
#

Dooes anyone know anything about highlight feature being always ontop even tho its set to occluded

vital parrot
#

That might of been obvious but my brain is so broken trying to figure this out

main holly
glass sierra
somber vault
main holly
#

everytime i open plotui it duplicates the save plot

#

my scripter offline

vital parrot
somber vault
#

well how'd you learn to do that stuff

glass sierra
#

like how far does it get

vital parrot
glass sierra
#

alr

glass sierra
somber vault
#

oh

glass sierra
#

just repeatedly trying stuff

#

discovering the dos and donts

#

and just learning stuff from devforum and roblox docs

somber vault
#

ok

glass sierra
#

having some basic coding knowledge helps too

#

to create more advanced systems

somber vault
#

oh

#

will watching the dev king help

visual cargo
#

i did

visual cargo
#

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

somber vault
#

ok

tough relic
#

stay away from youtube tutorials as much as you can

tough relic
#

they are a bad habit

#

that will slow your progress down to a crawl

visual cargo
#

i hate the how to videos on youtube

tough relic
#

"here's how to code complicated system A: pastes finished code into text editor. Thanks for watching!"

visual cargo
#

oh how i spent hours watching combat system videos lmao

tough relic
#

lmfao that was me abt 2 years ago

visual cargo
#

same lol

tough relic
#

then I went "fuck it, i'll just wing it"

#

learnt more from that than the hours of tutorials I watched

visual cargo
#

i figured it out