// jQuery
$(document).ready(function() {
// code
})
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# (a fork of https://gist.github.com/bytespec/862c8f370d6018c76d6122ca423c16cf) | |
# Parameter defaults | |
param( | |
[Parameter()] | |
[String]$VPN_NAME = 0 | |
[String]$SERVER = 0 | |
[String]$SPLIT = $false | |
[String[]]$ROUTES = 0 # Empty or set $SPLIT to false to disable tunneling | |
[String]$USER = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (game:IsLoaded() == false) then | |
game.Loaded:Wait() | |
end | |
local plrs = game:GetService("Players") | |
local connections = {} | |
for _,anti in pairs(plrs:GetPlayers()) do | |
if anti ~= plrs.LocalPlayer then | |
connections[anti.Name] = {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Module Module1 | |
Sub Main() | |
"There it is" | |
End Sub | |
End Module |