#code-discussion

1 messages · Page 76 of 1

odd galleon
#

im just try to make one bg game for fun

#

that im not making any money hopefully

#

and all anim were made by me

#

because i am animator that i want to see the anim in game i guess but the scripting it uhhhh too compicalted

#

im try to breakdown it but the only thing i know it writing only varible

hexed pilot
#

here

#

for your walk

local weapons = {
    "Combat"
    
}:: {string}

Character.ChildAdded:Connect(function(weapon: Instance?)
    if weapon:IsA("Tool") and table.find(weapons, weapon.Name) then
        print(`Equipped {weapon.Name}`)
    end
end)```

instead of updating it from another local script add something like this into your animate script and update youre idles and walks that way
odd galleon
#

this look more complicated....

#

I'm try to understand it instead copy and paste from other

#

sorry for you time btw

hexed pilot
#

what it does is

see when you have an item equipped and check if its in the weapons table

#

if it is itll print equipped what weapon you got

#

and then you just update the anims yourself

odd galleon
#

still

#

it because I don't write like you and not understand all symbol

#

}:: {string}

#

what even it that

#

I really never used lol

hexed pilot
#

its type checking whatever is in the table is just a string

odd galleon
#

yeah I still don't

#

okay I come back when I can write thing right

sacred lotus
hexed pilot
#

aren't the buttons already going away?

sacred lotus
peak oak
#

who is selling a game

hexed pilot
#

what was the problem ;o

sacred lotus
hexed pilot
#

yes

rain sapphire
#

Guys i was trying to make my first game but im kinda stuck at a place im not able to figure out why my code is not working

I want npc to spawn outside the gate , and then they walk in and form a line in front of us

i wrote all the necessary code still the npc doesnt spawn , what am i doing wrong ?

hexed pilot
#

show the code

proud idol
#

(Aka show the code and output window)

rain sapphire
#

wait

#

bro whaaa 😭 i been onto this for 2 hrs now used all ai helps too but i cant
now i went to take ss of the error msg and npc spawned

#

tyyyy

hexed pilot
#

wow

proud idol
#

I wouldnt say issue solved

#

But if ur happy then

hexed pilot
#

also, use the task library so start doing task.wait()

rain sapphire
rain sapphire
proud idol
#

Oh

#

Lol

#

Happens

#

Is why you check the output window@rain sapphire

rain sapphire
#

allr ima go try to make it walk now

rain sapphire
somber axle
#

how much robux would it cost to script a skip stage ImageButton

hexed pilot
#

script it how?

somber axle
#

like when player click on ImageButton Gui it pops out the dev item and when tey buy it then skip Stage (for obby game)

hexed pilot
#

dev item

#

you mean dev product?

somber axle
#

oh ye mb

hexed pilot
#

here

somber axle
#

i am trying to do it for like 2.5h now

#

yt dont help chat gpt dont help roblox ai dont help so i was wondering if i can pay someone and how much would it cost bc i gave up on it

hexed pilot
#

is it

#

a specific dev product like

#

skip one stage or is there like skip 5 stages , etc

somber axle
#

like click buy and it skip stage non eles

hexed pilot
# somber axle yt dont help chat gpt dont help roblox ai dont help so i was wondering if i can ...

its simple

local MarketplaceService = game:GetService("MarketplaceService")
local Players = game:GetService("Players")

local localPlayer = Players.LocalPlayer

local button = script.Parent
button.MouseButton1Click:Connect(function()
    MarketplaceService:PromptProductPurchase(localPlayer, 1836264283)
end)```

this will make it so when they click whatever button you got, itll prompt them with a dev product - 1836264283 is a random ID so replace it with yours either put this under your button, or wherever you guys handle GUIs
somber axle
#

let me try it

#

is it local script ?

hexed pilot
#

yes

somber axle
#

it show me to buy it and when i buy it non happens

north vigil
hexed pilot
#

ok so

#

it prompts right?

somber axle
#

idk i just copy paste it i have like 0 clue with scripts

somber axle
hexed pilot
#

for the dev product purchase

somber axle
#

oh yes

hexed pilot
#

okay

somber axle
#

i can inv you to team create to see your self

#

ima pay you up if you do it if you want

hexed pilot
#

uhh

#

sure why not

somber axle
#

send me ya user

hexed pilot
#

it is very simple though,

local MarketplaceService = game:GetService("MarketplaceService")
local Players = game:GetService("Players")

MarketplaceService.ProcessReceipt = function(product: {[string]: any})
    local player = Players:GetPlayerByUserId(product.PlayerId) :: PLayer 
    if not player then
        return
    end
    
    if product.ProductId == 1836264283 then
        print(`{player.Name} bought skip Stage`)
    end
end

this checks when they buy the skip stage, and then you'd just update their current stage on the server

somber axle
#

where do i put that

hexed pilot
#

server

#

do you have a script where you handle dev products? if not just add one

#

just add me and give me TC i'll quickly do it, ImKiddon

lament pivot
#

while true do

somber axle
#

alr

lament pivot
#

what type of game

hexed pilot
#

spazz?

#

added

somber axle
#

added

hexed pilot
#

ok

#

ok @somber axle

#

oh do you get a new stage when you move 1.5 studs up or something

somber axle
#

oh ye

#

1.5 cound in leaderboard aswell

hexed pilot
#

yo there is already a script here that does it

#
local MarketplaceService = game:GetService("MarketplaceService")
local Players = game:GetService("Players")

local skipStageProductId = 3289392669

game.ReplicatedStorage:WaitForChild("SkipStageEvent").OnServerEvent:Connect(function(player)
    MarketplaceService:PromptProductPurchase(player, skipStageProductId)
end)

MarketplaceService.ProcessReceipt = function(receiptInfo)
    local player = Players:GetPlayerByUserId(receiptInfo.PlayerId)
    if not player then
        return Enum.ProductPurchaseDecision.NotProcessedYet
    end

    local leaderstats = player:FindFirstChild("leaderstats")
    if leaderstats and leaderstats:FindFirstChild("Stage") then
        leaderstats.Stage.Value += 1
    end

    return Enum.ProductPurchaseDecision.PurchaseGranted
end
somber axle
#

idk it was not worling

hexed pilot
#

oh

#

it does work

somber axle
#

thats from Lua Gpt i thinkj

hexed pilot
#

it adds an stage

#

but it doesnt teleport you, is that what u want

somber axle
#

i want it when player buy skip stage to tp them like +1 stage

#

that all

hexed pilot
#

k

#

done @somber axle

somber axle
#

ayy

#

ty man

#

how much i own you

hexed pilot
#

nothing it was simple ;/

#

dont worry

somber axle
#

damm tysm man

cedar patrol
twilit stump
#

hello guys new roblox update roblox can ||fuck ||your game radomly

#

sorry for the swear

sturdy briar
#

just made a data store using buffers, i am feeling like god

craggy niche
#

how do i get player from textchatservice.OnIncomingMessage

small veldt
craggy niche
#

its on local script

small veldt
#

always game.Players.LocalPlayer for client

craggy niche
#

i cant

#

local player returns the local player (wow omg), but i need the player who sent the message

velvet summit
rapid slate
craggy niche
craggy niche
#

kinda

#

player = getplayerfromuserid(msg.textsource.userid)

rapid slate
#

it's better to give a hint and let you figure it out :)

raven cloak
#

not the best definition though, if im wrong someone can correct me.

rapid slate
#

they don't really help supress memory leaks, if not done properly they can be the cause of it

#

it speeds up access to that data that you want to temporarily store, for fast-access copy

#

so in a sense it helps manage memory, it doesn't solve memory leaks

#

memory leaks is like forgotten trash or the mess in your room you haven't cleaned up in ages

#

to sort your mess, you can use trays and have quick access to the small messes in ur room

#

aka buffers

proud idol
#

and its jsut a mesh

ivory bronze
unreal axle
unreal axle
ivory bronze
sturdy briar
raven marten
unreal axle
sturdy briar
# unreal axle

make a buffer and when it comes to save in data store just convert buffer to string

unreal axle
sturdy briar
#

i made a template for a usedata

#

next

#

when player joins i load the data in a table and create leaderstats if not then i set user data to my template

#

setting up data soo player have some starter values

#

and when it comes to save or load converting to string or from sting to buffer and that's all

ivory bronze
sturdy briar
unreal axle
#

me when people got different learning processes!

raven cloak
quiet creek
#

yoo 1 week free nitro

rapid slate
#

i would definitely recommend a retry mechanism, what if something saves/loads at the same time potential data loss could happen

#

what if players crash.. do they just lose everything? -> auto-save maybe

#

then there's plenty of other things to do if you'd like

dapper flume
quiet creek
dapper flume
quiet creek
#

21 minutes ago

dapper flume
quiet creek
#

i opened discord

#

and it said

#

birthday of discord

dapper flume
quiet creek
#

here, nitro

quiet creek
dapper flume
quiet creek
#

i did it on my pc

dapper flume
quiet creek
#

yeah i dont use the base

#

maybe open discord on google and make it so its on PC mode

quiet creek
#

ohh

#

have u gotten nitro in the past 12 months

#

ur not available if so

#

oh its selected users @dapper flume

#

oh nvm

#

@dapper flume your account must be 1 month old atleast

dapper flume
#

Hi?

quiet creek
#

you got until 23 of march

#

your account will turn 30 days old in 22

#

so i think you might get it, idk

dapper flume
#

No I didn’t get it..

quiet creek
#

oh its march

#

your account

quiet creek
#

you could contact support ig

dapper flume
quiet creek
#

yeah bad luck

dapper flume
#

Mhm

glacial kestrel
#

rudimentary ik procedural animation

#

p stuck, idrk how to improve it

#

cuz it looks a bit clunky

supple oar
#

can anyone help me i use figma for gui but the wierd shapes that i downloaded from google png just show as squares on roblox

carmine surge
#

Guys really need help with code that dragging frame from one scrolling frame to another, need workable code or hint

fossil current
#

If I make the group, but somebody else makes the game and they add it to my group, and make all the gamepasses and stuff 50 50 how do I know they won’t just change it and scam me ?

tired rampart
#

who has a game to 10 ccu to 1k?

glacial juniper
peak sphinx
glacial juniper
#

To keeping you in the split

#

It has to be a proper like contract from attorneys and stuff though

heady granite
#

any server for exploit development?

tropic totem
#

looking for scripters for my studio.Dms if interested

heady granite
#

executors are free and safe. they are not patched and continue to function.

full-coverage patching on game basis detect hooks which can be bypassed by decompiling getfenv() from a debug.getinfo hook.

executors are detected due to low monetary incentive for older developers to work on them, but roblox refuses to do anything about the detection.

#yourdailymisinformationspreadpreventiongirl

tropic totem
#

looking for scripters for my studio

#

Dms if interested any1

swift lichen
#

how to fix when I turned off streaming enabled for a script in testing it made me unable to turn my screen with right click hold any help?

molten creek
#

WHO WAS THE FUCKING GUY THAT WAS MEANT TO MAKE TROLLS FOR ME

#

I CAN'T FIND HIS DM'S

tropic totem
#

Looking for scripters for my studio.Dms if interested

placid matrix
#

do not listen to this informant.

bleak glade
floral musk
#

Hey guys, I want to build a really good portfolio and I wanted to know what I should add to a scripting portfolio

fast radish
#

i have almost 50 members on my port

plush lichen
#

should you focus on making the game loop first and finish that before focusing on the flashy stuff like modeling and animation?

bleak glade
winged meteor
#

just recently got into lua, I'm trying to learn some so that I can do code related commissions this summer, any tips on where to read up to help me learn?

plush lichen
#

reading bad

#

go make something

#

make something -> read -> repeat

kind magnet
#

all of this just for deciding how much an audience likes a certain role and how they should move lmao (this is for my roblox horror game unscripted where you're actors on a tv set)

also animations are placeholders atm

arctic patio
#

does anyone know how to make ball physics

shrewd python
#

is it possible to stop a if function during the middle of it, if so how?

shrewd python
#

like what connections?

#

can you give an example?

dusty pine
#

how can I make a grow a garden but different style : Practice coding not copying

balmy sorrel
#

as in preventing the code in the function from being executed after a certain point based on specific conditions?

solar plaza
#

can anyone teach me how to make kinetic blade(fortnite) dash

balmy sorrel
#

that stops the code after the statement call from running

shrewd python
#

Does return has to be at the end of the if function?

balmy sorrel
#

it depends on why you're using a return statement

fathom sundial
balmy sorrel
#

^

fathom sundial
#

use return to either return variables or end the function entirely

shrewd python
#

Alright thanks, I’ll see what I can do with it

solar plaza
#

i need help with scripting dash

fathom sundial
#

if call isnt equal to "GET" it wont return anything, and if it is but theres no data, it will return an empty table

#

if both variables exist it will return all the values inside of data separately

shy harness
#

anyone have any packages they think are good to know about before starting roblox dev? i've worked with some other engines before

#

Knit seemed somewhat interesting but the fact it breaks intellisense is not great

modest stratus
mint cloud
lethal light
#

If I put a lot of Trees with Leave Shake in my game will it lag (the script that makes the leaves on blocky trees shake)

runic quarry
#

So if you do probably not I guess

solar plaza
#

I’m trying to make air combat system and how would I keep the players in the air

#

making the gravity 0?

glacial kestrel
#

inverse kinematics are interesting

#

I’ve managed to do it on a skinned mesh

dense wharf
#

Hello guys

lost pebble
weak radish
dapper flume
#

If anyone’s wants to join a server that gives nitro dm me

#

I’m going to get it soon!

sonic ruin
#

whats the best way to learn lua not roblox docs

tardy pasture
#

i learned trough free models

sonic ruin
#

free models is insane

tardy pasture
#

u wanna know how to create a gun search one up read the code and try to change it to make it work how u want

runic quarry
#

Please tell vro to chill

glacial kestrel
#

LMFAO

#

he’s not flipping anyone off anymore

distant blade
#

Yo, i got around 4 years of Experience as a scripter now but I have legit no portfolio. I didn’t do any commissions for released games and I have an nda for the other games. Any idea what I could code for my portfolio ?

tardy pasture
silk sky
#

some people are allergic to reading

modest socket
#

just make your own, its literally 2 scripts and 1 is a module will controls for ur all the players data

runic quarry
#

Even small ones

#

You can try extending on those

modest socket
tardy pasture
modest socket
#

uhhh, just make systems

runic quarry
#

With four years experience I'm sure you can come up with a good project idea

modest socket
#

yeah exactly

#

just make little systems, or make ur own engines as a passion project

#

making ur own engine shows ur all ur skill tbf since it requires alot of exp

sudden estuary
#

one

glacial kestrel
#

ikcontrols

#

optimization wise? pretty terrible

runic quarry
#

I watched a yt short about that once

glacial kestrel
#

I could code my own controller

runic quarry
glacial kestrel
#

but for now I’m sticking to ikcontrols because they’re easier to visualize for me

runic quarry
#

As his 3D animated representation

runic quarry
# glacial kestrel but for now I’m sticking to ikcontrols because they’re easier to visualize for m...

FULL VIDEO: https://youtu.be/JnkAlwMjalc
3D animation is made of many components that seem daunting, but aren't so bad when you break them down. Here's one of those components!

Subscribe! https://bit.ly/3rugbJ5
Store: https://shop.doodley.org/
More Videos: http://doodley.org/
-------------------------------------------------------------------...

▶ Play video
glacial kestrel
#

oh yeah

#

really interesting

sudden estuary
glacial kestrel
#

fine to use it

#

if you’re a hyper optimization freak then you could make your own system

sudden estuary
#

i see

proven depot
#

i just got a slash vfx and its a particle emitter but i tried scripting and it does work and shows the vfx and the position is almost correct but it looks ass can anyone help me?

tender gulch
#

how the hell do i turn off this white square thing i cant even code properly

lost pebble
#

press insert

tender gulch
lost pebble
#

you're welcome

remote bear
tepid willow
#

hey guys is it ok to not have any game ideas

wintry panther
#

I suppose, but dont try making a game without an idea

sonic ruin
#

yall whats the best way to learn lua not by roblox docs or free models

wintry panther
versed sierra
#

I made a coin system woohoo

versed sierra
#

3 a day

#

dont rush it and code with him not just watch

versed sierra
#

theres a new doc on it

sonic ruin
lofty plinth
nova yarrow
#
local UniqueId = {}
MainServices = {
    game:GetService("Workspace");
    game:GetService("Players");
    game:GetService("Lighting");
    game:GetService("ReplicatedFirst");
    game:GetService("ReplicatedStorage");
    game:GetService("ServerScriptService");
    game:GetService("ServerStorage");
}

Services = {
    CS = game:GetService("CollectionService");
    HTTPService = game:GetService("HttpService")
}

for _,service in MainServices do
    if not Services["CS"]:HasTag(service, "MainService") then
        Services["CS"]:AddTag(service, "MainService")
    end
end

--// GUID
UniqueId.GenerateUniqueId = function(brackets: boolean)
    brackets = brackets == nil and math.random(1, 2) == 1 or brackets
    assert(type(brackets) == "boolean", "expected boolean got "..typeof(brackets))
    return Services["HTTPService"]:GenerateGUID(brackets)
end

--// instance finder only (exclude example: workspace, replicatedstorage)
UniqueId.FindByUniqueId = function(UniqueId: string, exclude: string | Instance)
    assert(type(UniqueId) == "string", "expected type string got "..typeof(UniqueId))
    for _,service: Instance in Services["CS"]:GetTagged("MainService") do
        print(service)
        if exclude then
            if typeof(exclude) == "Instance" then
                if service == exclude then continue end
            elseif type(exclude) == "string" then
                if service.Name == exclude then continue end
            end
        end
        for _,instance in service:GetDescendants() do
            if instance:IsA("Instance") then
                print(instance)
                if instance:GetAttribute("UniqueId") == UniqueId then
                    return instance, service
                end
            end
        end
    end
    return nil
end

--// helpers
local function IsDescendantOf(Instance: Instance, Parent: Instance)
    for _,service in MainServices do
        if Instance:IsDescendantOf(service) then
            return true
        end
    end
    return false
end

return UniqueId
glacial kestrel
#

wdyt

nova yarrow
glacial kestrel
#

procedural

#

the red squares are where the legs are supposed to go

hard cedar
patent wave
candid galleon
sudden estuary
wintry panther
nova yarrow
nova yarrow
late flame
#

Hey so how do I turn my players into an animal

#

Like an animal like a lion as a playable character

eternal veldt
#

I found the issue, It was the raycast hitting the player's foot due to the animation

eternal veldt
#

I added player's character to the raycast exclude list and it works fine now

dark juniper
#

don’t rage bait…

somber vault
somber vault
#

Just find some morph script in toolbox and change the morph ig

#

Or make the model the "StarterCharacter"

#

And put in starterplayer

late flame
somber vault
#

There are like a million tutorials for morphs

#

So search it up if you need help

late flame
#

Can u animate morphs?

#

I wanna give it abilities too

late flame
dark juniper
late flame
late flame
dark juniper
#

U need know model and coding

#

but that’s me so

late flame
dark juniper
#

yea that’s something noobs should stay away from

late flame
#

Modeling is so hard lol

dark juniper
#

yea it is

#

But you can just make the lions out of parts

late flame
dark juniper
#

Cuts the process down by a lot

#

learn to make a parts rig

#

or U could take something on sketchfab that’s open source

late flame
dark juniper
#

And retopologize it then bake then add bones to it

dark juniper
#

Yea modeling site

late flame
#

Idk anything about it loo

#

I'll check it out

dark juniper
#

Models on Roblox need to be under 10k tris

#

And they also need to be rigged

#

If you wanna animate them in Roblox moon animator

#

Since ur a noob they need both of these two

late flame
#

;-;

dark juniper
#

yea U don’t even know what tris i don’t expect you to be able to figure this out anytime soon

somber vault
#

Good luck maxie find a tutorial

dark juniper
#

no it’s multiple tutorials

#

if he wants to do this

dark juniper
#

Ok

somber vault
#

Facts

dark juniper
#

How about this do U have money

#

I’ll teach you the entire process

somber vault
#

I got 28 dolla in mah bank

dark juniper
#

Im scripter and modeler

somber vault
#

And 4 quarters in a jar at home

somber vault
#

Worst combo

dark juniper
#

yea but I’m actually good tho

#

At both

wintry panther
somber vault
#

He can only be good at one

#

He lies

dark juniper
#

no I’m genuinely good at both

#

I lowkey got two skills

dark juniper
#

I don’t really keep images lmao but I send a lot of my work in the modeling channel

#

If you wanna search for images there go for it

#

I mainly just make my own games

#

I don’t have a portfolio

#

These are two of my own characters I modeled tho

somber vault
#

Chat this man is the worst scripter you've ever met

dark juniper
#

Im insane actually

dark juniper
#

ok

#

Im wasting my time I go cod

somber vault
#

"Wasting my time"

dark juniper
#

yea I coded like 16 hours yesterday

sudden solstice
#

whats one skill thats easiest to improve in under a month

dark juniper
#

I need to code more

somber vault
somber vault
dark juniper
#

Im coding a streets game so I made robbing, a cash system, added new chars

sudden solstice
somber vault
#

16 hours?cryingdead

dark juniper
#

Yea basically

somber vault
sudden solstice
#

or just when ur so focused

dark juniper
#

It was just really focused that day

dark juniper
somber vault
#

Send link

#

Ill check it out

dark juniper
#

The only real thing I need to add mobile support to is assault rifle

#

Since it uses UIS:WhilePressed(mouse button 1)

#

Or something like that

somber vault
#

You can uh

sudden solstice
#

is adding mobile support a whole different ball game?

somber vault
#

No

dark juniper
#

With a bunch of buttons

#

But I believe there’s a new roblox service for all inputs

#

I need to try it today

somber vault
sudden solstice
#

genuinely had a reality check when i realised mobile conversion isnt automatic

somber vault
#

I gotta see how quickly ill break ur code

dark juniper
somber vault
#

Yay

dark juniper
#

I’ll dm you in a sec

eternal veldt
late flame
proven depot
late flame
#

What the hell is even modeling skullcry

late flame
#

I researched it and found out about quads and ngons too

mystic belfry
#

yo guys! where do i apply to get hired for my scripting?

dark juniper
#

ngons and quads are really just triangles when U think about it

north vigil
#

Yoo guys, I need help just watch the video, after that the issue should be clear, that the player cant move on the platform is normal, thats what I wanted, but after the platform drove back to beginning, the character is moving too. After the platform is back, the platform should be there forever and the player is free of the fix. This is my main problem

mystic belfry
#

uh

late flame
ruby cipher
#

dude roblox needs to add "copy location "

#

that'd be a nice qol

glacial kestrel
late flame
ruby cipher
# late flame Wdym

likei nstead of having to write game.replicatedstorager.modules.blabla.blabla

#

u can just press

#

copy location, and it copies it for u

late flame
#

U can skip like 2 or 3

ruby cipher
#

its a qol

#

its just nice to have

late flame
#

Local blah = game.replicatefstorage.modules

#

Then u won't have to mention all dat again

ruby cipher
#

u do understand

#

that u make a thousands of variables in big games

#

its just a qol 🙏

late flame
ruby cipher
#

u could change

#

settings

#

or actually it might be trash

#

performance wise

late flame
late flame
#

Imma just put the game on hold until I can model myself ig

#

Wth is a bone hierarchy skullcry

shy furnace
dark juniper
ruby cipher
shy furnace
late flame
dark juniper
#

im a pretty rare guy

#

take the offer if U want

late flame
#

My country has hyperinflation and civil war so it's not that easy to get one skullcry

ruby cipher
#

what would i do without module scripts

late flame
#

I'll have to learn it locally or learn it myself

late flame
ruby cipher
#

without module scripts

#

and u have over 10 badges with requirements

#

ver hard to manage

late flame
late flame
#

I never used module skullcry

#

Actually I just don't know how to use them lol

stiff ibex
#

poopy code

ruby cipher
late flame
late flame
ruby cipher
late flame
#

Not professionally ya know

ruby cipher
#

is this luau

dark juniper
#

U clearly got worse issues at hand

stiff ibex
late flame
dark juniper
#

thats why it look weird

ruby cipher
#

everyone always gotta make the most advanced functions and variables

rapid slate
#

so what

stiff ibex
rapid slate
#

if it works it works

#
  • harder to replace the position heh
ruby cipher
dark juniper
stiff ibex
# ruby cipher how so

because there's a bunch of built in functions, libraries, and workarounds to make something work

#

all I'm doing is making iPhone firmware in Roblox

ruby cipher
late flame
ruby cipher
#

did u make the debug module urself

stiff ibex
ruby cipher
stiff ibex
#

that's apparently incomplete

late flame
stiff ibex
late flame
#

I'm like a beginner rn so I know pretty much nothing

late flame
#

I forgot how to spell sanerios

stiff ibex
late flame
ruby cipher
# stiff ibex

Any chance to get a sneak peak on what you're making

late flame
stiff ibex
ruby cipher
#

damn

#

sick

late flame
#

Like the whole phone OS? skullcry

stiff ibex
#

even the internals

ruby cipher
#

do u study at harvard

stiff ibex
ruby cipher
#

thats impressive

stiff ibex
late flame
stiff ibex
#

I even have some internal versions of iOS

#

like InternalUI and SwitchBoard

#

SwitchBoard's internal name being NonUI

rapid slate
#

sounds p epic tyler

#

keep at it

stiff ibex
late flame
#

Tyler are u living in 1st world or 3rd world?

stiff ibex
#

idk

rapid slate
ruby cipher
#

the 3rd sea

#

blue ocean pacific

stiff ibex
#

First world country, according to Google.

late flame
#

I think

#

Or more if u become an indie developer and succeed lol

stiff ibex
#

all I know is that I'm a female doing all of this

#

almost the entirety of women and girls around the world don't find it interesting to do this

#

but I'm one of them that do find it interesting

ruby cipher
#

Coding used to be a females sport

late flame
late flame
late flame
ruby cipher
late flame
rapid slate
late flame
#

They had to manually write codes in paper or smt I heard

#

Idk

ruby cipher
#

em

#

i think they just used

#

terminals

late flame
stiff ibex
late flame
#

I know they helped in the space race tho

ruby cipher
#

It was like really small

late flame
#

Idk

wind wagon
#

how much soccer ball kicking system costs?

stiff ibex
late flame
#

Is this allowed?

ruby cipher
wind wagon
#

@somber vault @rustic inlet

stiff ibex
somber vault
#

Missed that

wind wagon
ruby cipher
#

Imagine writing code on one of these

wind wagon
#

ez

somber vault
#

Make user report I gotta bed myself it’s 2am

wind wagon
#

i took screen of it

stiff ibex
late flame
#

Hey so does anyone have experience in modeling?

#

How do I even start?

stiff ibex
#

my dad's still asleep, is he off work today?

late flame
stiff ibex
#

but i dont know either

#

most of the time i just say that if im going afk

modest stirrup
#

someone know how i can show the results in a GUI/leaderboard?

vital parrot
#

gonna try posting this again, my projectiles dont detect any parts when at high speeds

#

looks correct to me but I could be missing something

wise meadow
#

if anyone needs a dev dm me 🙂

ocean yacht
#

dm me if u script i have a game idea & 200k in ads u get 50-60% of the game 60 max 50 min. u must be intermediate +. i do userinterface modelling and other stuff too so all that would be taken care of

gritty briar
#

someone give me a scripting challenge no combat stuff please

solar acorn
#
game.ReplicatedStorage.Events.SpawnBall.OnServerEvent:Connect(function(player)
    local humanoid = player.Character:FindFirstChild("HumanoidRootPart")
    local ball = game.ServerStorage.Models["1_Ball"]:Clone()
    ball.Parent = workspace
    ball.CFrame = humanoid.CFrame * CFrame.new(0, 10, -3)
end)```

How would I make the ball fall slower?
solar acorn
silent relic
#

from where do big roblox studios get their devs

spare laurel
feral ermine
cedar pier
umbral carbon
misty cloak
#

Ive been making silly little projects in roblox until now and i want to make a game but i dont know whats the most optimal way to structure my game some people told me to use knit framework some people told me to just create my own framework anyone got any suggestions

crisp falcon
quiet creek
#

anyone want free pixel art? 👅

lunar sky
quiet creek
lunar sky
trim wind
#

How do you people even understand this language?

solar acorn
#

how to adjust animation speed

lunar tundra
#

anyone know how to fix this

#

4th line

bleak glade
#

instead of whitelist

lunar tundra
#

k

lunar tundra
# bleak glade use Include

i did that but the thing i am trynna do is not working i am trynna make a skill for "e" when i test it nothing happens

bleak glade
lunar tundra
gray maple
#

IF ANYBODY NEEDS A FREE CODER THAT DOESNT TAKE % OR ROBUX DM @dark coral HE WILL CODE A WHOLE GAME FOR YOU AND YOU TAKE ALL EARNINGS

bleak glade
#

whitelist is just deprecated its not actually an issue and would have worked anyway

lunar tundra
#

yeh i think sum els is worng in the scripts

bleak glade
#

so whats the issue

lunar tundra
#

i am following a tut but did everting similer but it iant workin

bleak glade
#

youre not even useing the raycast

bleak glade
gray maple
#

no that's more racist

#

blacklist being parts to be ignored

bleak glade
#

then use exclude and include so its not racist

gray maple
#

yeah

#

the sole reason

#

I still use blacklist tho

lunar tundra
bleak glade
#

on the server with this module

lunar tundra
bleak glade
#

you must actualyl be using this module somewhere

lunar tundra
#

i am using moduelescripts, if that helps

bleak glade
#

that was obvious

#

but it must still be used on the server as it doesnt run by itself

lunar tundra
#

these are all i am using

gray maple
#

you said you scripted first time

#

yeahh buddy

bleak glade
#

this is not a first time scripting setup but ok

lunar tundra
lunar tundra
gray maple
#

bruh

#

cooked

#

you're following on how to build a rocket

lunar tundra
#

i was just tryna make a skill for fun

bleak glade
#

but you dont know what youre doing

lunar tundra
#

ig...

#

but u learn from doing shi.....

#

so i was like y not

wise meadow
#

anyone needs a scripter feel free to dm.

lunar tundra
#

guess ill figure this out

hallow crag
#

somewhere

#

u need to change it to "Combat" or "TestSkillSet"

lunar tundra
#

i should do testskillset/

#

clm

copper apex
lunar tundra
#

so thats y

copper apex
#

If u copy vid, u wont truly grasp the code

lunar tundra
#

i never did scripting i main modeling

hallow crag
#

and not learning anything

copper apex
#

Yes

raven cloak
midnight wigeon
#

how much rbx is it okay to charge for scripting a gun in First-person Shooter ?

hallow crag
#

above

#

just send the code here

#

ill fix

raven cloak
#

alr, but after can you explain it to me

hallow crag
#

yeah ok

raven cloak
#

local player = game.Players.LocalPlayer
local gui = script.Parent.Parent
local label = script.Parent
local guiText = label.Text

game.Players.PlayerAdded:Connect(function()
print("Player has joined experience!")
gui.Parent = player.Head
guiText = player.Name
end)

hallow crag
#

local gui = script.Parent.Parent
local label = script.Parent
local guiText = label.Text

local function CharacterAdded(character)
    local head = character:WaitForChild("Head")
   
    gui.Parent = head
    guiText = player.Name
end

if player.Character then CharacterAdded(player.Character) end

player.CharacterAdded:Connect(CharacterAdded)```
#

that should fix it

copper apex
hallow crag
#

and a localscript

#

😭

raven cloak
#

huh

#

im not doing on server

copper apex
swift blaze
#

who want to make a script for 2 dollarscathello

copper apex
#

Thats not my script

hallow crag
#

oh got mixed up with the names

#

mb

copper apex
hallow crag
#

then u needa do on server

copper apex
#

Yeah

raven cloak
#

and can someone explain what difference it makes when using for loop

copper apex
#

Otherwise clients can play around with the display

raven cloak
#

alr fine 😠

copper apex
#

Im not forcing you 😭

#

Its just a good practice

#

You dont want things like that on the client otherwise players can tweak the information shown on the display

#

And put some bad words

#

It wont show for other players but still

raven cloak
#

ok im doing it

hallow crag
# raven cloak ok im doing it
local replicatedStorage = game:GetService("ReplicatedStorage")

local billboardTemplate = ReplicatedStorage.Billboard

local function playerAdded(player)
    local function characterAdded(character)
        local head = character:WaitForChild("Head")

        local billboard = billboardTemplate:Clone()
        billboard.Parent = head 
        billboard.TextLabel.Text = player.Name
    end
    
    if player.Character then characterAdded(player.Character) end 

    player.characterAdded:Connect(characterAdded) 
end

for _, player in players:GetPlayers() do playerAdded(player) end 

players.PlayerAdded:Connect(playerAdded)```
#

u would do something like that

raven cloak
#

yeah

hallow crag
#

make sure to place the billboard in rep storage

raven cloak
#

thats why im doing rn

#

just tweakin the code

hallow crag
#

not a localscript

raven cloak
#

i am

hallow crag
#

and the script needs to be in serverscriptservice

#

not the billboard

#

😭

raven cloak
hallow crag
#

alr good

raven cloak
#

bro im not that dumb, but fair enough

hallow crag
#

on the server

#

😭

raven cloak
#

ohh shi

hallow crag
#

just do what i did

raven cloak
#

😭

#

thanks bro

#

still such a novice. Also need to learn tweens :/

celest river
#
hallow crag
hallow crag
#

just a tip never tween on the server

raven cloak
#

why? what happens

hallow crag
#

its just bad for peformance

#

if u need a tween to appear for all the players

#

then u needa

#

fire to all the clients

#

to play a tween

raven cloak
#

oh alright. Also can you just explain which parts are the servers and which is the client?

#

Because i watched a video and i still dont understand it

hallow crag
#

local scripts (the blue scripts)

#

normally go in starterplayerscripts

#

or startercharacterscripts

raven cloak
#

oh so are those the sprint scripts and the other player specific scripts

hallow crag
#

any code running in a serverscript is the server

#

any code running in a localscript

#

is the client

raven cloak
#

👍

hallow crag
#

and then to communicate between the server and the client

raven cloak
#

remote events

hallow crag
#

u can use remote events/remote functions

pulsar acorn
#

do u guys ever attach scripts to a part? ive never seen myself do it

hallow crag
#

i just use one script

raven cloak
hallow crag
#

and use collection service

hallow crag
#

just add a tag to each killbrick

#

and use 1 script

raven cloak
#

damn

pulsar acorn
raven cloak
#

WHY AM I BEING TOLD THIS NOW??

#

bro i feel like such a noob 0-0

hallow crag
#

lol dw

#

experienced scripters do the same thing

#

its weird

raven cloak
#

oh so its fine

hallow crag
#

not really

raven cloak
#

is it good for optimizing?

hallow crag
#

if u dont care about a messy codebase

#

and peformance

raven cloak
#

when using collection service

hallow crag
#

then go ahead

raven cloak
#

??

hallow crag
raven cloak
#

alr

#

thats good then

hallow crag
#

u can just grab all the parts

#

in 1 for loop

#

and add the .Touched

#

event

#

it also saves time from having to go to each script in each part

raven cloak
#

to do this i use a folder and parts inside

raven cloak
#

i could use collection service instead

hallow crag
#

but its basically just noclip

raven cloak
#

the only thing im average at is animation and modelling

hallow crag
#

its ur choice

raven cloak
#

yeaah i could

#

do you think i can post my thumbnail here to show for progress and for any thoughts?

hallow crag
raven cloak
raven cloak
#

alr

hallow crag
#

its a public chat lol

raven cloak
#

this is meant for a tutorial on how to make thumbnails

#

i think its quite good but idk

#

its decent enough for the video im making

hallow crag
#

better then what i can do lmao

bronze depot
#

Yo, someone to make a new game ? i already have the first prototype which need ideas and improvements, my first game has made over 5m revenues in months, DM me for the prototype link

raven cloak
hot meadow
#

Anyone have some recommendations of what to do I am learning Lua and i have some experience with c# and i notice it is a little bit the same but now I am stuck because i watched some tutorial but don't think I have the knolage to built something decent what should I try now?

hallow crag
#

and how good your reputation is

raven cloak
raven cloak
#

bit sad tbf

raven cloak
hot meadow
#

yea I am noticing that lol

wide socket
#

while using phase

raven cloak
#

yeah that could work.

#

It could be like superhot or for other cool stuff

wide socket
raven cloak
#

Yea maybe

#

I don’t mind

#

Can do team create, just I have school and that. So I won’t be that active

alpine scarab
#

Guys is there any ban hammer with animation in toolbox?

#

I dont need the ban script just need the animation

raven cloak
#

also do you want to add on dms?

#

@wide socket

wide socket
#

its my user 😭

raven cloak
#

oh ok

green wraith
#

which is worse 💔

#

better reading on the left for me but i need other opinions

raven cloak
glacial kestrel
#

wdyt

vital parrot
#

How should I do projectile hit detection?? mine sometimes goes through walls

#

I'm using Raycasting and cframe rn

#

I tried both on server and client and it still goes through

#

My projectiles are going pretty fast but It still should be detecting the dang wall

mental pond
#

Do you think AI can be a good tool with helping to learn scripting

#

Well i mean i do know the basics of coding and I dont want to use it to make a whole game. I mean as in using it to fix busted code and give pointers when needed

silver verge
dusky kestrel
mental pond
#

i am at a point where I want to go out and make small projects but dont know what to do when I hit a roadblock. Like I have no idea what to do or search up

#

id assume ai could help but I do hear that it might have more cons than pro when using

dusky kestrel
#

same with most AI

#

ask it to fix a gun and it'll spit out code on issues that weren't even issues while creating new errors

dusky kestrel
#

they usually have what you would need

#

besides like complicated things like

#

how to make advanced boats with Ai

mental pond
#

Alright dude ill try it

#

thanks

native flare
#

why is there never coding tutors in the tutor channel

wide socket
steady spindle
#

One message removed from a suspended account.

hallow linden
#

how do people use rojo, it literally slowed down my workflow because I don't get to have instance suggestions

hallow linden
#

like yay I get to use vscode

dusky relic
#

I use it on vim

hallow linden
#

but also I get to look through 2 different screens trying to create a script

dusky relic
#

???

#

wdym'

hallow linden
# dusky relic ???

create script under part in studio, go back to vscode, forget what the stuff I wanted to reference is called so I go back to studio, see the stuff's name, back to vscode

dusky relic
#

oh...

#

uh

#

how long have you been scripting?@hallow linden

hallow linden
dusky relic
#

I don't think you're advanced enough to have the need to use rojo

dusky relic
#

I very rarely place any scripts in workspace.
I don't have the need to really go into roblox studio at all.
I also don't test my code until the very end 99% of the times

#

I don't have a purpose for the roblox studio IDE since all i really use it is to write code, the rest is just clutter.

hallow linden
#

at least for my hobbies

jolly forge
#

Yo! sorry to ask for assistance here but people in code help are busy in a debate or smth and don't seem keen on assisting. So yall mind helping me out with something? I am a bit new to coding but trying to make a simple currency system which I should be able to eventually learn to replicate easily.

hallow linden
#

so like, I do need to quite often go to Studio to do things

hallow linden
jolly forge
hallow linden
#

but dw its something everyone does at some point

#

now

#

wdym "replicate" here?

jolly forge
#

imma just copy/paste what I sent in there

jolly forge
hallow linden
jolly forge
#

for the time being I want to make a simple npc store, should be easy enough, what I need to learn to replicate is how to "change the currency value"

#

but for now what is being absolutely awful, is jumping through hoops to make a backend that just simply "changes the gui number"

jolly forge
#

Yo anybody able to help me with a lil code? Struggling to make my gui change. trying to make a simple currency system, I have a + and a - button which should increase and decrease the currency amount. what I have so far is an event to take and add a "Skiddle" (my currency name). they work just fine and fire to the output box, but here is the server script which takes the input from the server event which for now for some reason does nothing.

local RS = game:GetService("ReplicatedStorage")
local AddSkiddleEvent = RS.AddSkiddleEvent
local TakeSkiddleEvent = RS.TakeSkiddleEvent
local SkiddleCountInstanceMade = false

AddSkiddleEvent.OnServerEvent:Connect(function(player)
if SkiddleCountInstanceMade == false then
local SkiddleCount = Instance.new("IntValue", player)
SkiddleCount.Name = "SkiddleCount"
SkiddleCountInstanceMade = true
end
local SkiddleCount = player.SkiddleCount
SkiddleCount.Value += 1
local SkiddleCountValue = game.Player.
wait(0.1)
end)

I am getting no errors but it just doesn't do anything, any tips?

jolly forge
versed sierra
jolly forge
#

wait this doesnt look right

versed sierra
#

lol

dusky relic
#

@jolly forge Did you chatgpt the code..

jolly forge
#

I am just a bit new and frankenstein'ed it together ;-;

#

its literally supposed to be a button which increases the amount of skiddles which is the currency

versed sierra
#

So your making a currency system

jolly forge
#

yes

#

why is it making an instance every time the button is pressed

versed sierra
#

I know how to make a currency stat in the leaderboards section

jolly forge
versed sierra
#

Not to change gui yet

#

I’m fairly new as well

hallow linden
jolly forge
#

ok lemme wrap my head around this

#

so

#

shoot one moment brb

hallow linden
jolly forge
#

ok gotcha

#

what I want to do is connect the string value once is it made in the player, then just edit that every time that I want to take money away or give it

#

hmmm

#

honestly what I have so far looks so ungodly overcomplicated and janky, there has to be a way I can make this jank-free