of     1   

XxCoOrdinatorxX
#228426750Monday, December 04, 2017 3:22 PM GMT

I got a script and this is the end of it basically i made the tween thing and this makes it play tween:Play() i want to put it in a mouse click thing so something like a button1down like local Player = game.Players.LocalPlayer local Mouse = Player:GetMouse() mouse.Button1Down:Connect() so how do i make the tweeen thing only happen on the event of a mouse click
XxCoOrdinatorxX
#228427027Monday, December 04, 2017 3:36 PM GMT

i got it working but h
Latine_Lemonade
#228428492Monday, December 04, 2017 4:43 PM GMT

-- LocalScript on StarterPack: local Player = game:GetService('Players').LocalPlayer local Mouse = Player:GetMouse() function Tweened() local p = Instance.new('Part', workspace) p.Size = Vector3.new(3, 3, 3) p.TopSurface, p.BottomSurface = Enum.SurfaceType.Smooth, Enum.SurfaceType.Smooth p.Anchored = true p.Position = Vector3.new(0, 5, 0) p.Transparency = 1 local goal = {} goal.Size = Vector3.new(7, 7, 7) goal.Transparency = 0 local Tweening = game:GetService('TweenService') local ###### # ################ local Tween = Tweening:Create(p, TweenI, goal) Tween:Play() end Mouse.Button1Down:Connect(Tweened)
Latine_Lemonade
#228428539Monday, December 04, 2017 4:45 PM GMT

It is a LocalScript on StarterPack local Player = game:GetService('Players').LocalPlayer local Mouse = Player:GetMouse() function Tweened() local p = Instance.new('Part', workspace) p.Size = Vector3.new(3, 3, 3) p.TopSurface, p.BottomSurface = Enum.SurfaceType.Smooth, Enum.SurfaceType.Smooth p.Anchored = true p.Position = Vector3.new(0, 5, 0) p.Transparency = 1 local goal = {} goal.Size = Vector3.new(7, 7, 7) goal.Transparency = 0 local Tweening = game:GetService('TweenService') local ###### # ################ local Tween = Tweening:Create(p, TweenI, goal) Tween:Play() end Mouse.Button1Down:Connect(Tweened)
XxCoOrdinatorxX
#228428560Monday, December 04, 2017 4:46 PM GMT

latine how can i make something hold it like i got a mouse.Button1Down:Connect() so how can i make it so it allows me to hold it down

    of     1