When I execute the MouseButton1Click the som plays, but nothing is tweening…
(No errors on output)
local title = script.Parent.Parent.Parent.MainMenu.GameTitle local play = script.Parent.Parent.Parent.MainMenu.Play local credits = script.Parent.Parent.Parent.MainMenu.Credits local donate = script.Parent.Parent.Parent.MainMenu.Donate local background = script.Parent.Parent.Parent.MainMenu local som = script.Parent.Parent.Parent.Click ------- local TweenService = game:GetService('TweenService') ---Main Script script.Parent.MouseButton1Click:Connect(function() som:Play() script.Parent.Parent.Visible = false background.Visible = true wait(2) TweenService:Create( background, TweenInfo.new(2), {ImageTransparency = 0.15} ) wait(1) TweenService:Create( title, TweenInfo.new(2), {ImageTransparency = 0} )
