1var str = 'mystring';
2
3// the character 'g' will be removed
4str = str.slice(0, -1);
1var str = "Hello";
2var newString = str.substring(0, str.length - 1); //newString = Hell
1local roblox = https://www.roblox.com
2if roblox then
3 roblox.Discover.AllGames = true
4end
5
6local function DisplayHTTPLanguage(Roblox)
7 Roblox.HTTPSLanguage:Load()
8end