Sorry if I'm bad at explaining.
This is my script.
1 | function onTouched(hit) |
2 | script.Parent.Parent.ARGH.Transparency = 1 |
3 | script.Parent.Parent.ARGH.CanCollide = true |
4 | wait( 7.5 ) |
5 | script.Parent.Parent.ARGH.Transparency = 1 |
6 | script.Parent.Parent.ARGH.CanCollide = false |
7 | end |
8 | script.Parent.Touched:connect(onTouched) |
After pressing the button, it should change the platform's color. After 7.5 seconds, it goes back to its original color.
I tried something like this to change its color.
1 | script.Parent.Parent.Lite.Lite 1. BrickColor = BrickColor.new(Color 3. new( 1 , 1 , 1 )) |
However, it didn't work. I couldn't use union, because it says "unsolvable".
Any solutions? (Once again, sorry if it's too hard to understand, I'm really bad at explaining)
1 | model = game.Workspace.Model |
2 |
3 | for i,v in pairs (model:GetChildren()) do -- iterates through the children of the model |
4 | if v:IsA( "Part" ) then --if its a part |
5 | v.BrickColor = BrickColor.new(Color 1. new( 1 , 1 , 1 )) --changes color |
6 | end |
7 | end |
This version may seem a little long-winded, but basically when it fires, it will:
Set a debounce ( so the funciton only fires once at a time ).
Get a new - random colour for the model change into (You can set this colour to anything you want)).
Scan through the model for Parts.
3.1. Get the part's original colour, and make a copy of it (using a BrickColorValue).
3.2. Change the part's colour.
Wait 7.5 seconds.
Scan through the model for Parts again. 5.1. Change part's colour to original BrickColorValue.
Return Debounce to false.
01 | local model = Workspace.Model -- Change path if neccesarry. |
02 |
03 | function onTouched(hit) |
04 | --1. |
05 | if debounce then return end |
06 | debounce = true |
07 |
08 | --2. |
09 | local newColour = BrickColor.Random() |
10 |
11 | --3. |
12 | for _,part in pairs (model:GetChildren()) do |
13 | if part:IsA( "BasePart" ) or part:IsA( "UnionOperation" ) then |
14 | --3.1. |
15 | local bc = part:FindFirstChild( "OriginalBrickColor" ) or Instance.new( "BrickColorValue" ,part) |