In my script, it says that load library is deprecated.
1 | function CreateWarning(Player) |
2 | local RbxGui = assert (LoadLibrary( "RbxGui" )) |
3 | local Screen = Instance.new( "ScreenGui" ) |
4 | Screen.Name = "NotInGroupGui" |
5 | local Gui = RbxGui.CreateStyledMessageDialog( |
6 | "You are not in the group that this plane belongs to!" , |
7 | Player.Name.. ", you are not a member of the group! Please exit the plane!" , |
8 | "Confirm" , |
It would be really nice if someone could fix this. Thank you for your time.
LoadLibrary is depreciated for whatever reason I do not know. Ask ROBLOX. However, these libraries are open source. You can find them at: This Github.
Note: when something is depreciated, things by ROBLOX no longer consider the existence of the depreciated feature. Luckily, this is open source and makes things easier.