Please help me with camping type game

Not if his starting value is 1 and in the property table the transparency is 0, It doesn’t matter which way.

wdym by that, i want it smooth but i say its laggy… please help :disappointed_relieved:

Learn the basics of ROBLOX and then you will figure it out. You cant get anywhere by being babied the whole way.

i already know basics, and i asked for help wdym babied :sob:

sorry if i took long time to reply i was converting a vid to mp4

the left cube is tween and the right one is for loop
if u want ur transparency to be not smooth then u canot do that with tween service and need for loop to make it not smooth
the script i used

local Tween = game:GetService("TweenService")

local For = workspace.For
local Twn = workspace.twn
task.wait(3)
Tween:Create(Twn, 
	TweenInfo.new(2, Enum.EasingStyle.Sine, Enum.EasingDirection.In),
	{Transparency = 1}
):Play()

for i=0,1,0.1 do
	For.Transparency = i
	task.wait(0.2)
end



1 Like

i tried it but it keeps erroring

ok you can use tween service for that
replace

workspace.Car.Transparency = 0.9
	wait(0.1)
	workspace.Car.Transparency = 0.8
	wait(0.1)
	workspace.Car.Transparency = 0.7
	wait(0.1)
	workspace.Car.Transparency = 0.6
	wait(0.1)
	workspace.Car.Transparency = 0.5
-- etc

with

local Tween = game:GetService("TweenService")

Tween:Create(workspace.car,
	TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.In),
	{Transparency = 1}
):Play()

what tween service does is that it will smoothly change the transparency :+1:

1 Like

i sent it to show smt see the last script that i sent it should work
and i recommend you to learn loops and tween service as they are very important

1 Like

did u read the forum rules???
the forum is made to ask for help he didnot make anything wrong
you should remove ur post as if someone reported it u may get banned and am being real

1 Like

This isn’t appropriate, poly.
You should be guiding the learning developer, not shame him and bully him because of his pace of learning.

1 Like

fine

the car is most likely a model so you want to do

for i, v in pairs(workspace.Car do
      Tween:ServiceCreate(v,
      TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.In),
      {Transparency = 1}
      ):Play()
end

dont forget to declare tweenservice at the start of your code.

this will loop through the parts in your car and make them transparent. if you have parts in your car that arent parts, add if v:IsA("BasePart" then after for i, v in pairs.

take me away to banland, moderators!

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.