of     1   

RealistK
#140083631Saturday, July 12, 2014 11:31 AM GMT

So I have made a model, one guy with a dialog and a cutscene button. Now I want that button to be in the dialog, if you ask him where the well (in this case) is then he shows you the cutscene. How do I do that? The model is free to take, I would really appreciate it if you would help me out with this and you will get credits. I'm not that good with scripts. Thanks! http://www.roblox.com/Cutscene-Dialog-item?id=165962898
RealistK
#140093579Saturday, July 12, 2014 3:14 PM GMT

bump
RealistK
#140096940Saturday, July 12, 2014 4:01 PM GMT

bump
RealistK
#140100066Saturday, July 12, 2014 4:38 PM GMT

bump
iimerkingalaxy
#140101095Saturday, July 12, 2014 4:50 PM GMT

make a script and put it in the dialog then put this in it. function check(Player, Choice) if Choice.Name == "Choice1" then local target = workspace.Part local camera = workspace.CurrentCamera camera.CameraSubject = target local angle = 0 while wait() do camera.CoordinateFrame = CFrame.new(target.Position) * CFrame.Angles(0, angle, 0) * CFrame.new(0, 0, 5) angle = angle + math.rad(1) end end end script.Parent.DialogChoiceSelected:connect(check)
iimerkingalaxy
#140101629Saturday, July 12, 2014 4:57 PM GMT

you can put your cut-scene in it.
RealistK
#140103553Saturday, July 12, 2014 5:21 PM GMT

Do I put this script just in the dialog or in the dialog choice you have to pick? Also, where do I put the cutscene?

    of     1