Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

Load and End script for a holo? [closed]

Asked by 9 years ago

How do you make a script to load and end maps?

Closed as Not Constructive by BlueTaslem

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
-1
Answered by
Dr_Doge 100
9 years ago

Make a really detailed map, then paste this into a script inside the map, and hit the Play button...

-- RUN AT YOUR OWN RISK! I wrote this down rlly fast

while true do
end
--[[  

Players = game:GetService("Players")
Players.LocalPlayer.Chatted:connect(function(msg, plr)
    if msg == "Load" then
        game.Lighting.Map:Clone().Parent = game.Workspace
    end
    if msg == "UnLoad" then
        game.Workspace.Map:remove()
    end
end)

]]--

Copy and paste that Exactly, and say "Load" to load the map and "UnLoad" to Unload the map...

Ad