#code-discussion

1 messages · Page 4 of 1

bold musk
#

if 1 = 5 return end but it 1 = 5 return void

stiff ibex
#
 20:51:20.003  > if 1 = 5 return end but it 1 = 5 return void  -  Studio
  20:51:20.013  if 1 = 5 return end but it 1 = 5 return void:1: Expected 'then' when parsing if statement, got '='  -  Studio
safe gazelle
#

how do you learn roblox code

stiff ibex
#

crap

bold musk
bold musk
safe gazelle
stiff ibex
safe gazelle
#

i want to learn like the different types of function

#

yeah how do i learn lua U functions

bold musk
safe gazelle
#

is their a list of the functions

stiff ibex
stiff ibex
#

Roblox defines them

safe gazelle
safe gazelle
stiff ibex
safe gazelle
safe gazelle
#

ik i clicked vector and it had like the functions

#

but how do i get more of them

bleak glade
#

who made ts

safe gazelle
#

like the useful ones

bleak glade
#

while true in a task.spawn, using render stepped, and another while true 💀

wanton cloud
bleak glade
#

yeah idk about working with other scripters 😭

fast crater
#

why do scripts like to work perfectly then wait a day to break

#

like what the flip man

wanton cloud
fast crater
#

anyone know why my code door isnt working?? when you press the button nothing happens...

#

wrong channel

stiff ibex
#
-- Indicate to the user that we are trying to boot.

function PrivateFunctions.do_boot_ui()
    if PAINT.WITH_PAINT then
        debug.profilebegin('bUI')
        if not Main.PRODUCT_INFO.PRODUCT_IBEC then
            --[[
            Don't enable remapping for iBEC because it will cause a
            "white flash" on white-faced units in restore mode.
            <rdar://problem/14620772> boot logo color remapping support for restore mode
            ]]
            PAINT.paint_color_map_enable(PAINT.paint_color_map_is_desired())
        end
        PAINT.paint_set_bgcolor(Color3.fromRGB(0,0,0))
        PAINT.paint_set_picture(0)
        PAINT.paint_set_picture_for_tag(require(boot_master.include.lib["image.h"]).IMAGE_TYPE_LOGO)
        PAINT.paint_update_image()
        debug.profileend()
    end
end

do_boot_ui function. Indicate to the user that we are trying to boot.

brave olive
#

your order of operations is wrong, the print statement only occurs if foodCount isn't 5; also what is going on with the line below

stone isle
#

i made a spinning wheel gui

stone isle
#

me

sleek rose
#

Hey so im using nodejs for a discord bot, is it possible to translate roblox id to rober user?

sleek rose
bold musk
#

i mean it probably is possible

#

uh

#

let me check the docs

sleek rose
#

theres roblox users to discord id, but not vice versa

#

weird

bold musk
#

fucking

#

6 dollars for the api

sleek rose
#

bloxlink?

#

its free

somber vault
bold musk
rustic wharf
#

Any expert scripters here for a question

woven pelican
rustic wharf
woven pelican
rustic wharf
#

Server script handles server side cooldown and hitbox

#

Module script handles the function for replicating effects back to client

#

For which the function are called in the localscript

woven pelican
#

effects on client then fire to server which fires to all other clients to make the effect

rustic wharf
#

That's not what I asked

woven pelican
#

idk its kind of confusing what u asked

#

wdym make 1 local and server script for each character?

next raven
lean ocean
rugged mist
#

print(('')["\99\104\97\114"](110, 111, 111, 98))

woven pelican
naive forge
#

Can someone explain how global slash commands work?

lean ocean
#

Aslong as you don't yield the fireallclients on the server u should be fine

topaz iron
#

Anyone need a team for game jam?

woven pelican
bold musk
#

d1d

prime cave
#

does anyone have a group with a game with over 100K+ visits? if so, I’m willing to buy it for rbx.

lofty grotto
ivory kite
# lofty grotto Rate pls

The weapon idle animation feels a little stiff, you should also probably set the idle to the same priority as your movement so you can blend the animations a little

#

Looks good so far

wooden ibex
#

I don't know how to script this and I need help with making it so when you touch a part the invite friends gui pops up, i've tried looking up on dev forum but didn't find anything

mystic yew
#

anybody know if a tween with a strong refernce will gc when the scope ends?

local part = workspace.Part -- strong reference

do
 local tween = game.TweenService:Create(part, ...) -- create tween using the strong reference
 tween:Play()
end -- scope ends, but does the tween gc afterwards?
mystic yew
#

ig i was overthinkign it

warped moth
#

I need to decode a file can't anyone help it's encode into _ = lambda __ : __import__('zlib').decompress(__import__('base64').b64decode(__[::-1]));exec((_) can anyone decode it?

misty stratus
#

Ask chatgpt

thick fern
vague phoenix
#

Anyome have a doc about oop

thick fern
#

alr i asked chatgpt and it just refused, deepseek said its potentially dangerous

thick fern
#

oop or object oriented programming is basically handling programming with 3d objects

#

bro i mean bro wanted oop i just said oop 💀

#

i dont think i cooked Skull

inland bay
#

get outa the devforums bro

#

☠️

feral sage
#

can anyone help me make things happen at a time like from Fears To Fathom: Woodbury Getaway

somber vault
#

or specify more

feral sage
stiff ibex
#

CAR!!!

minor ermine
stiff ibex
thorn frigate
#

if a player's movement is prolonging on a slippery platform, will they have a move direction?

frosty token
#

could someone dm me and explain how to make a data store from one game work in another, for example if i want to reupload my game and make a second version how do i make it so i still have the same data from the 1st to the 2nd?

somber vault
frosty token
somber vault
#

as far as I know, it is complicated

frosty token
somber vault
somber vault
somber vault
#

either make a brand new place

#

so be careful

#

or have an external database

#

or use a proxy to talk to datastores using httpservice

somber vault
#

luna cooking

loud zenith
#

its more like classes

#

the "object" in OOP doesnt mean it HAS to be a 3d object

modern mirage
#

how to optimize this animation?

Tool.GripPos = Vector3.new(0.5, 2.9, -0.3)
wait(0.02)
Tool.GripPos = Vector3.new(0.5, 3.5, 0)
wait(0.02)
Tool.GripPos = Vector3.new(0.5, 4, 0.5)
wait(0.02)
Tool.GripPos = Vector3.new(0.5, 4, 1)
wait(0.02)
Tool.GripPos = Vector3.new(0.5, 4, 1.5)
somber vault
#

you can host proxies for free

#

and through those proxies you can send requests to datastore's open cloud

#

thats the most feasible way that i can think of

#

only trouble is writing those proxies and your roblox-facing functions to send them packets

frosty token
#

could someone pls help with a external database in dms

thick fern
#

i cant waste my time explaining each concept

potent igloo
#

I own a fighting game and in some situations i need the player mouse position to be constantly updating, this usually causes ping lag though, is there any way i can prevent that?

thick fern
#

i mean u can add a tiny delay in between ig

thick fern
potent igloo
#

Like a beam that always fire towards the mouse

potent igloo
modern mirage
thick fern
#

"if it works dont touch it..."

thick fern
#

from the server side or local?

potent igloo
#

Both

#

Local for the vfx

#

Server for the hitbox

#

And both need to exist

frosty token
sudden estuary
#

datastore works on basis of universe (game) not places. Each place shares the same datastore

frosty token
sudden estuary
#

?

frosty token
sudden estuary
#

you give your datastore a name when use GetDataStore

#

use the same name across all places

#

for accessing that specific datastore

frosty token
somber vault
#

A question, where did you learn LUA?

hardy pilot
open walrus
#

is there any stuff to start making while learning luaU?

#

which would help to retain what i learnt from the tutorials

open walrus
#

why facepalm ;-;

jovial whale
latent gust
open walrus
#

Guess I did do some python and stuff and web dev

#

That's it though

jovial whale
#

no like

#

any past experience

open walrus
#

No I'm 15💀

jovial whale
#

or is this the very very first time you started at programming

open walrus
jovial whale
#

learn the fundamentals of programming first or learn the fundamentals of roblox lua first

open walrus
#

Trying game dev rn

jovial whale
#

beeeeeeeeeeeeecauseeeeeeeeee

open walrus
#

Yeah I know some stuff ig

jovial whale
#

if you dont know the basic, you cant do anything with the tutorials give you

open walrus
#

I took courses like cs50x and stuff

#

Cs50p

#

And stuff like those

#

And made stuff

#

But game dev is new for me

jovial whale
#

so you do know

#

if else statements

#

and loops

open walrus
#

Yes 💀

jovial whale
#

okay

#

then make a teleportation system

open walrus
#

Im watching brawldev rn

open walrus
#

Me in the middle rn

#

Tryna learn tweens rn

open walrus
#

💀

jovial ice
#

Yo, is it possible to create string attributes with nil value through a script to then assign to players on join?

open walrus
#

Shi is hard yeah

jovial whale
#

this channel is dead

#

Good luck on your journey bro

#

cuz i aint coding yet 😼

jovial ice
jovial whale
open walrus
#

Aight imma make the classic

#

Obby🗿

crimson plank
#

HELPPPP

latent meadow
#

who will fully script game (5k)

latent meadow
latent gust
inland bay
latent gust
#

any % of 0 is 0

inland bay
#

fair

raw imp
#

Is getting your game available / compatible with console and ps hard ?

#

/// is that a scripters job orb

inland bay
#

if you pay them to do so

#

scripters arent going out of their way to make shit work with consoles

raw imp
#

Is it ****

inland bay
#

no idea, doubt it

#

the only things youd need adapted would be like custom guis

#

so they could be navigated with controllers

#

besides for that

#

dont think so

median tree
inland bay
#

but its still ass

cyan spindle
#

is there any good scripter who can fix bugs in my game and make it ready for release

waxen vapor
#

is there a way to make this more short and concise it looks rlly ugly

#

can i just do this in one line somehow

hardy pilot
#

You can abstract it into a function, it's still multiple lines but clutters your other functions less

waxen vapor
#

alr

#

i might do that actually

light cobalt
#

Yeah it's basically just rearanging it but it'll make it much more readable

latent geyser
#

I cant understand how "kill leaderstats" works

#

I want do it with myself

#

or

#

lemme search it

crimson yacht
#

anyone here have experience with building vehicle chassis?

crimson yacht
#

he hasn't responded to my DMs in a month so he probably isnt interested

hasty mesa
#

staliniumdev

crimson yacht
#

theres not really a specific channel for chassis

green stratus
#

Does anyone know how Bloxlink/RoVer does "Game Verification", when you just join the game and It knows that ur the Discord user asking.

brave egret
#

dm

regal tree
#

do you know why my leaderstats dissapear?

honest shuttle
#

GUYS ATTENTION : Guys is very careful of him, he's a thief, a scammer and he's wasting everyone's time, he made me believe that we were going to create a game together, but he just wanted a free text logo and when I tell him, I need time, he said, you're useless, he's gone, be very careful with him, he's going to send you a message in Come let's create a game together but in fact he's going to rip you off .Even if you don't do the logo it can try to rip you off on something else

stray zodiac
#

anyway is there a limit to serverstorage?

#

sizewise

hardy pilot
latent meadow
inland bay
#

I've admitted it was a stupid statement twice

latent meadow
inland bay
#

then why comment

#

☠️

molten plinth
#

This is basically the reason for 70% or internet fights tbh
Misunderstanding

inland bay
#

I love not reading up on discussions then commenting on them!

crimson yacht
#

am i allowed to ping him or..?

#

@hardy pilot is it okay to ping him?

molten plinth
hardy pilot
#

Idk

#

I wouldn't but I'm also not him

latent geyser
#

i think i can write now datastore

#

with this code

#

(i stole it from a youtube video)

#

so

dark juniper
#

if only he knew

#

😏

#

should work fine for the most part

#

ehh you'll figure it out

latent geyser
#

this code is not mine just im looking up

#

im beginner

dark juniper
#

🙏

latent geyser
dark juniper
#

everyone starts there

latent geyser
dark juniper
#

I was a noob like you....

#

almost a year and a half ago

#

never give up

#

💪

latent geyser
sleek cliff
latent geyser
sturdy copper
#

🥺

bleak glade
red holly
# latent geyser

do you really need two seperate datastores for kills vs deaths?

there are read/write limits to datastores

structuring your data to use one store imo makes more sense ie:

type data = {Kills: number, Deaths: number}
local data;
local suc, err = pcall(function()
data = dataStore:GetAsync(player.UserId) or {Kills = 0, Deaths = 0}
end)
...```

Although I havent written stuff like this in a while since I use profilestore
hardy pilot
# latent geyser

A warning is great but only reason you'd do that is if you wanted to run something after that

#

I suggest implementing retrying, notifying the player or something other than ignoring it and just loading nothing.

hardy pilot
#

Turning a simple rejoin to fix into loss of all data

latent geyser
#

this is the full of the code

high plaza
#

what is this thing yapping about

red holly
#

yeah maybe at the ned of your player join do player:SetAttribute("ServerLoaded", true)

and then in player removing do

if not player:GetAttribute("ServerLoaded") then return end

hardy pilot
# latent geyser

Also pcall returns success and result, result being the error message or whatever you return

high plaza
#

cuz my ass did not say players bruh

red holly
#

(probably)

red holly
#

send ss of where script is located

high plaza
#

wait

#

what the fuck

#

why is it doing this bro

hardy pilot
#
local success, result = pcall(function()
  return "Hello World!"
end)

if success == true then
  print(result)
end
high plaza
#

never work with another scripter omg

#

90% of them are bums

hardy pilot
#

That's because of who you're working for

high plaza
#

other way around

hardy pilot
#

What way exactly

high plaza
#

they work for me

hardy pilot
#

Ah, well you might need to fork up some more cash

#

or do it yourself

high plaza
#

what does it look like im doign

#

😭

hardy pilot
#

or find someone to compliment your skill set as a partner

high plaza
#

half of the scripters out there charge some VILE numbers

#

i had some dude try con me into paying 200 gdp for a weather system

#

just for rain bro

#

😭

magic sluice
red holly
magic sluice
#

guys why when i try to test if my gamepass works

hardy pilot
magic sluice
#

i get this

bleak glade
hardy pilot
#

Some rain could be clouds, natural occurrence, lighting change

high plaza
#

nah i was simple with it

hardy pilot
#

A lot of code to write and a lot of front end work

high plaza
#

you cannot in any reasonable mind justify 200 gdp for some weather

hardy pilot
#

Mostly just front end visual work

high plaza
#

you would have to be really crazy

#

more then kanye rn

hardy pilot
#

Rich people getting bored and going onto twitter 💔

#

and then we give them more money anyways

high plaza
#

click on my profile rq

hardy pilot
#

I mean what is Kanye going to do with his life, he's rich already

somber vault
#

local success = ( function() return "hello" end

hardy pilot
high plaza
#

what im listening too

hardy pilot
#

It doesn't tell me

#

I think it's for friends only

high plaza
#

o

#

its heartless

hardy pilot
#

I'm guessing a Kanye song?

high plaza
#

by mr twitter tweaker

#

yes

hardy pilot
#

I've literally never heard his music

#

I wouldn't know

#

All I know is that he made "Graduation" because of people talking about it

high plaza
#

tbh

#

separate the art from the artist

#

his old shit is reallllly good

#

anything new is just sad tho

#

its like seeing a family memeber whos turned into a zombie

#

you see how fucked they are but you remember the good times

hardy pilot
#

I mean being rich as fuck early does get rid of most joy

high plaza
#

anyway i should be slaving away at this code

hardy pilot
#

in like everything

bleak glade
#

how do i fix organization

hardy pilot
bleak glade
hardy pilot
#

You could probably distil a lot of that into a larger system like a component one

bleak glade
#

probably, some of them are 100 ln and others are 1k+

latent geyser
#

guys i have a question for my friend's game

hardy pilot
#

Also stop calling everything a handler

#

At least try to avoid words like that

#

Handlee System and such are all true but they apply to every script written

latent geyser
#

im translating it, sorry for translate english

bleak glade
latent geyser
#

He makes a game similar to Roblox, but in retro form. What he wants is for people to arrange their avatars at the start place as they wish and enter the games they have prepared with that avatar. In short, he wants to move the data of the players in the start place to other sub-places.

wise turtle
hardy pilot
bleak glade
wise turtle
hardy pilot
#

In USD? Really?

bleak glade
#

or messageservice

latent geyser
wise turtle
hardy pilot
#

📋✍️
-# to rob Parihsz's parents

bleak glade
wise turtle
#

im tryna make money from game dev on roblox

#

and its fun

latent geyser
#

its like roblox

#

we making avatars

#

and entering the games

#

with same avatar

bleak glade
#

so its not on roblox

hardy pilot
wise turtle
hardy pilot
#

So 0?

latent geyser
wise turtle
#

well i made money from commissions

hardy pilot
#

In what range

latent geyser
#

its like roblox in roblox

bleak glade
wise turtle
#

i dont like doing comms

bleak glade
#

% 💔

hardy pilot
wise turtle
#

i like making my own game and working w ppl

latent geyser
hardy pilot
#

or I guess under that

patent cradle
#

Not allowed.

bleak glade
#

last time i worked for % i got 25% for making the whole game, and the investor got 30%

hardy pilot
bleak glade
hardy pilot
latent geyser
bleak glade
latent geyser
#

oops

#

mb mb

hardy pilot
#

What is this about

latent geyser
bleak glade
latent geyser
hardy pilot
#

Oh right the avatars

bleak glade
#

messaginservice

hardy pilot
#

Well if it's the same place I don't understand where the issue

#

and otherwise I'd probably send it as a starter option or save it into a data store on edit

#

By starter option I mean that thing where you can bind data to a player when sending them to a different place

#

I forgot what it's called

bleak glade
#

you can bind data to a player?

#

without a datastore

latent geyser
#

playerstore?

hardy pilot
bleak glade
wise turtle
hardy pilot
#

I think the method for it is like GetJoinData

wise turtle
#

🫶

latent geyser
hardy pilot
hardy pilot
#

when teleporting places

latent geyser
#

teleportservice?

#

im just saying

bleak glade
#

ngl im procrastinating coding

#

i do NOT want to code with c++ oop

hardy pilot
#

TeleportService allows you to set it but you get it directly from the player if I recall correctly

topaz iron
#

@lone haven 🏳️‍🌈

hardy pilot
#

What did squareboxhead do 💔

swift lynx
#

Hi

latent geyser
#

i saw this

bleak glade
#

do you guys use strict or nah

latent geyser
bleak glade
#

you type --!strict at the top of a script

serene lark
#

is it possible to change the assembly linear velocity property of a humanoid root part
i've been trying to change it but it just stays at 0,0,0

latent geyser
shrewd goblet
latent geyser
#

oh

bleak glade
latent geyser
#

its luau

bleak glade
#

i use it for some modules but idk if its good for actual code

latent geyser
#

10 hours

#

finally

bleak glade
#

type setData = {
value: number,
name: string}

local config: setData = {
value = 5,
name = "hi"
}

shrewd goblet
bleak glade
#

soemthing liek that

latent geyser
bleak glade
#

if you had strict and put value as "5" it wouldnt work

serene lark
#

i can set it for every other part

shrewd goblet
latent geyser
shrewd goblet
latent geyser
#

script

#

im in day 2

shrewd goblet
#

what exactly

latent geyser
#

lua

shrewd goblet
#

like moving part's, events stuff like that

latent geyser
#

uhh yes

shrewd goblet
#

nvm

lean ocean
# latent geyser uhh yes

let me give u 2 tips

use task.wait() not wait()
use for i, v in arr do instead of

for i, v in pairs(arr) do

#

👍

bleak glade
shrewd goblet
bleak glade
latent geyser
latent geyser
#

i'll do that

shrewd goblet
bleak glade
latent geyser
shrewd goblet
#

i was thinking about people scaming

bleak glade
shrewd goblet
#

not aobut actull code :/

latent geyser
shrewd goblet
#

i was so confused

latent geyser
bleak glade
#

nah its good to learn

latent geyser
#

yeahhh

shrewd goblet
ornate needle
#

Is there any good scripter here in horror games

bleak glade
#

anyone use frameworks?

#

i was using global types for a while but its kinda trash imo

shrewd goblet
#

no 😭

#

:/

shrewd goblet
bleak glade
shrewd goblet
ornate needle
#

Anyone here experienced with horror type games?

lean ocean
bleak glade
#

i made inventory systems starting out, then guns, and idk from there

#

trading is kinda good to make

#

api like physics

shrewd goblet
bleak glade
shrewd goblet
shrewd goblet
shrewd goblet
bleak glade
#

ill show some if i can find it from like 2022

somber vault
#

proximity prompt 💀 😭

#

i hate it 💀 😭

bleak glade
shrewd goblet
somber vault
shrewd goblet
bleak glade
shrewd goblet
shrewd goblet
shrewd goblet
bleak glade
#

theres no reason for that many elseifs

#

it gets worse

shrewd goblet
bleak glade
shrewd goblet
shrewd goblet
bleak glade
#

there were 2 more like that

#

it would have been better to pass in variables as they do the same thing with different valeus

shrewd goblet
#

Iv been gone way too long

#

it took me 10 min to write this 💀

#

wait nwrong ss

bleak glade
#

youll get better

#

i mean look at my old code

lean ocean
shrewd goblet
#

it wont let me ss something else

#

it stuck on this :/

shrewd goblet
bleak glade
shrewd goblet
#

O

latent geyser
#

are u okay bro

bleak glade
#

i did the asme thing on the client lol

shrewd goblet
latent geyser
#

"BrawlDev"

bleak glade
latent geyser
#

he has beginner and advanced scripting tutorials

bleak glade
#

i like suphis videos too but hes kinda more advanced

latent geyser
swift lynx
#

wsp yall

latent geyser
swift lynx
#

eh alr just lookin for a scripter

latent geyser
#

nice but im beginner bro

#

sorry

swift lynx
#

i might just learn

#

atp

nova yarrow
#

feedback? ```lua
export type math = {
add: (...number) -> number;
subtract: (x: number, y: number) -> number;
divide: (x: number, y: number) -> number;
multiply: (...number) -> number;
pow: (number: number, pwr: number) -> number;
round: (number: number, decimalPlaces: number) -> number;
abs: (x: number) -> number;
huge: number;
random: (m: number, n: number, decimalPlaces: number) -> number;
}

local math: math = {
add = function(...)
local value = 0
for _,number in {...} do
value += number
end
return value
end,
subtract = function(x, y)
return x - y
end;
divide = function(x, y)
return x / y
end;
multiply = function(...)
local value = 0
for _,number in {...} do
value *= number
end
return value
end;
pow = function(number, pwr)
return number ^ pwr
end;
round = function(number, decimalPlaces)
decimalPlaces = decimalPlaces or 0
if number > 0 then
local multiplier = 10 ^ decimalPlaces
return (number * multiplier + .5) // 1 / multiplier
end
end;
abs = function(x)
if x < 0 then
return -x else return x
end
end,
huge = 1/0;
random = function(m, n, decimalPlaces)
decimalPlaces = decimalPlaces or 0
assert(m, "no minimum value found")
assert(typeof(m)=="number", "max must be a number")
assert(n, "no max value found")
assert(typeof(n), "n must be a number")
if m >= n then
print("no interval found")
else
local randomNumber = (os.clock() * 13 * 31) % (n - m) + m
local decimalMult = 10 ^ decimalPlaces
local roundedNumber = (randomNumber * decimalMult + .5) // 1 / decimalMult
return roundedNumber
end
end;
}

print(math.random(1, 2))

latent gust
latent geyser
nova yarrow
latent gust
bleak glade
shrewd goblet
shrewd goblet
shrewd goblet
bleak glade
#

it doesnt usually have the best code for something and you will tend to rely on it than actually learn

shrewd goblet
latent geyser
#

so

#

i got 0

bleak glade
shrewd goblet
shrewd goblet
humble sequoia
shrewd goblet
bleak glade
#

Value: number is a type annotation

humble sequoia
bleak glade
shrewd goblet
#

k thx

loud zenith
loud zenith
loud zenith
shrewd goblet
nova yarrow
shrewd goblet
#

he dosent teach me how to make the stuff i want

#

i wanted to mkae a invotory and i dont even know where to start

loud zenith
# shrewd goblet um iv wathed basic tutorials like brawldevs but i cant realy apply it beacuse i ...

the best way is to be in the environment where you're watching someone code, think of how people learn languages from different countries the best. its from living in that country and picking up on it, same for everything in life. If you want to learn how to code at a rapid pace, then watch videos of people programming or join calls and watch, they dont even have to really be explaining it for you to start to pick up on it, eventually it'll just click, also give yourself very simple tasks to do, you could start off by spawning parts and changing their values through code, then move on to roblox services, then learning about server vs client and whats the difference, or learning about modules

#

you can even use chatgpt to give u a detailed plan layout of what to learn in order and then work on that until u have a deep understanding in that one section and then move on to the next

shrewd goblet
#

oo nvm idk what a module is

#

but i can do most of that

nova yarrow
#

Yea u can learn off chatgpt

#

Reliable from my experience

shrewd goblet
#

i use chat gpt then i searhc up wanser then they diffrent 😭

loud zenith
shrewd goblet
shrewd goblet
#

if it those ik those

loud zenith
# shrewd goblet yea im i tiny but confused on remove events and even connections but i can do th...

remote events are use for communicating between server to client and vice versa, for example you know that if u spawn a part on the client it wont be seen by any other player or by the server, only that specific player that spwned it will see it? but if u fire a remote event to the server from the client to spawn that part, then everyone will see it, and u can also do the same from server to client.

loud zenith
shrewd goblet
#

because when i try to make somehting to apply them

#

idk how to start

#

and when i search tutoriasl it just gives awnser

bleak glade
#

its from 2022 i was ass back then

loud zenith
loud zenith
#

like u could ask chatgpt to give u a list of tasks to do for learning remote events

shrewd goblet
#

thx

loud zenith
#

ofc

shrewd goblet
#

O i see instead of jsut telling me how to do smth

#

iv jsut been tellign it to add smth

loud zenith
#

yea u should learn how to do it urself first before asking chatgpt

shrewd goblet
#

k

#

thx imma go try that

loud zenith
#

np and gl

shell imp
#

How can i better understand datastores is there a video?

signal pewter
#

can someone help me its supposed to only work for people with those ids but it works for everyone

local ownsGamepass = true
local haloGui = script.Parent:WaitForChild("HaloGui")
local haloFrame = haloGui.MainFrame.ScrollingFrame:WaitForChild("Halo2")
local equip = haloFrame:WaitForChild("Equip")
local unequip = haloFrame:WaitForChild("Unequip")
local equipped = haloFrame:WaitForChild("Equipped")
local unequipped = haloFrame:WaitForChild("Unequipped")

if ownsGamepass == true then
    equip.Visible = true
    unequip.Visible = true
end

if ownsGamepass == false then
    equip.Visible = false
    unequip.Visible = false
end

if player.UserId == {game.CreatorId, 5205628620, 2453484968, 7576222758, 2559114835, 298414323, 878356451} then
    ownsGamepass = true
else
    ownsGamepass = false
end
latent geyser
#

YESS

#

I DID MY FIRST CODE

#

YIPPEE

latent geyser
# latent geyser I DID MY FIRST CODE
local Players = game.Players

game.Players.PlayerAdded:Connect(function(plr)
    local lead = Instance.new("IntValue",plr)
    lead.Name = "leaderstats"
    local cash = Instance.new("NumberValue",lead)
    cash.Name = "SwordCash"
end)

local function clickandgetmoney()
    game.Workspace.temple.holypart.ClickDetector.MouseClick:Connect(function(plr)
        plr.leaderstats.SwordCash.Value += 10
    end)
end

clickandgetmoney()

its

woeful gate
shrewd goblet
#

in 2 hours its mid night 💀

#

3*

woeful gate
#

where did all the code helpers go

shrewd goblet
#

check code help they amdm active

woeful gate
#

oh this isn’t code help

shrewd goblet
#

nvm i got it

latent gust
latent geyser
bleak glade
signal pewter
surreal flower
#

Is anyone here knowledgeable in cyber security?

latent gust
signal pewter
# bleak glade the run the check that equips it first before checking the ids to change the sta...

is this good?

local ownsGamepass = true
local haloGui = script.Parent:WaitForChild("HaloGui")
local haloFrame = haloGui.MainFrame.ScrollingFrame:WaitForChild("Halo2")
local equip = haloFrame:WaitForChild("Equip")
local unequip = haloFrame:WaitForChild("Unequip")
local equipped = haloFrame:WaitForChild("Equipped")
local unequipped = haloFrame:WaitForChild("Unequipped")

if player.UserId == {game.CreatorId, 5205628620, 2453484968, 7576222758, 2559114835, 298414323, 878356451} then
    ownsGamepass = true
else
    ownsGamepass = false
end

if ownsGamepass == true then
    equip.Visible = true
    unequip.Visible = true
end

if ownsGamepass == false then
    equip.Visible = false
    unequip.Visible = false
end
surreal flower
#

There's no way to check

#

As it's a document

latent gust
#

Is a Roblox file?

surreal flower
#

It's a Google doc

latent gust
#

Did you open it

surreal flower
#

I opened it and it has a download file

#

I want to check if the file is bad or not

#

I already put the link in virus total though

latent gust
#

Try virustotal

#

Save the file as

surreal flower
#

Okay

latent gust
#

Just don’t execute it locally

surreal flower
#

Alright perfect

keen spear
# signal pewter ??

i was thinking because since its true, then the script cant check if its false and not give it to the player

#

i apologize if i am wrong, im new to coding

bleak glade
latent geyser
#

But tomorrow

#

I cant sleep im ill cryingdead

wicked palm
#

does anyone know how to make a gui loading screen with animation that has already been made?

jaunty dome
#

hey guys i need help with my script it is for an obby as i am just learning however, i am doing a "KillScript" but instead of it killing you it teleports you back to the checkpoint. my issue im having is it also gives you a + 1 to your Fails stat so it tracks how many times you failed. but it is adding up to 3 to your fails for some reason

timber swift
#

Probably just a logic error

jaunty dome
#

yea how do i send in script form on here?

#

local KillPartsFolder = game.Workspace.KillParts
local CheckpointsFolder = game.Workspace.Checkpoints

for _, KillPart in pairs(KillPartsFolder:GetChildren()) do
KillPart.Color = Color3.fromRGB(255, 0, 0)
KillPart.Material = "Neon"

KillPart.Touched:Connect(function(char)
    local humanoid = char.Parent:FindFirstChild("Humanoid")
    local player = game:GetService("Players"):GetPlayerFromCharacter(char.Parent)
    local currentstage = player.leaderstats.Stage.Value
    local where = CheckpointsFolder:FindFirstChild(currentstage)
    
        if humanoid then    
            char.Parent.PrimaryPart.CFrame = CFrame.new(where.Position.X, where.Position.Y + 7, where.Position.Z)
            player.leaderstats.Fails.Value = player.leaderstats.Fails.Value + 1
        end
end)

end

#

4th to last line is where it adds a + 1 to your fails but it is adding like 3

timber swift
#

It’s bc the touched event is getting activated too much

#

Add a debounce

jaunty dome
#

forsuure i haven't learned that yet im gonna look into that, thank you!

timber swift
jaunty dome
#

thank you it worked. lol

winter glacier
#

Can someone send me tut on roblox lua scripting

jaunty herald
#

smooth

timber swift
timber swift
jaunty herald
# winter glacier Can someone send me tut on roblox lua scripting

Beginner's Roblox Scripting Tutorial #1 - Roblox Studio Basics (Beginner to Pro 2019)

Link to Beginner's Tutorial Series:
https://www.youtube.com/playlist?list=PLhieaQmOk7nIfMZ1UmvKGPrwuwQVwAvFa

Link to download Roblox Studio:
https://www.roblox.com/create

Social Media:
https://twitter.com/realtapwater
https://instagram.com/realtapwater

New...

▶ Play video
#

i tried learning lua when i was 12, 13, 14, 15, 16, and 17. It clicked when I tried it at 17. if it doesn't click for you right away, keep trying

somber vault
#

games built but broken

quartz wraith
strange kiln
#

hey guys, i cant return a proper vector3 of an attatchment, can i still raycast with it?

strange kiln
#

the attatchment.position

quartz wraith
#

yeah.. thats a vector3

#

am i wrong

bleak glade
#

it is

strange kiln
#

but i read somewhere that it's "read only", will it work?

#

and "not replicated"

strange kiln
#

i have no idea what that means lol

strange kiln
bleak glade
#

a protected variable

strange kiln
#

and that's okay

balmy zenith
#

nahhhhh

#

💀

strange kiln
#

?

quartz wraith
quartz wraith
balmy zenith
#

trying for 6 years crazy

balmy zenith
strange kiln
balmy zenith
#

no

strange kiln
#

ur right

strange kiln
#

thanks man

#

jesus christ

summer needle
#

@ruby hamlet

ruby hamlet
#

I am looking for a scripter, Someone afforidable . It's a anime type game based around a universal time. But gonna be not focused soley on jojo. Please reach out if interested.

ruby hamlet
strange kiln
#

ye

ruby hamlet
#

Great work

strange kiln
#

i'm actually still working on it

#

i plan to make it raycast based so that players can get like an indicarter for the thing

ruby hamlet
#

Ahh gotcha

prime hedge
#

yall know whats the name of this annoying button?

#

the trasparent one

#

obv

mystic yew
prime hedge
inland bay
#

just say the pay here

#

🔥

torpid vigil
#

ill give more info

inland bay
#

just say the pay here..

prime hedge
#

i can pay someone 400 rbx to quit this and fix a minor bug

inland bay
prime hedge
#

🙄 okay

hallow pulsar
#

sorry my caps lock was on

prime hedge
#

Just that the sprint doesnt want to work

#

everything does like the animation, button and everything but the humanoid speed doesnt change

hallow pulsar
#

i think i can fix that

prime hedge
#

lemme dm u

lost burrow
#

dont hire in chat

hallow pulsar
#

i did it

pastel slate
#

Yo, how do I delay or stop roblox health regen?

hardy pilot
deft haven
#

guys

pastel slate
pastel slate
somber vault
#

i started when i was born

#

lua is the first language i learned as a kid not my native one

gloomy kraken
viral gulch
#

Is this a good tutorial playlist to start scripting

somber vault
#

yeah ig

somber vault
#

dm me

summer aurora
#

well that was thrown out the window lmao

fluid rose
#

like basic scripting

viral gulch
#

?

#

ive just finished watching the whole thing now

#

what do you suggest for next

#

do i do the advanced tutorial playlist that the same guy made?

fluid rose
#

yeah

#

but try watching other videos

#

not just that one

viral gulch
#

Any suggestions?

fluid rose
#

uh

#

try this guy

verbal smelt
viral gulch
#

was making a game thing

verbal smelt
viral gulch
#

with studio open and doing all the code

verbal smelt
#

u cant finsh a whole series in one set bruhu

#

like copy past type shit right

viral gulch
#

no like my code wasnt always identical to the tutorial

#

cuz id try other things

#

i have a little bit of experience with python so it wasnt that bad cuz it was just basic stuff

verbal smelt
#

oh yeah if u had expeine with other lung then its makes sense now

viral gulch
#

my knowledge is really basic though

verbal smelt
#

lua isnt hard

viral gulch
#

i like did a small course on python but i literally know the basics and never did like a proper program with it

#

so it was quite nice to actually see what i was doing in 3d and not just the output box or whatever

pure furnace
#

Who needs help

slow horizon
noble vortex
#

am i cooking with this one? (real map footage)

thorn horizon
surreal oriole
#

who accepts revenue splits???

#

cant find who does in the channel

spiral jungle
#

Unless you’re backed by some sort of guarantee

surreal oriole
#

i dont also

thorn horizon
lapis heron
#

m coding a trapdoor with a hinge constraint and I want it so that whenever a player or a block that I've named touches it, the trapdoor unanchored and the player falls or the block falls but I cant for the life of me figure it out. Can someone please explain what im doing wrong or what I could be doing better

surreal oriole
verbal smelt
#

guys i got stuck i dont know what to learn now this is the last code i did im new with roblox studio

local module = {}
module.swords = {
    ["rare"] = 70,
    ["epic"] = 27,
    ["Legndary"] = 2.9,
    ["mythic"] = 0.1
}
function module.getRandomNumber()
    local totalweght = 0
    for _, weight in pairs(module.swords) do
        totalweght = totalweght + weight
    end
    local randomNumber = math.random() * totalweght
    local slectedoutcome
    for outcome, weight in pairs(module.swords) do
        randomNumber = randomNumber - weight
        if randomNumber <=0  then
            slectedoutcome = outcome
            break
        end
    end
    return slectedoutcome
end
return module
verbal smelt
viral gulch
indigo thorn
#

youll encounter many problems

#

meaning youll learn much more

somber vault
#

go from easy to hard

#

nobody expects you to make most advanced code as a beginner

verbal smelt
viral gulch
#

the advice was u checking if i actually had studio open while watching the video

somber vault
#

what is the output error

verbal smelt
somber vault
verbal smelt
viral gulch
verbal smelt
#

wdym i have it open

somber vault
#

I was searching for what is wrong in the script 💀

verbal smelt
somber vault
#

why post it then

verbal smelt
#

just showing the hardest thing i idid so i get a advice to improve myself

#

u know what i mean

somber vault
#

knowing how to use modules is a great thing for a beginner

#

You can follow the scripting roadmap in resources channel

#

really cool channel with lots of info and guides

verbal smelt
somber vault
rare bronze
#

They make atleast 50k a day dont ask cheap price!

brave egret
#

lol

#

this my game

oblique siren
#

would a parkour system such as, let's say parkour reborn without there custom movement be hard to make (pretty much like a basic parkour system)?

latent geyser
#

why database so hard for me 😭

latent geyser
#

but its so good when working

stone isle
latent geyser
#

nice

#

i finished the datastore thing on the game

#

i just need add kill and death functions

stone isle
#

ok

rare bronze
#

?

lean ocean
#

and script what exactly

manic ingot
#

um pls scripting help me made script script no work

#

pls

#

pls

#

anybody

sudden estuary
#

ask

royal ibex
sharp hare
viral lynx
#

can anyone help script smth for me. i pay in paypal

dull pine
stuck radish
thorn horizon
carmine mica
#

is it possible to tween the size of a block

bright star
#

Animations r usually better tho

carmine mica
#

😢

bright star
#

If u can use them

carmine mica
sacred lotus
#

Should i learn Ui or Animation as a Scripter

strong birch
sacred lotus
carmine mica
#

but

#

you should actually ask someone with experience

buoyant hamlet
#

does anyone know how to make the roblox weapon kit bullets dont go thru walls with cancollide off?

#

i need to make a wall that players can walk thru but players outside cant shoot players inside

sacred lotus
carmine mica
vague tulip
buoyant hamlet
#

i dont know anything of scripting and i cant find where that is located, i think its the weaponsystem script

vague tulip
#

can you attach a video or picture so that i can see?

strong birch
vague tulip
#

exactly

open sparrow
#

is anyone in here able to make me a airplane system?

buoyant hamlet
strong birch
buoyant hamlet
#

alr tyy

latent gust
open sparrow
#

and also are they free or paid?

latent gust
#

You should search the forums yourself though

open sparrow
somber vault
#

i mean if the bullets are purely projectile based and has collision checks

buoyant hamlet
somber vault
#

you can just set its collision group to something else other than your parts

#

lol then idk im cooked

latent gust
buoyant hamlet
#

its the roblox weapon kit template thing

open sparrow
latent gust
somber vault
#

oh shit you can set raycast collision groups

latent gust
#

Yeah search on the devforums for community-creations

somber vault
#

raycastParams.CollisionGroup = name

somber vault
open sparrow
somber vault
#

if it uses old rays then gg

latent gust
open sparrow
#

the game idea i have i know it will make me millions of visits that's why i put so much effort and money in it

latent gust
#

You will get 95% bullshit but the 5% will rock it

open sparrow
latent gust
#

As a client or a seller?

open sparrow
#

client

latent gust
#

I don’t recall having to do much more than filling out a form

#

To get verified as a scripter on hd you have to provide some proof in your app and be approved

#

So just don’t deal with people who don’t have the verification done and people who will do it for peanuts

open sparrow
#

where do i apply for the Hiring Channel?

#

to make a post

latent gust
open sparrow
#

so i go to marketplace and just say / post and my request?

latent gust
#

Try it

polar edge
#

this fucking random print system took me like 2 hours + chatgpt help

latent gust
#

That’s wild

polar edge
#

bro

#

its so fucking anoying

#

i kept getting those shity errors

latent gust
#

Which

polar edge
#

currentindex

#

line 23

#

literally had to had 2 to 3 videos

#

and chat gpt help

#

i didnt want to copy the script so i just asked it to explain it to me

latent gust
#

Are you new to Lua

polar edge
#

yes

latent gust
#

You’re just trying to display a message from your list when someone dies?

primal python
polar edge
#

but i suck ass with it