i didnt know you made advanced series anyways heres a tip btw if your output is loading too much right click your script and find disable script you can always renable it
TweenService is considered a beginner part of Roblox programming, and I know how to use it completely. Also, may I pls know how many episodes will this advanced series include? And will you explain much more advanced parts of Roblox programming that no one has ever explained on youtube? Or will you just explain the parts that is already explained by others on Yotube?
There will be 14 parts just like the beginner scripting series, and topics will range from services (TweenService, Messaging Service) to CFrames and Data Saving (Maybe module scripts as well) :) I know that there may be a lot of you who have learned these topics on other UA-cam videos, but many of these topics have come from requests, and because people have been asking so long I've decided to incorporate some of the most requested topics into the series (as well as other topics I find important). I hope you can still learn something from them though! :D
@@CodeBro29 I hope so! Many people explain ModuleScripts in complicated ways, but I now count on you for making me completely understand ModuleScripts:) I'll be waiting! Also, if possible, please make an expert series in 2024 including a more and more advanced parts of Roblox programming:)
I found the solution for you. Imagine a Part named "ChangeColorPart" with children "ClickDetector" and "Script." Here's the example lua code I made for you: script.Parent.ClickDetector.MouseHoverEnter:Connect(function() script.Parent.BrickColor = BrickColor.Random() end) Every time your mouse hovers over the ChangeColorPart, it will change its color into a random color. The thing you were looking for was "MouseHoverEnter" or "MouseHoverLeave". At least I think so.
my code is not working for some reason can you help me? local brick = script.Parent local ts = game:GetService("TweenService") script.Parent.Touched:Connect(function(hit) local ti = TweenInfo.new( 2, Enum.EasingStyle.Elastic, Enum.EasingDirection.Out, 0, 0, false, .2 )
I watched the begginers and this one and it helped me understand a lot and refreshed my brain. I can't wait for more tutorials like this!!
Bro without you i could've never learned coding Thank you bro and keep the great work Up!
Tysm could you also include ray casting in this series? Your the only UA-camr I found who makes tutorials easy to understand ❤
he's already done a video about ray casting.
Bro your the most underrated rated coding UA-camr ever
Im gonna be honest your videos are the best and the most useful coding vids i've seen , thank you and please keep uploading!
Thank you bro tween service is going to so much easier now no more tutorials =]
I love your vids!!!
you made me into the coder I am
without you, Project: Blade would have never existed.
wait
.......... omg
i didnt know you made advanced series anyways
heres a tip btw if your output is loading too much right click your script and find disable script you can always renable it
Thank you!!! I'm gonna go put a bunch of moving parts into my game now to practice :D
I love dingle berries ima make a game about it
i know i cant watch these rn as im still watching the basics but i promise i will soon.
i have a tip guys. you can make the repeatcount to -1 and it will tween infinitely.
Thanks!
YES ITS THE TWEEN SERVICE BIG W!!!!!!
I really like your scripting series. Is it possible to do a video about CFrames?
You should make as the next one Udim2 for gui maybe
Very helpful
Glad to hear that!
Are you gonna make a video about camera manipulating in this series?
Maybe, I think that would be good to include
Let’s gooo
W vids bro😭🐐
Legend
ANOTHER VIDEO HOW TO SCRIPT!!! YOU DESERVE 50K SUBS!
Thanks so much :)
i think u will do it best
TweenService is considered a beginner part of Roblox programming, and I know how to use it completely.
Also, may I pls know how many episodes will this advanced series include? And will you explain much more advanced parts of Roblox programming that no one has ever explained on youtube?
Or will you just explain the parts that is already explained by others on Yotube?
There will be 14 parts just like the beginner scripting series, and topics will range from services (TweenService, Messaging Service) to CFrames and Data Saving (Maybe module scripts as well) :)
I know that there may be a lot of you who have learned these topics on other UA-cam videos, but many of these topics have come from requests, and because people have been asking so long I've decided to incorporate some of the most requested topics into the series (as well as other topics I find important). I hope you can still learn something from them though! :D
@@CodeBro29
I hope so!
Many people explain ModuleScripts in complicated ways, but I now count on you for making me completely understand ModuleScripts:)
I'll be waiting!
Also, if possible, please make an expert series in 2024 including a more and more advanced parts of Roblox programming:)
An expert series would be dopeee
@@ReallyPieThings
okey
heres an expert lesson thats the hardest thing you will ever learn..
local letter = "e"
print(letter)@@صاحب-العقل-والمنطق
it helps a lot
can u make a video on service and what they are pls
Can You Please Make A Tutorial On How To Make A HideUi Button Please?
how do you make the background and code colors be like that???
it would help alot!!!
thx u are the best
can you make 2 on DataStoreService and also Mouse Raycasting?
can u make UIS next
He already made a tutorial on it a few days ago bro.
Check episode 2 of the series!
Episode 1*
Will there be a debounce tutorial? and also please tell me how to trigger something when you look at a part, I really want to know how
I cant find tutorials on the second thing I said but I see its being used in horror games to trigger jumpscares like apeirophobia's phantom smiler
or doors eyes
I found the solution for you. Imagine a Part named "ChangeColorPart" with children "ClickDetector" and "Script."
Here's the example lua code I made for you:
script.Parent.ClickDetector.MouseHoverEnter:Connect(function()
script.Parent.BrickColor = BrickColor.Random()
end)
Every time your mouse hovers over the ChangeColorPart, it will change its color into a random color. The thing you were looking for was "MouseHoverEnter" or "MouseHoverLeave". At least I think so.
Could you do something on animations please.
Hey I'm making a group project but when we bring stuff in we cant see each others animations even if we publish them to the group. Any idea why?
W
How do you fade opacity? So it like slowly fades out?
can you change the speed of the movement?
TweenService
TweenService
real
can u tween rotasion as well?
hey how can I make it loop infinitely?
what is the hotkey for closing script
yooo
:D
my code is not working for some reason can you help me?
local brick = script.Parent
local ts = game:GetService("TweenService")
script.Parent.Touched:Connect(function(hit)
local ti = TweenInfo.new(
2,
Enum.EasingStyle.Elastic,
Enum.EasingDirection.Out,
0,
0,
false,
.2
)
local tween = ts:Create(script.Parent,ti,{Position = brick.Position == brick.Position + Vector3.new(0,10,0)})
tween:Play()
end)
Im a bit late lol, but it seems you forgot to put a comma before the last tweeninfo