#code-help

350 messages · Page 2 of 1

unique crown
#

guys how to post that i am hirable in #scripter-hirable i went to #marketplace-info and it saying this (To make a Hireable post, you must have the respective skill role. For more info run /tag view apps) i dont understant

kind terrace
#

what part did u not understand

#

u dont understand u have to run /tag?

bleak egret
#

are module scripts important?

wet owl
inner mica
#

Are you guys able to create a new subplace in a experience and join it after?

kind terrace
bleak egret
inner mica
#

Im getting timeout when trying to join team create in new subplaces

bleak egret
inner mica
kind terrace
wet owl
#

im like always here 😭

bleak egret
wet owl
#

just not in tc

bleak egret
honest verge
wet owl
bleak egret
#

any good examples for module script usage?

inner mica
wet owl
#

wym by subplace btw

honest verge
#

a place in the experience

inner mica
wet owl
#

just a place of a game thats not the main one right

#

alr

#

i thought shura was abandoned 😭

inner mica
kind terrace
#

it can be a container for data, a uitility module, an oop structured, a controller a service

#

like

bleak egret
inner mica
wet owl
#

i see

#

well

kind terrace
wet owl
#

now that rodex got 8ballx out he should have the money right

wet owl
vapid ruin
#

the code is kinda buns but it uses modules well

boreal laurel
#

what are yalls opinions on my procedurally generated bridge networks in roblox

bleak egret
wet owl
#

i got no one to join tc with me rn but it works solo at least

inner mica
boreal laurel
#

this only took like 700 lines of code

vapid ruin
inner mica
#

it should be a new one

wet owl
#

oh

bleak egret
wet owl
#

nah its an old one

inner mica
#

try creating a new one, because old ones are working for me too

wet owl
#

im pretty sure you need to publish the place for you to be able to join with tc though

kind terrace
wet owl
#

cuz when you make a new place its like offline (kinda)

wet owl
inner mica
#

Yea, but not for experiences that already published i guess

#

I tried to create a new subplace for shura and didnt worked, i got a timeout/infinity loading

#

I asked for someone else to join as well and he got same error

#
#

It looks like a new bug, since the posts date is no more than 1 week ago.

wet owl
#

idk about tc but this feature has been bugged for me for a few weeks

#

like i just cant simulate multiple clients at all, idk if its related though

bleak egret
#

i did it

#

local gameconfig = {
swordcost = 5,
shopcooldown = 2,
swordname = "ClassicSword"
}

return gameconfig

#

isnt this script badass

oak dawn
#

when applying linear velocity like this what does the 50 represent

#

what measurement i mean

kind terrace
#

camel pascal snake

#

doing it like that is kinda unreadable at a point

#

just a suggestion

inner mica
oak dawn
#

but is it on a 3D vector

inner mica
#

It means: move forward at about 50 studs/second in the character’s looking direction

wise nacelle
#

isn’t speed a magnitude

oak dawn
#

oh

wise nacelle
oak dawn
#

50 studs

#

okay thanks

shrewd parcel
#

can any1 help me make it so that a cooldown is displayed after using an ability for my game il pay acordingly

kind terrace
kind terrace
#

i mean whats the detail

cyan fog
bleak egret
#

this is fake

cyan fog
kind terrace
#

no need to clarify

bleak egret
#

so apparently im super smart

#

I'm a genius

#

i'm a future prodigy

frigid cloud
bleak egret
#

people are starting to notice my uncapped potential

#

An IQ score of 144 is categorized as "very gifted" or "highly advanced". It places a person in the top 0.1% to 0.2% of the general population, generally qualifying them for high-IQ societies like Mensa

honest verge
# bleak egret

are you spending your time taking online tests 😭 😭

bleak egret
honest verge
#

sorry I doubted you

bleak egret
honest verge
#

I didn't mean to reply to that

honest verge
gaunt hornet
bleak egret
gaunt hornet
#

i got free roblox plus

#

makes me feel good despite this just being another way to steal money from me

bleak egret
#

local gameconfig = {
swordcost = 5,
shopcooldown = 2,
swordname = "ClassicSword"
}

return gameconfig

crisp cloud
#

hey guys

bleak egret
#

my script is so tough

crisp cloud
#

im new

bleak egret
crisp cloud
#

and i know scripting

#

but idk how to get as scripting job

bleak egret
#

and a solid portfolio

wise nacelle
#

how good are you at scripting

crisp cloud
#

what?
idk\

#

waity guys

#

brb

bleak egret
#

your fortnite gameplay is crazy

#

can you coach me

#

im gonna quit developing and become a pro fortnite player

#

game dev is too easy

radiant iron
#

thats what im sayin

frigid cloud
#

yo chat is turning on/off CanQuery of a part rapidly heavy?

deft totem
#

It probably doesnt impact performance at all rly

velvet crane
#

how to make checkpoints , explain to do

frigid cloud
#

store player's checkpoint then on spawn teleport them

velvet crane
#

you mean add a int value to them and increase it as stage increase and teleport to that place

boreal laurel
velvet crane
#

bro answer

bleak egret
#

local shop = script.Parent
local serverstorage = game:GetService("ServerStorage")
local sword = serverstorage:WaitForChild("ClassicSword")
local replicatedstorage = game:GetService("ReplicatedStorage")
local gameconfig = require(replicatedstorage.ModuleScript)

local debounce = false

shop.Touched:Connect(function(hit)
if debounce then return end
local character = hit.Parent
local player = game.Players:GetPlayerFromCharacter(character)
if not player then return end
debounce = true
local backpack = player:WaitForChild("Backpack")
local leaderstats = player:WaitForChild("leaderstats")
if not leaderstats then return end
local coins = leaderstats:WaitForChild("Coins")
if not coins then return end
if coins.Value >= gameconfig.swordcost then
coins.Value -= gameconfig.swordcost
sword:Clone().Parent = backpack
elseif coins.Value < gameconfig.swordcost then
print("YOU'RE BROKE")
end
task.wait(3)
debounce = false

end)

#

im him

#

acknowledge me

crisp cloud
#

@bleak egret

deft totem
crisp cloud
#

Did u tag me?

bleak egret
deft totem
bleak egret
#

no

#

the basics

deft totem
#

i dont believe sorry

#

Python teaches noobs how to indent.

#

Knowing python and having ass indentation

bleak egret
#

i watched 3 hours of cs 150

deft totem
bleak egret
#

def main():
print_wall(3)

def print_wall(height):
print("|\n" * height, end="")

main()

#

you see

#

i made this when I was watching the course

deft totem
#

Smh. No if name == __main__

#

tbf u should learn typescript if u wanna be a goat

bleak egret
violet canopy
deft totem
#

The idea that u should start with python is so 2010

torn bay
deft totem
#

Languages to learn if you want to be a goat.
Typescript
C
Rust
Golang
Kotlin

bleak egret
violet canopy
violet canopy
bleak egret
violet canopy
#

??

limber notch
#

should i learn metatables

bleak egret
#

no wait, it was prostate cancer

#

local coinsFolder = game.Workspace:WaitForChild("Coins")
for _, coin in pairs(coinsFolder:GetChildren()) do
print("Found a coin named: ", coin.Name)
local debounce = false
coin.Touched:Connect(function(hit)
if debounce then return end
print("Coin touched")
local character = hit.Parent
local player = game.Players:GetPlayerFromCharacter(character)
if not player then return end
debounce = true
player.leaderstats.Coins.Value += 1
coin:Destroy()
end)
end

#

my coin collection is so good

violet canopy
#

Big Ben is still alive

bleak egret
#

okay

bleak egret
#

we're not on the same level

surreal girder
#

yeah site will determine your iq sure

bleak egret
#

im the horse

#

i got that horse power in me

warm ridge
#

Becouse all ur moves are L?

bleak egret
bleak egret
#

yes they are

#

stop glazing me guys

bleak egret
bleak egret
bleak egret
#

i think I found the reason as to why Im so braindead and am unable to script in lua

#

thankyou for opening my magestic eyes guys

frigid cloud
#

chat how to read script profiler? is it 5000 mill sec or micro sec

bleak egret
frigid cloud
#

nvm I just exported it then send to ai to summarize. ai is so peak

zinc fjord
#

motor6ds getting deleted in character

#

wtf

#

im so confused

#

even on a new baseplate theyre gone from the char

zinc fjord
# zinc fjord lol??

nvm using applydescription on a humanoid desc apparently just obligerates the motor6ds

broken yew
#

The worst thing i saw in my entire life

unkempt tiger
#

you have to set this to disabled

#

but roblox is gonna force it at some point

#

so good luck

zinc fjord
unkempt tiger
#

you literally have it set to enabled

zinc fjord
#

oh

#

im so dumb imisread it

#

LMAO my bad

wooden haven
#

does the server continue listening for events for items that are destroyed?

unkempt tiger
#

no. :Destroy() clears all event connections on the instance

zinc fjord
wooden haven
#

or should i just use trove too?

#

to stop listening to that event

thorn sableBOT
#

👋 Just a reminder to read our rules and use the marketplace to hire!
-# Hiring or looking for work in our channels classifies as misuse and will result in moderation.

random heron
#

Its the scammer

#

Nobody dm 4 @agile shoal

#

He uses only ai code and hes a skid

proper hare
random heron
random heron
#

He couldnt pass the most basic trivia

austere stirrup
#

guys is there a oppisote button for control z

turbid shore
random heron
turbid shore
austere stirrup
#

i deleted like 20 lines

turbid shore
#

someone sold a combat system to my friend and it was fully ai asw

proper hare
random heron
austere stirrup
#

pls

turbid shore
#

100% skidded

austere stirrup
#

chat

turbid shore
#

dude used attributes for everything

random heron
#

Like I had no clue why he split his modules like that

austere stirrup
#

help

random heron
turbid shore
random heron
turbid shore
#

all the scripts r full of unneeded comments

#

and pairs loops

random heron
#

How do you even prompt this bad

turbid shore
#

@agile shoal bro just quit development as a whole

#

never open studio again

#

got the corniest name asw

random heron
#

Hes just scavenging for commissions in chat

#

He has no dignity

chilly hare
#

🥹

austere stirrup
#

hey my shi is bugged it said " the language was to long to translate" now my whole shi is dark

pine hedge
proper hare
pine hedge
turbid shore
#

@random heron why is his alt defending him

austere stirrup
#

im as confused as u are

#

so help pls

#

there are no video's about this on yt

#

pls help

turbid shore
#

hopped on an alt to defend himself

proper hare
#

also ur loadanimation()

#

js use local animator

austere stirrup
#

but how did my code just now get a problem and not 20 min ago

solemn matrix