#General discussion
1 messages · Page 3 of 1
kings german legion
42nd black watch
(scots)
OH WAIT
I SHOULD DO A BRITISH STYLE
BIG BRAIN MOMENY
the thing is
i don't know where to get the "cosmetics" in the flag
like the uh
tin
Advanced jetpack
this jetpack using coffee and LOX to fire
u know wha what i m prod the most is the tie shadow
a test game
decided to do a bit of practice on inkscape gradients cause I just got started
Vent.
pbr textures are good
ooo that looks sick
I tried my best getting this under 1000 tris while maintaining quality
952 tris
mainly from the tires
the frame itself is 432
took the higher poly route
not much more though
that is AWESOME
very good
i love the timeless quality of the hl2 props and i think the right textures could put it with those
But the TRIANGLES
48 instructions encoded so far
Euriplex Construction Update (June 17, 2023)
javar
So this Is mine first model i ever build
Turbine
Idk if it looks good
For me kinda
Beacuse this Is my first model
ui feedback?
pretty sleek
icons look too large, but other than that, really nice
very decent for a first model, though:
- the spheres connecting the pipes look off, try removing them
- the orange at the bottom doesn't fit at all
yeah i noticed that. i couldnt find any good ones, im gonna change them at some point
actually I have a solution
without changing the icons
unless you want to change them
changing the image size?
yeah
im probably gonna change them since they arent consistent (settings is flat, while the paper plane looks more '3d')
i'll try those
are they uploaded to roblox?
no.
got these from Google's icons: https://fonts.google.com/icons
oo ty i needed those
yeah
typically if you search "icons" on the web you'll get a lot of good results
my personal go-to is Octions, GitHub's icon set
but sometimes I just make my own
i was just using font awesome lol
not the biggest fan of fontawesome but it works
script
actually i like it
also feel like you can pad the textbox a bit
yeah
i suck at ui lol i hate making it scale the same on all platforms
ok how the heck would i call TextService:FilterStringAsync() on the client
maybe you don't and have to use a removefunction instead?
pcalls return a tuple so yes
show line 3 of that script
there's your issue
the first argument of any server remote is player: Player
which is the player that the request came from
yeah
userId is unrealiable too though
because what if someone sends a request but spoofs as another user?
then what should i use?
i meant the way you're doing it
just do ```lua
function(player: Player, text: string)
...
end
yup
alright its kinda working, other than filter doesnt work in studio (wahh)
how should i make the ui scale properly
in studio
it really depends for every object
and using device
don't use scale for everything, but also don't use offset for everything
or sometimes, just use both
autoscale plugin is nice
alright
any advice on how i should fix the ui? (basically everything is scale, the only things that use offset are the send and settings things but thats because i took them from the roblox topbar)
get plus for smartscale if you have the robux
try to minimize the use of offset
its effects are more easily noticable on mobile
use UIAspectRatioConstraint on a holder frame to keep that aligned
hm
I love roblox
i was testing on xbox lol i think thats why
but damn
i cant wait to make channels and whispers a thing
(please help i dont want to do it)
and how the hell would i do chat commands
uh
im probably doing the pcall wrong but
(and yes i tested outside of studio)
why does it keep printing the chat filter error
@naive elm do you know why this is happening
Thanks i Will try to fix them
nice
Idk why but I created this for the shits & gigs
Print superiority!!!
accurate
Players.jedisalf.PlayerGui.Chat.LocalScript:116: attempt to index string with 'Color3'
what
is Color3 of the textlabel a string or something
(this worked before now its randomly erroring)
isnt it TextColor3
oh yeah
didnt notice that
but it worked before so thats weird
did the script change or something
did that, it does the same error except that instead of 'Color3' is 'TextColor3'
oh im stupid i fixed it
you're setting your variable equal to a string
instead of TextLabel = tostring... do TextLabel.Text = tostring...
yeah i saw
I wanna find the Local Players HumanoidRootPart so i can get the CFrame
but idk how to do that
game.Players.LocalPlayer.Character.HumanoidRootPart?
do what
why not bro
because the client will be loading
local player = game.Players.LocalPlayer --player
local character = player.Character or player.CharacterAdded:Wait() -- get the character
local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
simple thing
i gotta go
basically the same thing 
fr
old model (courtesy of sxecfy, one of my good ol friends) vs new model (still kinda wip but it's improvement)
looks epic
what even is it
looks sick tho
supposed to be a coolant pump
oh ok
decorations finished
usually whenever I place a part down on something like a wedge the part goes parallel to that surface of the wedge, but it stopped doing that. dunno how to fix it, anyone know how?
i have the same issue wtf
Fun fact that stack of paper model was made by roblox


my gui refuses to keep the same scale. im using scale, yet it doesnt want to work. i've tried ui aspect ratio constraint, doesnt work still
(left = HD 720, right = HD 1080 (my monitor)
please help
I'd really like to but I can't explain my process well
@gilded cedar maybe this could help you
it's a few things I do to help make solid GUI
k
i think i got it, ty
the uisize constraint gave me an idea
it stays the same size now
👍
yw
so im trying to make it so textbox will resize its y so it can fit all the text, and the scrolling frame will resize with it
i dunno if i did it right but heres what happens:
when text is in frame
scrolling frame doesnt resize
textbox doesnt resize
text fits
when text is out of frame
scrolling frame resizes
textbox doesnt resize
text doesnt fit
i've been looking at your gui and trying to use that, but it still wont work
are text boxes diff from textlabels when it comes to fitting text or something
the scrolling frame has an additional property that autosizes the content frame
and the textbox is supposed to automatically resize too?
yeah
so the text can wrap
So i tried to recreated SNL turbine my second creation (this Is still not done yet)
Thanks
I suggest changing the colors up a bit
the back is more red
the front is a little less blue
image for reference:
I know
Am doing it from the picture
But i can't change the colors for some reason
Any tips how to change it ?
use the
properties
then change the color there
if ur using unions
go to properties
use part color
Where i can find them ?
the properties tab?
Yea
made in roblox studio today out of boredom
(they get converted to decals because the surfacegui has at least 8 of them)
I'm trying to make a script that highlights the player when they're behind a wall
but i cant get it to work
is depthmode set to AlwaysOnTop
yes
ooo that looks good
try setting direction to
local minus = Camera.CFrame.Position - RootPart.Position
local direction =
(minus).Unit * math.abs(minus.Magnitude)
then you should exclude the character with raycast params
if raycastResult then
if raycastResult.Instance then
RootPart.Parent.Hightlight.Enabled = true
else
RootPart.Parent.Hightlight.Enabled = false
end
end
should work
does it work?
look cool
k
jaga jaga
lmao
chocolate factory
damn
why so many gearboxes
because i has 1 power source an i need to transfer all rotation power from1 source and there is a lot of things that need to go up/down if you mean on top of bonemeal factory its to change rotation direction so fans can work properly
im too lazy to make 2/more power sources
im dumb
also what do you think of my "anti-overflow system"?
just a regular create contraption
I can see it working a little bit
It kinda just flashes instead
Well i did some progress but its still not finished it looks more and more cooler
If you dont know what Is it Its SNL turbine recreaction
I wish i can get more footages
wtf
looking pretty good!
Thank you
I have a question do you model in roblox studio with parts or in blender ?
I do mine models in roblox studio
in studio
Almost all of my props are done in blender, most games do that
They are just generally a better quality
yeah i know, bad scripting. im just testing what the animation is gonna look like
task.wait(5)
local ReloadAnim = {
Animation = script.Animation,
Track = nil
}
local function LoadAnimationOnRig(Rig : Model, Anim : Animation) : AnimationTrack
local Humanoid = Rig:FindFirstChildOfClass("Humanoid")
if Humanoid:FindFirstChildOfClass("Animator") then
local Animator = Humanoid:FindFirstChildOfClass("Animator")
if not ReloadAnim.Track then
ReloadAnim.Track = Animator:LoadAnimation(ReloadAnim.Animation)
return ReloadAnim.Track
else
return ReloadAnim.Track
end
else
local NewAnimator = Instance.new("Animator")
NewAnimator.Parent = Humanoid
if not ReloadAnim.Track then
ReloadAnim.Track = NewAnimator:LoadAnimation(ReloadAnim.Animation)
return ReloadAnim.Track
else
return ReloadAnim.Track
end
end
end
local ReloadAnimTrack = LoadAnimationOnRig(workspace.Rig, script.Animation)
ReloadAnimTrack:GetMarkerReachedSignal("Mag Out"):Connect(function()
workspace.Rig.RiggedG17.BodyAttach.MagOut:Play()
end)
ReloadAnimTrack:GetMarkerReachedSignal("Mag In"):Connect(function()
workspace.Rig.RiggedG17.BodyAttach.MagIn:Play()
end)
ReloadAnimTrack:GetMarkerReachedSignal("Slide Pull"):Connect(function()
workspace.Rig.RiggedG17.Bolt.SlidePull:Play()
end)
ReloadAnimTrack:GetMarkerReachedSignal("Slide Release"):Connect(function()
workspace.Rig.RiggedG17.Bolt.SlideRelease:Play()
end)
ReloadAnimTrack.Looped = false
while true do
ReloadAnimTrack:Play()
ReloadAnimTrack.Ended:Wait()
task.wait(5)
end
why is task.wait(5) refusing to work?
when i press play, it doesnt wait 5 seconds
and it doesnt work in the loop either
also my sounds arent playing sometimes
:Wait() is never released on ReloadAnimTrack
doesnt :Wait() wait until the event is fired
wdym released
and i removed it, task.wait() still wont work
wireframe
What
I'm not done with everything but I can show you the ones in blender
okay then
look good
man the computer look good
let me hope in roblox studio and show the wireframes of my computers 
speaking of studio I need to work on my color pallet

I was gonna make some vent images
my life is pain
seriously why is task.wait() not working
with depth effects
blender because of performance, optimization, and easy complex models
I always do autoshade
And I always keep a simple backup of the model incase I need to change something
manual shading 🧌
I use that and edge marking
yeah my rounded corners are usually 2-3 quads
me when i waste $500 of ammo
i mightve done an oopsie
i put print(_G) in the command bar
Oh boy how i truly wonder what that does
check out this drawing i made of 4 big guys behind a woman
could just be cut down to "you smell petroleum" lol
lol
yo are we allowed to post zip folders of creations
i made a silly in html and wanna post it in #1112085977188548658
I can't find out why this isn't working and it's so annoying
int CancelPin = 2;
int AlertPin = 3;
int AttackPin = 4;
int Signal = 0;
int ChopperPin = 9;
int RotatorPin = 10;
void setup() {
Serial.begin(9600);
pinMode(CancelPin, INPUT);
pinMode(AlertPin, INPUT);
pinMode(AttackPin, INPUT);
pinMode(ChopperPin, OUTPUT);
pinMode(RotatorPin, OUTPUT);
}
void loop() {
if (analogRead(CancelPin) == HIGH) {
Signal = 0;
Serial.println("Cancel");
}
if (analogRead(AlertPin) == HIGH) {
Signal = 1;
Serial.println("Alert");
}
if (analogRead(AttackPin) == HIGH) {
Signal = 2;
Serial.println("Attack");
}
if (Signal == 0) {
analogWrite(ChopperPin, LOW);
analogWrite(RotatorPin, LOW);
}
if (Signal == 1) {
alert();
Serial.println("Signal 1");
}
}
void alert() {
analogWrite(ChopperPin, HIGH);
analogWrite(RotatorPin, HIGH);
}```
ugh my board isn't uploading code now
seems pretty good
@cursive mulch you might like this
yeah you could give it a shot
you miswrote that terribly, its@wet stag
🔫
I remember when I remade parts of BHNPS
good times
scale them up!!! most transformers with that type of build would definitely be a lot larger than 16 studs
and also the oil tanks are missing the pipelines, so theyre just kind of sitting there
Okay thank you
I was gonan ask if something was wrong
did it got denied its whateva tho
My proudest creation so far, took only 10 minutes
(I made french toast and scrambled eggs before but whatever)
tasted pretty good
though the cheese lacked stretch cause I forgot the manchego cheese
anyways for some more serious stuff
@covert stag btw isn't the thread supposed to be pinned
triangles*
how do I do floor textures like this
Like roads and sidewalks?
ye
Well
I'm taking that learning curve rn as well
But I can say that photo editors are what you need
Gimp, paint, photoshop, illustrator
You can just fins images online and tweak them to your liking
For roads, you basically just have to make a white line on a transparent background in paint or a photo editor of your choice. You should be able to color it in roblox this way
And use it as a decal
Or use parts, but that would take up a lot of lag if there will be a ton of it
complex as fuck
Another breakfast creation
All by myself
The eggs were salty and tender
The toast was pretty sweet and also soft
😋
I thought this was a stock image for a second
Roblox is a global platform that brings people together through play.
now put it on sale
:)
wrong gif
check again
:)

Purchased it solely because I can
RCR
gonna buy it when i have robux!
gorgeous
Buran spaceshuttle skin
avoid having too much ingredients falling out the sandwich
keep it clean
make use of decorations like a tooth pick (if you're presenting)
as for the much itself
i just slapped white bread, lettuce, sauce cheese, coleslaw and that's it
muffin to pass the time
blueberries.
they're blueberries.
olives are not that big
i love RTGs!!!!!!!!!!!
Wiring almost finished in the hose
silly ahh thing
idk
(none of these assets are mine, i just put them on a dummy. its kinda rigged, but it sucks so)
Its like plane made out of jelly
Ye look good
@crystal grail j shall make stop motion paper art flip flop flip book thing

Plane looks pretty good to me
The engines are throwing me off, aswell as whatever is on the back of the rocket
ew meower.
obbies are my passion (they are not)
https://cdn.discordapp.com/attachments/1050536500489617438/1121860494727335946/2023-06-23_13-52-40.mp4
not my game, the build is mine tho
isnt that scp rp
yes
epic
are you like a dev there
or is that a vip
or idk
I don't play that
no
theres a custom server feature, where you can create your own custom roleplay server
one of the main parts of it is building
but uh thanks for thinking im a dev lol
prototype stuff cuz bored
damn thats pretty sick
"prototype" BRO THATS AN AAA game

gajam lair
this was the original (still being used but not for the reactor chamber, I don't have the original image just the edited one)
so like
prototype for sure
oh and this I found it randomly so why not 💀
purge
the purge one has bigger tanks because I thought it would fit more and it's like that in the game but it looks worse
zzz
ok bored that's all
@ebon bear
nice
testing something funny
more fuel lol
also those are solid rocket boosters ahghghfh
i wish i could code like that fr
My nuclear power plant control room is nearly completed
This is my old pack that I tore apart for parts on my new one, I added some junk wire to it as if it were broken and rewired poorly
I'm gonna see if I can record the sound
Sound as if it's broken
If it were functional it would sound sorta like this
(Sound warning on thag btw)^^^^
fixing truss
crane
epic crane
Thanks
random shit i make
i think my typography is much more uhhh
the 2d equivilant of low poly
hi 👋
Damn
light
too lazy to type it out
(btw the animations of the original guns in the other game work)
I think usually theres something hidden in folders for gun systemrs
you need to copy everything
EVERYTHING
I think you should triple check.
ctrl a ctrl c?
it doesnt wokr

roblox
Animation by @fading spire , building are by me, lighting too
my computer gonna die after rendering
how the fuck it took you 3 hours smh
I have no idea
thats cool 
try doing "rbxassetid://animid"
usually you meed to do that when using asset ids
the bathroom
wait
the voice
@ebon bear Is that your voice ? 
hrmmm
i fixed it
shouldve made it out of parts and unions 
it wasn't loading on my character because a model with the same name was using it
it hard
it a mesh from kane pixel discord server
27 seconds · Clipped by bideotrai135 · Original video "The Backrooms (Found Footage)" by Kane Pixels
the sound it from
ah
shouldve claimed it all as yours and steal it all smh
what
go make an other
by yourself 
okay i'll make sure to make it be solid in the wireframe
agh
a
it's complex enough to lag my brain out
For the hell of testing i slap anything possible to make it related
Yeah old backrooms animation studio sucks
Ima return to homeworks
2 of them left
Each 8 pages
NUH UH
''Friend
finally got around to replacing these god awful chairs
it should be obvious but the new one is the one on the left
from around 5 or 7K triangles to 1,172
old one was probably more than that tbh
this will be one of the next things to remake
oh my god
Next Optimization done
base of the control room is done
thats an lamp?
@waxen vapor you can always do worse
wild* can
IM SORRY
SPEEDY HAS AN OBSESSION WITH TRIANGLES OK
you should see the coca cola bottle.
does anyone have any old aperture ambience thing?
all devs do
whenever the lag hits we kill it before it spreads
make it
ya dont gotta keep using valve assets
oh i have
oh have you seen t h e c o n e
yes that is wireframe
damn...
that image makes my phone lag wtf

what the fuck..
My brother made this lil dude
SNOM!
@verbal trail 
Roblox studio motivation:
Builds a lot of really cool shit
The next day:
Just admires it
I keep confusing IBM with ICBM
There are missiles in your computer
nice
icbm logo
I still dont have the vent decal done
VENT
Suspicious
sus!@!!
Simple shading
maybe someday
okay
I use paint.net
Never use photoshit
It too expensive
Gimp has less feature in my opinion
Gimp is the free photoshop
okay here
i turn the back into a decal
vent problem solved
@crystal grail It work

tape is uh

I dunno
what should i add to this area (lobby)
How is that lobby held up...
emm
The walls are very thin glass
uhhhh
sh
shut up
just what should i add to it
not "why is the structural integrity of this building illegal and impossible"
well then what do i use to light up the street
ok sure
you like every 3 studs you will place a lights
when there a light next to them
it make them kinda unrealistic and weird
I suggest working on getting familiar with architecture, but if you really wanted to know what to put in the lobby, just put in some chairs and tables
Brightness down a few notches and range larger
yeah
ok cool
it looks too slow
i feel like it should move faster
posting this here cause my thread doesn't get much attention
wtf happened
Some meshes I use randomly got messed up recently
Oh, try setting render fidelity to precise maybe?
It fixed my broken catwalks
Awesome
i know theres probably 0 jvm nerds here but why is this not being a good jvm 😭

I need some advice on Lighting. I know most might say, "use future" and while I do agree that future is great, I dont want to use that specifically yet.
shadows map
voxel
and uh
compatibility
yeah
I use comp to see better when building
Wel for me Shadow map is best for like outdoor showcase game while future is best for interior showcase
The most example one is shadow map lighting on a terrain grass
damn
i still use compability in some of my games
why does it do this
dont use shadowmap if the environment is darker or generally doesnt have heavy shadow use, use voxel
idk
"Someone thought it was a good idea to make an emancipation grill that emancipates.. humans.."
Virgil cave johnson flashbacks
Power Lazer control desk
?
augh
looks good 
Stair
those better be decals on the sides of the stair
whats a decal 

its basically just an image
what theyre saying is, its better to have a texture on the side of the stairs than have physical blocks on the side
better performance
A fucking Airport based on an Airport thats not even an Airport.
Huh
No plane
||satire||
yea i realized that
Due to the Land Manager having motivational issues, we have decided to set Euriplex on “sleep mode”.
cc @ebon bear
Check out Basement Level.. It’s one of the millions of unique, user-generated 3D experiences created on Roblox. A small showcase game.
Basement Level that connecting between Helius Cavern and Olius Cavern.
it done
@brazen crag
because is it
this level is canon, if like 20+ kids will be playing that game at once
what does that mean
i searched a little and it says someone who played ur game and got banned
oh k
does your game use datastores or any sort of database
to comply with privacy laws, users are able to request their data be deleted. not following this can get you banned and your game deleted so roblox doesn't face any privacy lawsuits
basically the message says delete that user's data immediately
i dont think so
is there a way to delete if there is any database*
?
@naive elm
i dont want my account to be banned since there is a lot of stuff in my acc
eh fuck it i will just delete the game
it was old anyway
nvm i cant find a way to delete it
@naive elm
there is
literally links in that message
that should teach you how to remove a person from your database
ah ok
as long as i know there werent any thing that would have an database
just building
well yeah in that case you dont have to take any action
as you have nothing saved of them
so theres nothing to wipe
:hmm:
sorry I was at work
its fine
I store player data outside roblox

Car
just a reminder:
modulescripts are your best friend, use them
Everything is
server-side script are not
unless rblx fucks up
not sure why modulescript can be copied
even if their parent is a script?
yeah
huh
if they are in serverscriptservice then they’d be fine
what about serverstorage
How
Oh wait
It is
serverstorage gasp
Knitted myself a hat for the first time
epic 
think it oculd be better but pretty good for first time
Very cute
All our food KEEP BLOWING UP
(real)
america
that goes so hard
Cough for free
im 17 now :)
enjoy this anim
hapi birthday!!!!
swagr......
mom spaghetti
new card style page I'm making for myself
yknow it'd be sick if you converted this into like a betterdiscord theme
i like that design
it's... discords default theme
i mean like the whole gradient thing
and is that light mo-
and also the connections looks a lot different on discord compared to yours
because mine is 800 pixels wide compared to discord
yay (tbh you should've had the pipe hit him)
A heavy prototype of power consisting of turning dark matter into electricity powering Connecticut and surrounding states was held underground in the sleepy town of Madison, CT. This machine was called the DMR, approved and represented by countries everywhere as a "breaking point invention" ran for years to come, and was held at the Quantum Scie...
i messed around with a lot of things
to get this result
better then i expected 
This is really good!
One thing I would've changed though, is the rumbling sounds
https://youtube.com/shorts/CA_lXCX53i0?feature=share
Something like this but more violent would've worked better
This is how an explosion sent shockwaves throughout a tunnel as seen in a video shared by Italian miner Gaetano Curcio.
Subscribe: http://trt.world/subscribe
Livestream: http://trt.world/ytlive
Facebook: http://trt.world/facebook
Twitter: http://trt.world/twitter
Instagram: http://trt.world/instagram
Visit our website: http://trt.world
i reduced the sounds due to the distance of the actual house and the mrc
again this was recorded like 5 miles away from the mrc
i woudnt think the mrc would be that big
everything in this video is great but the logo doesn't really fit to the lore
School asked me to create an infomercial? No problem!
the logo was there since it was put in an archive of the entire event on cbs but it was later transferred over to quantum science
hence why theres "quantum arch. dept." on the top right standing for quantum archive depeartment
in 1985 the logo was this
yeah but also in 1985 the entire facility died with the new logo also being included around the mrc literally everywhere the lore really doenst match, in general qserf is a very time wacky subject
AND i coudnt find the old logo anyway
the transparent one
all of this was a test anyway
alr
true
cough machine
Hello Developers! As previously communicated, the Default PhysicsSteppingMethod of WorkSpace has now been updated to utilize Adaptive Timestepping. This is a significant shift, and we’ve done our utmost to ensure that this change is as seamless as possible. Adaptive Timestepping is designed to offer greater flexibility and efficiency in your s...
i'm considering updating my personal branding for a few reasons:
- it's just slightly ugly
- I'm going from
wwisetowwise.devto not confuse with Audiokinetic's Wwise
if anyone has ideas
👍
The Madison Research Center is massive. the game itself is big but there is still so much we dont see
Your point still makes sense, as the dmr sits roughly around 500 m under the surface
20 miles tho
What do you guys think about the these logos for my game?
(note: Saps-2 is the shortened name for Stratton Atomic Power Station, unit 2)
last one looks eh, ok. feels way too 'i got bored and just want to get this with'
too simplified basically
i mean unless it was intentional
alr
first one has inconsistent styling and shit readability
this mask ruins it
if it wasn't there it wouldn't have taken me 6 seconds to realise it said NFE
other ones are good though
also what kavn said







