Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do i repeat?

Asked by 10 years ago
01player=game.Players.LocalPlayer
02mouse=player:GetMouse()
03 
04function KeyPressed(key)
05    if key=="w" then
06    while true do
07    script.Parent:TweenPosition(UDim2.new(1, -211 , 1, -212), "In", "Linear", 0.5, false, nil)<--- trying to repeat this
08    wait(0)
09    script.Parent:TweenPosition(UDim2.new(1, -210 , 1, -210), "In", "Linear", 0.5, false, nil)<--- trying to repeat this
10    end
11    end
12end
13 
14mouse.KeyDown:connect(KeyPressed)

the arrows are pointing to the things that I'm trying to keep repeating

2 answers

Log in to vote
1
Answered by 10 years ago

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.

01player=game.Players.LocalPlayer
02mouse=player:GetMouse()
03wDown = false
04 
05function KeyPressed(key)
06    if key=="w" then
07    wDown = true
08    while wDown do
09        script.Parent:TweenPosition(UDim2.new(1, -211 , 1, -212), "In", "Linear", 0.5, false)
10        wait(0.5)
11        script.Parent:TweenPosition(UDim2.new(1, -210 , 1, -210), "In", "Linear", 0.5, false)
12        wait(0.5)
13    end
14    end
15end
View all 24 lines...
Ad
Log in to vote
0
Answered by 5 years ago

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)

Answer this question