"PRO" Builder Swaps Jobs With a "PRO" Scripter...

  Рет қаралды 178,080

RoBuilder

RoBuilder

Жыл бұрын

Check out my asset store! (Free Stuff to!): shoprobuilder.com/
RoBuilder Games (second Channel): / @robuildergames8563
For weekly Asset Packs check out our Patreon!: www.patreon.com/RoBuilder?fan...
RoBuilder Discord
- / discord
RoBuilder Fan Shirt
- www.roblox.com/catalog/642374...
- Thanks for watching! Discord -- / discord

Пікірлер: 330
@User_Bennymaru009
@User_Bennymaru009 Жыл бұрын
Congrats Learning Scripting RoBuilder And Also I Love Your Videos Its So Insporational And It Always Makes My Day
@_Sickk
@_Sickk Жыл бұрын
theres a new ai in roblox helps beginners btw
@toocringeforyou9665
@toocringeforyou9665 Жыл бұрын
@@_Sickk honestly I had no idea that existed and honestly I think it has the possibility to make it so you don't have to learn scripting (which is scary)
@_Sickk
@_Sickk Жыл бұрын
@Bubba Caudo no it's from roblox it self in roblox studio
@brandonbeckstead9244
@brandonbeckstead9244 Жыл бұрын
@@_Sickk how do i use it
@TheCadenChannel.e
@TheCadenChannel.e Жыл бұрын
@@_Sickk bro what is it?
@BurgerFreak
@BurgerFreak Жыл бұрын
You should make a channel with him where he teaches you how to script, that way we could also kinda learn alongside you
@cyber2194
@cyber2194 Жыл бұрын
That would be fun
@daretitan
@daretitan Жыл бұрын
yes
@BloxyBeegs
@BloxyBeegs Жыл бұрын
Yeh I agree
@realsnaontop
@realsnaontop Жыл бұрын
Agreed
@MrBleebo
@MrBleebo Жыл бұрын
yeah!
@tomsterbg8130
@tomsterbg8130 Жыл бұрын
I love how the scripter tried to help you by having his own idea and making the model work really easily when scripted with that idea, but you just do your own thing :D
@bschutle
@bschutle Жыл бұрын
For the teleporter I’m pretty sure it would be a lot better if you checked if the object that touched the part is a player and then instead of using MoveTo you could change the position of the HumanoidRootPart part inside the character, really good effort for a beginner.
@yigawaffle
@yigawaffle Жыл бұрын
The amount of confidence that the colors changing gives you is amazing
@CasualMenaceThe1
@CasualMenaceThe1 Жыл бұрын
Bro Is Truly The Greatest Scripter
@toocringeforyou9665
@toocringeforyou9665 Жыл бұрын
I like the way he scripts it's actually a unique way of thinking he actually has decent potential
@llamatube668
@llamatube668 Жыл бұрын
Hes just using tutorials online.
@definitelynotseal
@definitelynotseal Жыл бұрын
Awesome video! There is a special feeling when you code something and it's acatually works lol. Your question at the start about not quite understanding when and where to use spaces and periods is a really good question! It's important to learn the why rather than use period here, caps here etc, vs understand why you use it there. (I make a living teaching people how to code) If you ever want a free lesson for a video shoot me an email 👍
@nobkat1
@nobkat1 Жыл бұрын
i cant code for the life of me
@CubeiPont
@CubeiPont Жыл бұрын
5:21 very happy! You're better than i was when i started too
@Pancake_Bunny1
@Pancake_Bunny1 Жыл бұрын
You and gnome code really need to do a collab! It would be pretty epic but its really up to you and gnome code!
@bloxjw
@bloxjw Жыл бұрын
I commented in the sculpting video that you should make a vid where you try to script and you did! ❤
@74L
@74L Жыл бұрын
More of these types of videos, these are fun to watch!
@RoBuilder
@RoBuilder Жыл бұрын
If you have any ideas for more videos like these let me know! I would love to make this a series!
@musicdemon999
@musicdemon999 3 ай бұрын
@@RoBuilder Can u help me make a space pvp game I just started making it
@Jix_Shorts
@Jix_Shorts Жыл бұрын
Bro! I just saw you at Walmart like 15 mins ago. Love your videos!
@mr_griffolukegriffiths9166
@mr_griffolukegriffiths9166 Жыл бұрын
As a scripter who had all but given up trying to persuade you to learn scripting this brings tears of joy to my eyes! You did so good too 😊
@stuntfax9004
@stuntfax9004 Жыл бұрын
Good to see someone like you in this world mate, and no before you say, I am not a bot.
@dandewsirbello
@dandewsirbello 9 ай бұрын
@@stuntfax9004 bot
@hypersecret6288
@hypersecret6288 5 күн бұрын
​@@stuntfax9004bot 😂
@cswitt
@cswitt Жыл бұрын
Lets go! you made my idea a video!! Keep up the good work!🥳
@unixinteractive6605
@unixinteractive6605 Жыл бұрын
Am a scripter and i made a grave mistake as a noob not learning CFrame before learning anything the fact RoBuilder learned it faster and did it first is a impressive and good start!
@RomanDev17
@RomanDev17 Жыл бұрын
you should really try to learn scripting as a scripter I would love to see you script
@MiniTrahan
@MiniTrahan Жыл бұрын
Here is a replica of a lua script that I made: -- Define the two locations you want to teleport between local startLocation = Vector3.new(0, 5, 0) local endLocation = Vector3.new(10, 5, 0) -- Define the teleport function local function teleport(player) -- Move the player to the end location player.Character.HumanoidRootPart.CFrame = CFrame.new(endLocation) end -- Connect the teleport function to a trigger part local portal = script.Parent -- Assuming the script is attached to a part portal.Touched:Connect(function(other) if other:IsA("Player") then teleport(other) end end) That is just a simple one
@TylerNPTOfficial
@TylerNPTOfficial Жыл бұрын
I learned basic scripting from this video tysm this is so helpful
@LiquidMark
@LiquidMark Жыл бұрын
Dot's are needed when you want to index something, or [name: string], Instead of wait(n: number?) you can use the newest wait ( task.wait(n: number?) ) which runs 1/60 vs wait which is 1/30, Capitals and Lowercases are needed because of how the functions were made lets say we have a function here that print's Hello, World! function Hello() print('Hello, World!') end You would not be able to call the function Hello by using a lowercase h hello() -- Error's Hello() -- Prints Hello World you can also use CFrame *= CFrame.Angles(x: number, y: number, z: number) -- Numbers will be in radians, convert the number to radians with math.rad(n: number) if you have anymore questions, feel free to ask them below and I will try my best to answer them all 👍
@breezy4500
@breezy4500 Жыл бұрын
for function* stuff you don't need to call the function? I didn't know I'm used to seeing like function Hello() print("Hello World!") end Hello()
@LiquidMark
@LiquidMark Жыл бұрын
@@breezy4500 What do you mean?
@AerospaceTyler111
@AerospaceTyler111 Жыл бұрын
This was a really good video, thanks for making my day better!
@RoBuilder
@RoBuilder Жыл бұрын
I'm glad!
@Yeishin
@Yeishin Жыл бұрын
just put a hinge and set a certain setting to motor and it will spin the part attached to the hinge
@alexskorpik11play79
@alexskorpik11play79 Жыл бұрын
Tip: U cant go below wait(0.03), to do that use task.wait(0.0001) or whatever number you want!
@MysticHazard
@MysticHazard Жыл бұрын
It would be cool if you did a video where you try to make a game in another game engine such as unity
@ninjastarmc5565
@ninjastarmc5565 Жыл бұрын
Hey just a tip, Collection Service is a good way of not making a crap ton of scripts. Roblox Documentation should have info on it
@ScriptingEntity
@ScriptingEntity Жыл бұрын
so slow at typing scripts, but watching you script was kinda fun ngl
@ChristianFooWasTaken
@ChristianFooWasTaken Жыл бұрын
You can just put wait() and it will be a very small number
@purple-124
@purple-124 Жыл бұрын
idea: in the video where they do their original rolls, have an animation and camera angles set and a whole different world where they fly through the teleporter and in the middle is like this space magical world, and then fly out.
@piedoge5976
@piedoge5976 11 ай бұрын
7:25 Yes, Putting a while loop with no wait in it is LETHAL, It could even crash your game.
@QuickTakesYoutube
@QuickTakesYoutube Жыл бұрын
Like the daily videos, keep up the good work
@M4ngo7
@M4ngo7 Жыл бұрын
I started building 2 years ago and scripting 1 year ago, I used to forget to anchor everything, lol.
@berkokgt
@berkokgt Жыл бұрын
i really love this new format of videos!
@pinkmarkercat
@pinkmarkercat Жыл бұрын
Lol this video actually taught me a few things about scripting and that windmill thingy is so cool btw
@12Duckz
@12Duckz Жыл бұрын
It finally happend, good job :D
@Zeda1002
@Zeda1002 Жыл бұрын
You can fix double teleporting by creating new variable and make a if statement if variable == false and at beggining make that variable true and after teleport part wait 0.1 second and set variable to false.
@SkippsStudios
@SkippsStudios Жыл бұрын
yes so it dosent spam fire the function. basically a cooldown for debounce
@Brian-zc6hx
@Brian-zc6hx Жыл бұрын
Congrats to learing a little scripting in lua program language! I love ur vids 😀
@Brian-zc6hx
@Brian-zc6hx Жыл бұрын
If you want a better optimalized lua program to rotate that Union part use tweenservice and more wait like this > while wait(2) do game:GetService("TweenService"):Create(script.Parent, TweenInfo.new(1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), {CFrame = CFrame.fromEulerAnglesXYZ(2, 0, 0)}):Play() end
@Autistic2118
@Autistic2118 Жыл бұрын
5:54 you could do CFrame += cuz that's a smaller version
@delictivo
@delictivo Жыл бұрын
for ur first time making a portal i guess its decent, but yeah, you used a deprecated namecall "findFirstChild" its FindFirstChild, you didnt add a player table and do debounces with it and you should use CFrame instead of using Humanoid namecall "MoveTo" , instead of doing part.Parent:FindFirstChild("Humanoid") i prefer doing: local PS = game:GetService("Players") local players = {} PS.PlayerAdded:Connect(function(plr) players[plr] = false end) PS.PlayerRemoving:Connect(function(plr) players[plr] = nil -- to prevent memory leak end) portal.Touched:Connect(function(Part) if not Part:IsA("Part") then return end -- if its not a part it will not continue the function code local plr = PS:GetPlayerFromCharacter(Part.Parent) or PS:GetPlayerFromCharacter(Part.Parent.Parent) -- just incase if the part is a bodypart or an accessory if plr ~= nil and plr.Character ~= nil and players[plr] == false then -- debounce is false and player's character is not nil players[plr] = true Plr.Character.HumanoidRootPart.CFrame = exit.CFrame players[plr] = false end end)
@lambarini
@lambarini Жыл бұрын
very needed comment to a builder
@cloudsszn
@cloudsszn Жыл бұрын
ngl even though the pls spin joke u thought wasn't funny I still laughed
@XGplays
@XGplays Жыл бұрын
1:48 i use the dummy for size all the time and i am -261 on a scale of 1 to 10 in building
@Vipr1n_
@Vipr1n_ Жыл бұрын
4:30 its "while wait()" End if the script: "do"
@incoo_official
@incoo_official Жыл бұрын
Very entertaining video, Can't wait for more! ❤❤❤
@RoBuilder
@RoBuilder Жыл бұрын
Thank you so much!!
@miri893
@miri893 Жыл бұрын
i am gonna call you Robilder now and forever i really like it
@notlucarblx
@notlucarblx Жыл бұрын
to make it face out of the portal, rotate the exit part, Its pretty easy..-
@BloxyBeegs
@BloxyBeegs Жыл бұрын
Hello I want to script on roblox studio but I am so confused how did you learn how to script very well? 😅
@FireWoofyBG
@FireWoofyBG Жыл бұрын
nice you did that one guys idea
@36O4.
@36O4. 11 ай бұрын
"gacha gacha" 15:56
@rakom3800
@rakom3800 Жыл бұрын
Nice vid keep up the good work
@drone.mm2
@drone.mm2 Жыл бұрын
love your vids keep up the Good work☺
@stumbleguysforfun7438
@stumbleguysforfun7438 Жыл бұрын
I think "." Is used when you want to call a function -me(a python user)
@TommyflamRbx
@TommyflamRbx 3 ай бұрын
Rotation would be way easier than CFrame but I guess you did it
@And-So-On
@And-So-On 11 ай бұрын
Alternative title: RoBuilder feels like a God at scripting for 18 minutes
@WesleySaturnus
@WesleySaturnus Жыл бұрын
nice video and all but im here to let you know you misspelt "swapping" in your thumbnail you missed an p!
@OdxseyGD
@OdxseyGD Жыл бұрын
bro i remember when u were intelplayz, time moves so fast bro
@thebonemaster
@thebonemaster Жыл бұрын
Bro im not even a good builder but ok heres how you make the windmill spin correctly, make it spin on the z axis, and group the union and a an invisible part the the moddle, sitting upright and set the groups primary part to that part in properties. Ez
@hunkychunkyegghead
@hunkychunkyegghead Жыл бұрын
What app do you use for making bikes?
@itzmegatron_
@itzmegatron_ Жыл бұрын
its blender its not an app. its only PC
@HugeHippo
@HugeHippo Жыл бұрын
blender, it's not an app
@bean-official
@bean-official Жыл бұрын
@@itzmegatron_ not just pc mac too
@franzhaydenferrer
@franzhaydenferrer Жыл бұрын
Blender, it's an application (or an app for short) for windows , macos and linux
@Clxcks114
@Clxcks114 Жыл бұрын
A easier way to do a function is: game.Workspace.Part.Touched:Connect(function(hit) -code here end)
@Black_ShadowTBN
@Black_ShadowTBN Жыл бұрын
as a scripter good job you're a first learner
@Epicdemise
@Epicdemise Жыл бұрын
Hey rebuilder you should make a pair of pants for the jacket you made in the tutorial for it and put it on the group as well
@Rip_BaconHair.
@Rip_BaconHair. Жыл бұрын
yes pls make a game with robocrafter
@stuntfax9004
@stuntfax9004 Жыл бұрын
Suggestion: You teach him how to build and he teaches you how to code
@brittanyrivera4490
@brittanyrivera4490 Жыл бұрын
If you want to know if there a error in a script look for a red under line
@WildVandenberg
@WildVandenberg Жыл бұрын
Legendary
@dandewsirbello
@dandewsirbello 9 ай бұрын
I want to see you guys make a game. it would be legendary
@Jadenwavy
@Jadenwavy Жыл бұрын
can you make a racing game? or even better: a drifting game?
@maltisme
@maltisme Жыл бұрын
The windmill was spinning the wrong Way 🥶
@Pugg-Gaming
@Pugg-Gaming Жыл бұрын
I'm not a scripter so I have no idea if this works but he could probably just rotate it or make it -0.1 (idk so don't judge me)
@queencaliana5232
@queencaliana5232 9 ай бұрын
Did they end up doing the other video? Someone send me the link
@virus_idk
@virus_idk Жыл бұрын
You did really well as a scripter Good job
@bigcheese69420
@bigcheese69420 Жыл бұрын
No he didnt
@Joepiyeh1
@Joepiyeh1 Жыл бұрын
why do you Uniun and not group them? love your vids
@ImJamieX
@ImJamieX Жыл бұрын
could also weld all blades to center, unanchor blades and only anchor center piece to move :)
@AnglRWasTaken
@AnglRWasTaken Жыл бұрын
3:36 yes there is a better way of doing it and no I don’t know any of either
@DefyMaxing
@DefyMaxing 11 ай бұрын
i like how how half his teleport script literally does nothing the checking if humanoid does nothing and either his friend is just being nice or is clueless to
@YYCI-
@YYCI- Жыл бұрын
One of my fav vids ever
@EMMR0228
@EMMR0228 Жыл бұрын
RoBuilder = RoScripter
@Ephicxx
@Ephicxx Жыл бұрын
GREAT VID!
@b.glekat
@b.glekat Жыл бұрын
Robuilder Big fan can you pls tell me some tips for game developing in roblox
@CraftCubeYTGames
@CraftCubeYTGames 4 ай бұрын
Nice job at scripting, RoBuilder!
@dcsdtrevor4060
@dcsdtrevor4060 Жыл бұрын
You should make a game only using chatgpt so when you need to make 3d model you ask it how to
@Linusen9
@Linusen9 Жыл бұрын
Tbh you kinda look like one guy in Linus tech tips I think he’s called Jake or something
@SnowyVR_official
@SnowyVR_official 4 ай бұрын
Nice video like always lol
@blueflame2239
@blueflame2239 10 ай бұрын
It is the rise of the RoScripter
@boosterproductionss
@boosterproductionss Жыл бұрын
Yo u should fr fr make a video where he teaches u to script on roblox and you teach him how to model and build.
@phantom_ttp28
@phantom_ttp28 Жыл бұрын
I DROPED A LIKE FOR THAT VIDEO YOU PROMISSED, ILL BE WAITING...
@DESCURSUS
@DESCURSUS Жыл бұрын
Yeah
@me0w3rs
@me0w3rs Жыл бұрын
"robilder" beautiful 😭
@nightking6148
@nightking6148 Жыл бұрын
bruh i am a scripter and this made me rage a little but this is a good start to be ahonest
@CladusThePotato
@CladusThePotato Жыл бұрын
New video less go
@beznex
@beznex Жыл бұрын
This is so funnny
@bruxs6884
@bruxs6884 Жыл бұрын
As a scripter, this video makes me annoyingly mad. But great video robuilder
@HolySlap112
@HolySlap112 Жыл бұрын
why?
@blackus2k
@blackus2k Жыл бұрын
@@HolySlap112 he does alot of mistakes
@HolySlap112
@HolySlap112 Жыл бұрын
@@blackus2k oh ok
@CLE2007
@CLE2007 Жыл бұрын
Amazing vro
@qrvils
@qrvils 7 ай бұрын
''robilder'' thats what we should call u now XDDDDD
@360sauce7
@360sauce7 Жыл бұрын
7:20 For some reason, I was hoping that he would forgot about the wait(). So his system would crash lol 💀 *Joke*
@tejesveer
@tejesveer Жыл бұрын
Not me thinking it should be orientation
@1IU_zz
@1IU_zz Жыл бұрын
epic
@Aim-Hit-Win
@Aim-Hit-Win Жыл бұрын
As a developer, the way he made those scripts..........
@Blokevd
@Blokevd 11 ай бұрын
this is like mumbo jumbo and grian of roblox
@OfficialMisterEvil
@OfficialMisterEvil Жыл бұрын
If you're learning scripting, make sure to make a new channel called RoScripter after you learn scripting! ;)
@Hafd_Entertainment
@Hafd_Entertainment Жыл бұрын
i am a scripter and a builder and looking at him figuring out what to do is fun
@coralruler
@coralruler Жыл бұрын
moveto seems to be buggy sometimes when i try to use it
@ScraffyX
@ScraffyX Жыл бұрын
wait you started posting again
@rev1_10
@rev1_10 Жыл бұрын
LOL the thumbail says swaping
I Fixed a Fans Game ...Now He's Successful!
13:31
RoBuilder
Рет қаралды 288 М.
3 Hours vs. 3 Years of Blender
17:44
Isto Inc.
Рет қаралды 3,7 МЛН
Which one of them is cooler?😎 @potapova_blog
00:45
Filaretiki
Рет қаралды 10 МЛН
Пробую самое сладкое вещество во Вселенной
00:41
3 wheeler new bike fitting
00:19
Ruhul Shorts
Рет қаралды 48 МЛН
Can you fit a whole game into a QR code?
20:03
MattKC
Рет қаралды 8 МЛН
1 Minute vs 1 Hour Roblox Game
26:29
ByteBlox
Рет қаралды 118 М.
Optimizing my Game so it Runs on a Potato
19:02
Blargis
Рет қаралды 434 М.
A FAN Remade My FIRST Roblox Game...
10:58
RoBuilder
Рет қаралды 45 М.
We Built the Internet in Minecraft
25:18
Branzy
Рет қаралды 2,3 МЛН
"PRO" Builder Swaps Jobs With a "PRO" Scripter...
10:39
RoBuilder
Рет қаралды 25 М.
Scripter vs 3D Modeler Game Swap
9:43
KashTheKing
Рет қаралды 248 М.
This is Why Your Game is FAILING...
13:42
RoBuilder
Рет қаралды 23 М.
Pro Scripter vs Roblox AI... (Should you be Worried?)
16:01
RoBuilder
Рет қаралды 79 М.
Fixing FREE Roblox Games! (Do This and make ROBUX)
14:07
RoBuilder
Рет қаралды 54 М.