#Mesh changing to specific colors smoothly
1 messages · Page 1 of 1 (latest)
SECRET PET HATCHED! PATRIOTIC ROBOT! - Bubble Gum Simulator
Today I got super lucky and hatched the new July 4th Secret Pet!
SDMIttens Roblox Profile - https://www.roblox.com/users/285857239/profile
SDMIttens Main Group - https://www.roblox.com/My/Groups.aspx?gid=4268750
SDMIttens Bee Swarm Group - https://www.roblox.com/my/groups.aspx
CJMitt...
so basically
let me show my models
i made sure everything can switch colors
can anyone help
maybe
the model is shown at 6:40
so change the color?
nope
but the whole thing should be one color?
i want the whole thing to have red for example, but some parts are lighter or darker than the others
just like in this video
alr one sec
so they should have another color (lighter color)
yes and another with a darker
where is she hatching the pet?
minute, second
ye see how some are darker than the others
yh
is it hard to make
not if you know how to do it
the thing is, my games dont have to do anything with colors
they will use a function and a while loop
ohh
in the function, eventually they change the color everytime a bit, the transparency and the Material (Neon)
idk i didnt see any transparency changes inside the video
the transparency just a bit for the neon effect
ohh
that it's more / less
btw 1 sec
but i dont know if they did it
let me show you the models insides
alr
thats the 2 armed one
4 armed*
this is the 2 armed
btw the Handle is just the shutter shades on the face
well you would need a table for all the Part or "FindFirstChild"
huh?
to get the Childs of your Part
i would use a Table, since you dont want to make every Part another Color
@quick forge
local TweenService = game:GetService("TweenService")
local part = script.Parent -- The part you want to change color to red
local function tweenToRed()
local tweenInfo = TweenInfo.new(1, Enum.EasingStyle.Linear)
local goal = {Color = Color3.new(1,0,0)}
local tween = TweenService:Create(part, tweenInfo, goal)
tween:Play()
end
tweenToRed(part)
how to make a table?
Don't spoonfeed please.