Why isn't my pixel script not working? not changing Color or Material on display screen
Asked by
5 years ago Edited 5 years ago
this script makes 2 grid 1 to display the Color / material the other to detect parts in front of it
so it knows what Color / Material it should display
No errors
it changes Color / Material but that's perminite i want it to dispaear when you stop touching a detectorPart
it Crashes studio
Code:
01 | local Size = Vector 2. new(script.Parent.Backround.Size.X,script.Parent.Backround.Size.Y) |
03 | Resaoltion = Vector 3. new( 1 , 1 , 1 ) |
05 | BasePosition = Vector 3. new(- 21.5 , - 0.5 , 0.5 ) |
07 | GetPart = function (Part 1 ,Part 2 ) |
08 | Part 1. Touched:Connect( function (hit) |
09 | Part 2. Color = hit.Color |
10 | Part 2. Material = hit.Material |
18 | local Part = Instance.new( "Part" ) |
19 | Part.Material = "SmoothPlastic" |
21 | Part.Color = Color 3. fromRGB( 255 , 255 , 255 ) |
22 | Part.Name = "Part [" .. X .. "," ..Y .. "]" |
23 | Part.Size = Resaoltion |
24 | Part.Position = BasePosition + Vector 3. new(Resaoltion.X*X, Resaoltion.Y*Y, 1 ) |
25 | Part.Parent = script.Parent |
33 | local Part 2 = Instance.new( "Part" ) |
34 | Part 2. Material = "SmoothPlastic" |
36 | Part 2. Color = Color 3. fromRGB( 255 , 255 , 255 ) |
37 | Part 2. Name = "DtectorPart [" .. X .. "," ..Y .. "]" |
38 | Part 2. CanCollide = false |
39 | Part 2. Transparency = 1 |
40 | Part 2. Size = Vector 3. new(Resaoltion.X,Resaoltion.Y,Distance) |
41 | Part 2. Position = BasePosition + Vector 3. new(Resaoltion.X*X, Resaoltion.Y*Y,Distance/ 2 +( 1 -. 5 )) |
42 | Part 2. Parent = script.Parent |
49 | script.Parent [ "DtectorPart [" .. X .. "," .. Y .. "]" ] .Touched:Connect( function (hit) |
50 | script.Parent [ "Part [" .. X .. "," .. Y .. "]" ] .Color = hit.Color |
51 | script.Parent [ "Part [" .. X .. "," .. Y .. "]" ] = hit.Material |