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

LoadLibrary is gone! Is there an alternative or any sort of fix?

Asked by 5 years ago

I used CloneTrooper's cutscene plugin to help me make the introductions to my game, Sneak Thief 2 but with ROBLOX annoyingly removing LoadLibrary, my game is broken.

Here was the original script:

01`repeat wait () until game.Workspace.CurrentCamera ~= nil
02 
03local c = game.Workspace.CurrentCamera
04local data = LoadLibrary("RbxUtility").DecodeJSON(script.CutsceneData.Value)
05local rs = game:GetService("RunService").RenderStepped
06 
07function tweenCam(c1,f1,time,fov,roll)
08    local c0,f0,fv0,r0,frames = c.CoordinateFrame,c.Focus,c.FieldOfView,c:GetRoll(),time/0.015
09    for i = 1,frames do
10        c.CameraType = "Scriptable"
11        c.CoordinateFrame = CFrame.new(c0.p:lerp(c1.p,i/frames),f0.p:lerp(f1.p,i/frames))
12        c.FieldOfView = (fv0+(fov-fv0)*(i*(1/frames)))
13        c:SetRoll(r0+(roll-r0)*(i*(1/frames)))
14        rs:wait()
15    end
View all 43 lines...

Please help me fix it!

1
btw hope you continue the game again speedyfox66 237 — 5y
1
Don't worry, I will when i fix it iiPizzaCraver 71 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

okay since im too lazy to explain it

i got an answered question just like this Here.

just do whatever the guy who answered says

1
Thank you, I will try it tomorrow iiPizzaCraver 71 — 5y
Ad

Answer this question