Garry's Mod Wiki

GetGlobal2Float

  number GetGlobal2Float( string index, number default = 0 )

Description

Returns a float that is shared between the server and all clients.

Arguments

1 string index
The unique index to identify the global value with.
2 number default = 0
The value to return if the global value is not set.

Returns

1 number
The global value, or the default if the global value is not set.

Example

SetGlobal2Float error example

SetGlobal2Float("Example", 3.3) print(GetGlobal2Float("Example"))
Output: 3.2999999523163