How do you relay movement in Viewportframes?
Asked by
6 years ago Edited 6 years ago
I don't really know much about viewportframes, however what I am trying to do is have an npc appear in a frame on the player's UI with movement. I did this using the technique shown on the devforums, however all I see is a static image that doesn't move. How would I constantly update the viewportframe to show the latest position of the npc?
Here is my code, does not portray movement:
01 | local player = game.Players.LocalPlayer |
02 | local vp = player:WaitForChild( "PlayerGui" ):WaitForChild( "CountDown" ):WaitForChild( "Members" ).Frame.ViewportFrame |
03 | local obj = workspace.TestSubject |
04 | local camera = Instance.new( "Camera" ) |
08 | vp.CurrentCamera = camera |
10 | local pos = obj.PrimaryPart.Position + obj.PrimaryPart.CFrame.LookVector* 6 |
11 | local lookAt = obj.PrimaryPart.Position |
13 | camera.CFrame = CFrame.new(pos + Vector 3. new( 0 , 1 , 0 ), lookAt) |