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

Mini Games Scripting? [closed]

Asked by 10 years ago

Please do not repost your question after it has been closed.

Hey Guys I would like to make a** Mini Game** that has random things like Survive a Boulder Attack and Find a way out of the maze! But I need scripting help for this Mini Game help. So If anyone can help me giving some script info thanks!

Closed as Not Constructive by AmericanStripes

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?

2 answers

Log in to vote
0
Answered by
istiyak 13
10 years ago

you could do a map changer script, but i cant give you the actuall script cos im bad at scripting :( but if you try making a script i might rewrite it for you in a better way

Ad
Log in to vote
0
Answered by 10 years ago

I can only help you on cycling Minigames, :

local maps = Game.Lighting.MiniGames:GetChildren()
function MinigamesCycle()
while (true) do -- Never Ends.
for _. MiniGames in pairs(Minigames) do
local m = Minigames:Clone()
m.Parent = Game.Workspace
m:MakeJoints()
wait() -- Put How much Seconds you want the Minigame To Last also 2 min is 120 Seconds.
m:Destroy()

end
MinigamesCycle() -- calls Function

--Like I said it Will repeat until the player is nil.

Also Thank CrazyMan32

you can also use this