of     1   

cxcharlie
#183734766Tuesday, February 16, 2016 4:04 AM GMT

I want to tween all the players' cameras at once to the same CFrame. Should I use RemoteEvent for this or just use a .Changed Event on a bool value? Wouldn't the bool value be better because there is a slight delay in remoteevent and there doesn't need to be any information sent except to just tween? Another question: After I get all the clients to respond to the "fire", how do I make sure all the players cameras are on the same frame in the end? Like if I do this: for i = 1,50 do runservice.RenderStepped:wait() blahblah() end, different devices with different processors will be on different frames (especially mobile), so some people may be half way through the cutscene while some people are done. How do I fix this? TLDR: Is RemoteEvent better or bool value better for just telling clients to do a predesignated function? How to make cutscenes sync in all players with renderstepped (different processors > frameskips, etc)? Thanks http://www.roblox.com/a-item?id=212802893local D = Instance.new('RocketPropulsion',me) D.Target = OP D:Fire()
Contrary
#183735010Tuesday, February 16, 2016 4:07 AM GMT

Use a RemoteEvent since you are doing Server to Client communication. As for checking when all Clients are done, have the Client send back something once it is finished tweening. Once the received amount equals the amount sent, then you'll know everyone is complete.
cxcharlie
#183735331Tuesday, February 16, 2016 4:12 AM GMT

@Contrary, are you sure because I just need the "fire" I don't need the arguments returned by the remoteevent. Also, I for the RenderStepped: I meant like how would I make the players on the same frame during a cutscene. But I think I got it: local t1 = tick() while tick()-t1 < 5 do runservice.RenderStepped:wait() tween((tick()-t1)/5) -- the alpha progress end http://www.roblox.com/a-item?id=212802893local D = Instance.new('RocketPropulsion',me) D.Target = OP D:Fire()
Hedr0n
#183735773Tuesday, February 16, 2016 4:18 AM GMT

Any frame difference would be extremely minor, and ages for mobile. Is there a SERIOUS reason why you need them synced?
cxcharlie
#183736331Tuesday, February 16, 2016 4:26 AM GMT

Oh no, frame differences are huge sometimes. In mobile they're huge, at least on the two android phones I tested my game on. There was a huge loop I was doing like more than 2000 iterations for a gui animation The phone took like 40 seconds to process it, but animation was still smooth but like 2x slower Computer took like 15-20 seconds http://www.roblox.com/a-item?id=212802893local D = Instance.new('RocketPropulsion',me) D.Target = OP D:Fire()
Wrathsong
#183736403Tuesday, February 16, 2016 4:27 AM GMT

FireAllClients
cxcharlie
#183736645Tuesday, February 16, 2016 4:31 AM GMT

Okay yeah I'll use remoteevent/fireallcleints then, but what about the RenderStepped frame delays? http://www.roblox.com/a-item?id=212802893local D = Instance.new('RocketPropulsion',me) D.Target = OP D:Fire()
cxcharlie
#183737803Tuesday, February 16, 2016 4:51 AM GMT

ity bumpity bppbump http://www.roblox.com/a-item?id=212802893local D = Instance.new('RocketPropulsion',me) D.Target = OP D:Fire()
cxcharlie
#183740093Tuesday, February 16, 2016 5:36 AM GMT

omg that was my 1337th post gg http://www.roblox.com/a-item?id=212802893local D = Instance.new('RocketPropulsion',me) D.Target = OP D:Fire()
cxcharlie
#183790339Wednesday, February 17, 2016 12:53 AM GMT

bumphbgk g http://www.roblox.com/a-item?id=212802893local D = Instance.new('RocketPropulsion',me) D.Target = OP D:Fire()

    of     1