01 | player = game.Players.LocalPlayer |
02 | mouse = player:GetMouse() |
03 |
04 | function KeyPressed(key) |
05 | if key = = "w" then |
06 | while true do |
07 | script.Parent:TweenPosition(UDim 2. new( 1 , - 211 , 1 , - 212 ), "In" , "Linear" , 0.5 , false , nil )< --- trying to repeat this |
08 | wait( 0 ) |
09 | script.Parent:TweenPosition(UDim 2. new( 1 , - 210 , 1 , - 210 ), "In" , "Linear" , 0.5 , false , nil )< --- trying to repeat this |
10 | end |
11 | end |
12 | end |
13 |
14 | mouse.KeyDown:connect(KeyPressed) |
the arrows are pointing to the things that I'm trying to keep repeating
You're quite close, but there's two things.
1) You're wait is too short. The interpolate functions are not callbacks, meaning your script will not wait for them to be finished. There's an easy solution to that, just add in a wait with the same time your animation takes.
2) Once the key w is pressed, the animation will go on forever, even when the user releases key w. You'll have to add a check for that.
01 | player = game.Players.LocalPlayer |
02 | mouse = player:GetMouse() |
03 | wDown = false |
04 |
05 | function KeyPressed(key) |
06 | if key = = "w" then |
07 | wDown = true |
08 | while wDown do |
09 | script.Parent:TweenPosition(UDim 2. new( 1 , - 211 , 1 , - 212 ), "In" , "Linear" , 0.5 , false ) |
10 | wait( 0.5 ) |
11 | script.Parent:TweenPosition(UDim 2. new( 1 , - 210 , 1 , - 210 ), "In" , "Linear" , 0.5 , false ) |
12 | wait( 0.5 ) |
13 | end |
14 | end |
15 | end |
function generatepart(name,isAnchored,Trans) local part = Instance.new("Part") part.Name = name part.BrickColor = BrickColor.new("Really red") part.Anchored = isAnchored part.Position = Vector3.new(0,15,0) part.Size = Vector3.new(5,5,5) part.Parent = workspace part.Transparency = Trans end
generatepart("PartNumberOne",true,0) -- You have to put name,anchored, and trans all in these bractes -- generatepart("PartNumberTwo",false,0.3) generatepart("PartNumberThree",true,0.6)