Skip to content

Roblox Game Map Loader with Loadstring Check: a simple Lua script designed for Roblox games that require specific map-related functionality. The script utilizes loadstring in conjunction with a map check based on the game's PlaceId. It allows users to dynamically load external Lua scripts tailored for different game maps.

Notifications You must be signed in to change notification settings

MCPETH/loadstringcheck

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

loadstringcheck

Roblox Game Map Loader with Loadstring Check: a simple Lua script designed for Roblox games that require specific map-related functionality. The script utilizes loadstring in conjunction with a map check based on the game's PlaceId. It allows users to dynamically load external Lua scripts tailored for different game maps.

Example Usage :

if game.PlaceId == #paste id here then
    loadstring(game:HttpGet("example.com"))()
elseif game.PlaceId == #paste id here then
    loadstring(game:HttpGet("example.com"))()
elseif game.PlaceId == #paste id here then
    loadstring(game:HttpGet("example.com"))()
else 
    game.Players.LocalPlayer:Kick("Games Not Supports")
end

About

Roblox Game Map Loader with Loadstring Check: a simple Lua script designed for Roblox games that require specific map-related functionality. The script utilizes loadstring in conjunction with a map check based on the game's PlaceId. It allows users to dynamically load external Lua scripts tailored for different game maps.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages