Need help with a script

Hello! I need help with making my maps vanish but appear every 15 seconds… But I don’t know how to do that… Do y’all have any tips or something that can help?

1 Like

I’m not gonna spoon feed you, but some hints are
:GetDescendants()
.Transparency
wait()

This honestly should be really easy.

You could also reparent the maps into ServerStorage.

2 Likes

Thank you very much! Sorry I’m new to scripting and I’m trying to learn the basics.

2 Likes

Hmm another script request.

  1. Have a folder for all your maps with ServerStorage.
  2. Within a Script place a infinite loop (While true do)
  3. Change the parent of the map you want.
  4. Wait your desired time
  5. Change the parent back to folder.
2 Likes

There could be tutorials on the internet on how to do this, if you need help, send me a PM and I could try to help.

2 Likes

If you want it to change transparency and or cancollide, here are a few links that will get you there:

https://education.roblox.com/en-us/resources/pairs-and-ipairs-intro

https://developer.roblox.com/en-us/api-reference/property/BasePart/Transparency
https://developer.roblox.com/en-us/api-reference/property/BasePart/CanCollide

2 Likes