I'm pretty new with studio and I'm trying to make a cutscene intro. I got the camera and title done, but I came to a dead end trying to make a notifier of how to start the game (eg: Press R to start). I've tried this:
wait(4) (function()
PartR:MoveTo(Vector3.new(-139.17, 5.26, 113.79))
end)
(sorry for bad formatting the new text editor is really confusing)
Nothing happened. Is there anything I'm missing?
Nevermind I realized I made PartR a variable instead of, well, PartR
If What I am assuming is right then here goes nothing:
local v3 = Vector3.new(218, 0.5, -596) local part = workspace.BB wait(5) part.Position = v3
The variable v3
is the position of where you want the part is gonna be
and the variable part
is your part's identifier then by the use of wait()
then we can achieve this move a part after a certain amount of time
of yours following of "what's gonna happen next" after "a certain amount of time" which is line #4, part.Position=v3
. For a function then it should look like this:
function movePart() wait(5) part.Position end