Advertisement
justneed

Building kit by x0y0zkidd

Dec 25th, 2024 (edited)
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 20.13 KB | Gaming | 0 0
  1. local plr = game:GetService("Players")
  2. local me  = plr.LocalPlayer
  3. local hum = me.Character.Humanoid
  4. local hrp = me.Character.HumanoidRootPart
  5.  
  6. local work = game:GetService("Workspace")
  7.  
  8. local mouse = me:GetMouse()
  9. local tp    = mouse.Hit + Vector3.new(0,2.5,0)
  10.  
  11. local bmouse = me:GetMouse()
  12.  
  13. local screen   = Instance.new("ScreenGui")
  14. screen.Name    = "ColMat"
  15. screen.Parent  = me.PlayerGui
  16. screen.Enabled = false
  17.  
  18. local creen   = Instance.new("ScreenGui")
  19. creen.Name    = "Anchor"
  20. creen.Parent  = me.PlayerGui
  21. creen.Enabled = false
  22.  
  23. local dreen   = Instance.new("ScreenGui")
  24. dreen.Parent  = me.PlayerGui
  25. dreen.Name    = "ClearAll"
  26. dreen.Enabled = false
  27.  
  28. local ancreen   = Instance.new("ScreenGui")
  29. ancreen.Parent  = me.PlayerGui
  30. ancreen.Name    = "AnchorToggler"
  31. ancreen.Enabled = false
  32.  
  33. local anrame                  = Instance.new("Frame")
  34. anrame.Parent                 = ancreen
  35. anrame.Size                   = UDim2.new(0,150,0,50)
  36. anrame.BackgroundColor3       = Color3.fromRGB(65,65,65)
  37. anrame.BackgroundTransparency = 0.4
  38. anrame.Position               = UDim2.new(0,10,0,890)
  39.  
  40. anrame.Active    = true
  41. anrame.Draggable = true
  42.  
  43. local antog                  = Instance.new("TextLabel")
  44. antog.Text                   = "Anchor Toggler"
  45. antog.Parent                 = anrame
  46. antog.TextColor3             = Color3.fromRGB(255, 255, 255)
  47. antog.Size                   = UDim2.new(0,140,0,30)
  48. antog.Position               = UDim2.new(0.03, 0, 0.175, 0)
  49. antog.TextSize               = 18
  50. antog.Font                   = Enum.Font.GothamBold
  51. antog.BackgroundTransparency = 0.8
  52.  
  53. local coreen   = Instance.new("ScreenGui")
  54. coreen.Parent  = me.PlayerGui
  55. coreen.Name    = "Collision"
  56. coreen.Enabled = false
  57.  
  58. local crame                  = Instance.new("Frame")
  59. crame.Parent                 = coreen
  60. crame.Size                   = UDim2.new(0,150,0,50)
  61. crame.BackgroundColor3       = Color3.fromRGB(65,65,65)
  62. crame.BackgroundTransparency = 0.4
  63. crame.Position               = UDim2.new(0,10,0,890)
  64.  
  65. crame.Active    = true
  66. crame.Draggable = true
  67.  
  68. local colbtn                  = Instance.new("TextLabel")
  69. colbtn.Text                   = "Collision Toggler"
  70. colbtn.Parent                 = crame
  71. colbtn.TextColor3             = Color3.fromRGB(255, 255, 255)
  72. colbtn.Size                   = UDim2.new(0,140,0,30)
  73. colbtn.Position               = UDim2.new(0.03, 0, 0.175, 0)
  74. colbtn.TextSize               = 18
  75. colbtn.Font                   = Enum.Font.GothamBold
  76. colbtn.BackgroundTransparency = 0.8
  77.  
  78. local drame                  = Instance.new("Frame")
  79. drame.Parent                 = dreen
  80. drame.Size                   = UDim2.new(0,150,0,50)
  81. drame.BackgroundColor3       = Color3.fromRGB(65,65,65)
  82. drame.BackgroundTransparency = 0.4
  83. drame.Position               = UDim2.new(0,10,0,890)
  84.  
  85. drame.Active    = true
  86. drame.Draggable = true
  87.  
  88. local clrbtn                  = Instance.new("TextButton")
  89. clrbtn.Text                   = "Clear All"
  90. clrbtn.Parent                 = drame
  91. clrbtn.TextColor3             = Color3.fromRGB(255, 255, 255)
  92. clrbtn.Size                   = UDim2.new(0,110,0,30)
  93. clrbtn.Position               = UDim2.new(0.13, 0, 0.175, 0)
  94. clrbtn.TextSize               = 18
  95. clrbtn.Font                   = Enum.Font.GothamBold
  96. clrbtn.BackgroundTransparency = 0.8
  97.  
  98. local aframe                  = Instance.new("Frame")
  99. aframe.Parent                 = creen
  100. aframe.Size                   = UDim2.new(0,300,0,100)
  101. aframe.BackgroundColor3       = Color3.fromRGB(65,65,65)
  102. aframe.BackgroundTransparency = 0.4
  103. aframe.Position               = UDim2.new(0,10,0,840)
  104.  
  105. aframe.Active    = true
  106. aframe.Draggable = true
  107.  
  108. local anclab                  = Instance.new("TextLabel")
  109. anclab.Parent                 = aframe
  110. anclab.BackgroundTransparency = 1
  111. anclab.BorderSizePixel        = 0
  112. anclab.Text                   = "Anchor /\nUnanchor\nAll"
  113. anclab.TextSize               = 18
  114. anclab.TextColor3             = Color3.fromRGB(255,255,255)
  115. anclab.Position               = UDim2.new(0.3,0,0.5,0)
  116.  
  117. local ancbtn                  = Instance.new("TextButton")
  118. ancbtn.Text                   = "true"
  119. ancbtn.Parent                 = aframe
  120. ancbtn.TextColor3             = Color3.fromRGB(255, 255, 255)
  121. ancbtn.Size                   = UDim2.new(0,95,0,30)
  122. ancbtn.Position               = UDim2.new(0.58, 0, 0.35, 0)
  123. ancbtn.TextSize               = 18
  124. ancbtn.Font                   = Enum.Font.GothamBold
  125. ancbtn.BackgroundTransparency = 0.8
  126.  
  127. local treen   = Instance.new("ScreenGui")
  128. treen.Parent  = me.PlayerGui
  129. treen.Name    = "TransparencyToggler"
  130. treen.Enabled = false
  131.  
  132. local trame                  = Instance.new("Frame")
  133. trame.Parent                 = treen
  134. trame.Size                   = UDim2.new(0,200,0,50)
  135. trame.BackgroundColor3       = Color3.fromRGB(65,65,65)
  136. trame.BackgroundTransparency = 0.4
  137. trame.Position               = UDim2.new(0,10,0,890)
  138.  
  139. trame.Active    = true
  140. trame.Draggable = true
  141.  
  142. local trext                  = Instance.new("TextBox")
  143. trext.Text                   = ""
  144. trext.PlaceholderText        = "Transparency Toggler"
  145. trext.Parent                 = trame
  146. trext.TextColor3             = Color3.fromRGB(255, 255, 255)
  147. trext.Size                   = UDim2.new(0,188,0,30)
  148. trext.Position               = UDim2.new(0.03, 0, 0.175, 0)
  149. trext.TextSize               = 18
  150. trext.Font                   = Enum.Font.GothamBold
  151. trext.BackgroundTransparency = 0.8
  152.  
  153. local paint                  = Instance.new("Frame")
  154. paint.Parent                 = screen
  155. paint.Size                   = UDim2.new(0,400,0,400)
  156. paint.BackgroundColor3       = Color3.fromRGB(65,65,65)
  157. paint.BackgroundTransparency = 0.4
  158. paint.Position               = UDim2.new(0,10,0,540)
  159.  
  160. paint.Active    = true
  161. paint.Draggable = true
  162.  
  163. local cbtn            = Instance.new("TextButton")
  164. cbtn.Text             = ""
  165. cbtn.Parent           = paint
  166. cbtn.BackgroundColor3 = Color3.fromRGB(255,0,0)
  167. cbtn.Size             = UDim2.new(0,35,0,35)
  168. cbtn.Position         = UDim2.new(0.05, 0, 0.2, 0)
  169.  
  170. local cbtn2            = Instance.new("TextButton")
  171. cbtn2.Text             = ""
  172. cbtn2.Parent           = paint
  173. cbtn2.BackgroundColor3 = Color3.fromRGB(255,165,0)
  174. cbtn2.Size             = UDim2.new(0,35,0,35)
  175. cbtn2.Position         = UDim2.new(0.18, 0, 0.2, 0)
  176.  
  177. local cbtn3            = Instance.new("TextButton")
  178. cbtn3.Text             = ""
  179. cbtn3.Parent           = paint
  180. cbtn3.BackgroundColor3 = Color3.fromRGB(255,255,0)
  181. cbtn3.Size             = UDim2.new(0,35,0,35)
  182. cbtn3.Position         = UDim2.new(0.31, 0, 0.2, 0)
  183.  
  184. local cbtn4            = Instance.new("TextButton")
  185. cbtn4.Text             = ""
  186. cbtn4.Parent           = paint
  187. cbtn4.BackgroundColor3 = Color3.fromRGB(0,255,0)
  188. cbtn4.Size             = UDim2.new(0,35,0,35)
  189. cbtn4.Position         = UDim2.new(0.44, 0, 0.2, 0)
  190.  
  191. local cbtn5            = Instance.new("TextButton")
  192. cbtn5.Text             = ""
  193. cbtn5.Parent           = paint
  194. cbtn5.BackgroundColor3 = Color3.fromRGB(0,255,255)
  195. cbtn5.Size             = UDim2.new(0,35,0,35)
  196. cbtn5.Position         = UDim2.new(0.57, 0, 0.2, 0)
  197.  
  198. local cbtn6            = Instance.new("TextButton")
  199. cbtn6.Text             = ""
  200. cbtn6.Parent           = paint
  201. cbtn6.BackgroundColor3 = Color3.fromRGB(0,0,255)
  202. cbtn6.Size             = UDim2.new(0,35,0,35)
  203. cbtn6.Position         = UDim2.new(0.70, 0, 0.2, 0)
  204.  
  205. local cbtn7            = Instance.new("TextButton")
  206. cbtn7.Text             = ""
  207. cbtn7.Parent           = paint
  208. cbtn7.BackgroundColor3 = Color3.fromRGB(145,0,200)
  209. cbtn7.Size             = UDim2.new(0,35,0,35)
  210. cbtn7.Position         = UDim2.new(0.83, 0, 0.2, 0)
  211.  
  212. local mbtn            = Instance.new("TextButton")
  213. mbtn.Text             = "Plastic"
  214. mbtn.Parent           = paint
  215. mbtn.BackgroundColor3 = Color3.fromRGB(161, 161, 161)
  216. mbtn.Size             = UDim2.new(0,65,0,35)
  217. mbtn.Position         = UDim2.new(0.1, 0, 0.35, 0)
  218. mbtn.TextSize         = 12
  219.  
  220. local mbtn2            = Instance.new("TextButton")
  221. mbtn2.Text             = "Smooth"
  222. mbtn2.Parent           = paint
  223. mbtn2.BackgroundColor3 = Color3.fromRGB(255, 214, 214)
  224. mbtn2.Size             = UDim2.new(0,65,0,35)
  225. mbtn2.Position         = UDim2.new(0.30, 0, 0.35, 0)
  226. mbtn2.TextSize         = 12
  227.  
  228. local mbtn3            = Instance.new("TextButton")
  229. mbtn3.Text             = "Wood"
  230. mbtn3.Parent           = paint
  231. mbtn3.BackgroundColor3 = Color3.fromRGB(120, 54, 24)
  232. mbtn3.Size             = UDim2.new(0,65,0,35)
  233. mbtn3.Position         = UDim2.new(0.50, 0, 0.35, 0)
  234. mbtn3.TextSize         = 12
  235.  
  236. local mbtn4            = Instance.new("TextButton")
  237. mbtn4.Text             = "Ice"
  238. mbtn4.Parent           = paint
  239. mbtn4.BackgroundColor3 = Color3.fromRGB(123, 221, 224)
  240. mbtn4.Size             = UDim2.new(0,65,0,35)
  241. mbtn4.Position         = UDim2.new(0.70, 0, 0.35, 0)
  242. mbtn4.TextSize         = 12
  243.  
  244. local mbtn5            = Instance.new("TextButton")
  245. mbtn5.Text             = "Brick"
  246. mbtn5.Parent           = paint
  247. mbtn5.BackgroundColor3 = Color3.fromRGB(168, 40, 40)
  248. mbtn5.Size             = UDim2.new(0,65,0,35)
  249. mbtn5.Position         = UDim2.new(0.1, 0, 0.45, 0)
  250. mbtn5.TextSize         = 12
  251.  
  252. local mbtn6            = Instance.new("TextButton")
  253. mbtn6.Text             = "Grass"
  254. mbtn6.Parent           = paint
  255. mbtn6.BackgroundColor3 = Color3.fromRGB(0, 161, 0)
  256. mbtn6.Size             = UDim2.new(0,65,0,35)
  257. mbtn6.Position         = UDim2.new(0.30, 0, 0.45, 0)
  258. mbtn6.TextSize         = 12
  259.  
  260. local mbtn7            = Instance.new("TextButton")
  261. mbtn7.Text             = "Glass"
  262. mbtn7.Parent           = paint
  263. mbtn7.BackgroundColor3 = Color3.fromRGB(173, 202, 204)
  264. mbtn7.Size             = UDim2.new(0,65,0,35)
  265. mbtn7.Position         = UDim2.new(0.50, 0, 0.45, 0)
  266. mbtn7.TextSize         = 12
  267.  
  268. local mbtn8            = Instance.new("TextButton")
  269. mbtn8.Text             = "Metal"
  270. mbtn8.Parent           = paint
  271. mbtn8.BackgroundColor3 = Color3.fromRGB(163, 151, 145)
  272. mbtn8.Size             = UDim2.new(0,65,0,35)
  273. mbtn8.Position         = UDim2.new(0.70, 0, 0.45, 0)
  274. mbtn8.TextSize         = 12
  275.  
  276. local mbtn9            = Instance.new("TextButton")
  277. mbtn9.Text             = "Neon"
  278. mbtn9.Parent           = paint
  279. mbtn9.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  280. mbtn9.Size             = UDim2.new(0,65,0,35)
  281. mbtn9.Position         = UDim2.new(0.40, 0, 0.55, 0)
  282. mbtn9.TextSize         = 12
  283.  
  284. local credits                  = Instance.new("TextLabel")
  285. credits.Parent                 = paint
  286. credits.Text                   = "Made by x0y0zkidd"
  287. credits.BackgroundTransparency = 1
  288. credits.TextSize               = 24
  289. credits.TextColor3             = Color3.fromRGB(255,255,255)
  290. credits.Size                   = UDim2.new(0,50,0,20)
  291. credits.BorderSizePixel        = 0
  292. credits.Position               = UDim2.new(0.43, 0, 0.75,0)
  293.  
  294. local status                  = Instance.new("TextLabel")
  295. status.Parent                 = paint
  296. status.Text                   = "Choose"
  297. status.BackgroundTransparency = 1
  298. status.TextSize               = 12
  299. status.TextColor3             = Color3.fromRGB(255,255,255)
  300. status.Size                   = UDim2.new(0,50,0,20)
  301. status.BorderSizePixel        = 0
  302. status.Position               = UDim2.new(0.43, 0, 0.08,0)
  303.  
  304. local tool = Instance.new("Tool")
  305. tool.RequiresHandle = false
  306. tool.Name = "Build"
  307. tool.Parent = me.Backpack
  308.  
  309. local dtool = Instance.new("Tool")
  310. dtool.RequiresHandle = false
  311. dtool.Name = "Delete"
  312. dtool.Parent = me.Backpack
  313.  
  314. local ptool          = Instance.new("Tool")
  315. ptool.RequiresHandle = false
  316. ptool.Name           = "Paint"
  317. ptool.Parent         = me.Backpack
  318.  
  319. local anctool          = Instance.new("Tool")
  320. anctool.RequiresHandle = false
  321. anctool.Parent         = me.Backpack
  322. anctool.Name           = "Anchor"
  323.  
  324. local ctool          = Instance.new("Tool")
  325. ctool.RequiresHandle = false
  326. ctool.Parent         = me.Backpack
  327. ctool.Name           = "Collision"
  328.  
  329. local ttool          = Instance.new("Tool")
  330. ttool.RequiresHandle = false
  331. ttool.Parent         = me.Backpack
  332. ttool.Name           = "Transparency"
  333.  
  334. tool.Equipped:Connect(function()
  335.     creen.Enabled      = true
  336.     local block        = Instance.new("Part")
  337.     block.Name         = "blockEx"
  338.     block.Parent       = game.Workspace
  339.     block.CanCollide   = false
  340.     block.Anchored     = true
  341.     block.Transparency = 0.5
  342.     block.Size         = Vector3.new(2,2,2)
  343.     block.Material     = Enum.Material.SmoothPlastic
  344.     block.Color        = Color3.fromRGB(255,255,255)
  345.     block.CanQuery     = false
  346.    
  347.     local con
  348.     con       = game:GetService("RunService").RenderStepped:Connect(function()
  349.     local btp = mouse.Hit.p + Vector3.new(0,0,0)
  350.         block.CFrame = CFrame.new(btp)
  351.     end)
  352. end)
  353.  
  354. tool.Activated:Connect(function()
  355.     print("Tool")
  356.     local dtp           = bmouse.Hit.p + Vector3.new(0,0,0)
  357.     local nblock        = Instance.new("Part")
  358.     nblock.Parent       = game.Workspace
  359.     nblock.Size         = Vector3.new(2,2,2)
  360.     nblock.Name         = "nblock"
  361.     nblock.Material     = work.blockEx.Material
  362.     nblock.Anchored     = true
  363.     nblock.Transparency = 0
  364.     nblock.CFrame       = CFrame.new(dtp)
  365.     nblock.Position     = nblock.Position + Vector3.new(0,1,0)
  366.    
  367.     anctool.Activated:Connect(function()
  368.         if mouse.Target:IsA("BasePart") then
  369.             if mouse.Target.Name == "nblock" then
  370.                 mouse.Target.Anchored = not mouse.Target.Anchored
  371.             end
  372.         end
  373.     end)
  374.    
  375.     ancbtn.MouseButton1Click:Connect(function()
  376.         nblock.Anchored = not nblock.Anchored
  377.         if ancbtn.Text == "false" then
  378.             ancbtn.Text     = "true"
  379.         elseif ancbtn.Text == "true" then
  380.             ancbtn.Text = "false"
  381.         end
  382.     end)
  383.    
  384.     clrbtn.MouseButton1Click:Connect(function()
  385.         for _, all in pairs(work:GetDescendants()) do
  386.             if all:IsA("BasePart") then
  387.                 if all.Name == "nblock" then
  388.                     all:Destroy()
  389.                 end
  390.             end
  391.         end
  392.     end)
  393.    
  394.     ctool.Activated:Connect(function()
  395.         if mouse.Target:IsA("BasePart") then
  396.             if mouse.Target.Name == "nblock" then
  397.                 if mouse.Target.CanCollide then
  398.                     mouse.Target.CanCollide = false
  399.                 else
  400.                     mouse.Target.CanCollide = true
  401.                 end
  402.             end
  403.         end
  404.     end)
  405.    
  406.     ttool.Activated:Connect(function()
  407.         if mouse.Target:IsA("BasePart") then
  408.             if mouse.Target.Name == "nblock" then
  409.                 mouse.Target.Transparency = trext.Text
  410.             end
  411.         end
  412.     end)
  413.  
  414.     ptool.Activated:Connect(function()
  415.         if mouse.Target:IsA("BasePart") then
  416.             if mouse.Target.Name == "nblock" then
  417.                 if status.Text == "Red" then
  418.                     mouse.Target.Color = status.TextColor3
  419.                     block.Color   = status.TextColor3
  420.                 elseif status.Text == "Orange" then
  421.                     mouse.Target.Color = status.TextColor3
  422.                 elseif status.Text == "Yellow" then
  423.                     mouse.Target.Color = status.TextColor3
  424.                 elseif status.Text == "Green" then
  425.                     mouse.Target.Color = status.TextColor3
  426.                 elseif status.Text == "Cyan" then
  427.                     mouse.Target.Color = status.TextColor3
  428.                 elseif status.Text == "Blue" then
  429.                     mouse.Target.Color = status.TextColor3
  430.                 elseif status.Text == "Purple" then
  431.                     mouse.Target.Color = status.TextColor3
  432.                 elseif status.Text == "Plastic" then
  433.                     mouse.Target.Material = Enum.Material.Plastic
  434.                     mouse.Target.Transparency = trext.Text
  435.                 elseif status.Text == "Smooth" then
  436.                     mouse.Target.Material = Enum.Material.SmoothPlastic
  437.                     mouse.Target.Transparency = trext.Text
  438.                 elseif status.Text == "Wood" then
  439.                     mouse.Target.Material = Enum.Material.Wood
  440.                     mouse.Target.Transparency = trext.Text
  441.                 elseif status.Text == "Ice" then
  442.                     mouse.Target.Material = Enum.Material.Ice
  443.                     mouse.Target.Transparency = trext.Text
  444.                 elseif status.Text == "Brick" then
  445.                     mouse.Target.Material = Enum.Material.Brick
  446.                     mouse.Target.Transparency = trext.Text
  447.                 elseif status.Text == "Grass" then
  448.                     mouse.Target.Material = Enum.Material.Grass
  449.                     mouse.Target.Transparency = trext.Text
  450.                 elseif status.Text == "Glass" then
  451.                     mouse.Target.Material     = Enum.Material.Glass
  452.                     mouse.Target.Transparency = 0.5
  453.                 elseif status.Text == "Metal" then
  454.                     mouse.Target.Material = Enum.Material.DiamondPlate
  455.                     mouse.Target.Transparency = trext.Text
  456.                 elseif status.Text == "Neon" then
  457.                     mouse.Target.Material     = Enum.Material.Neon
  458.                     mouse.Target.Transparency = trext.Text
  459.                 end
  460.             end
  461.         end
  462.     end)
  463. end)
  464.  
  465. tool.Unequipped:Connect(function()
  466.     creen.Enabled = false
  467.     work:WaitForChild("blockEx"):Destroy()
  468. end)
  469.  
  470. dtool.Equipped:Connect(function()
  471.     dreen.Enabled = true
  472. end)
  473.  
  474. dtool.Unequipped:Connect(function()
  475.     dreen.Enabled = false
  476. end)
  477.  
  478. dtool.Activated:Connect(function()
  479.     if mouse.Target:IsA("BasePart") then
  480.         if mouse.Target.Name == "nblock" then
  481.             mouse.Target:Destroy()
  482.         end
  483.     end
  484. end)
  485.  
  486. ptool.Equipped:Connect(function()
  487.     screen.Enabled = true
  488. end)
  489.  
  490.  
  491. ptool.Unequipped:Connect(function()
  492.     screen.Enabled = false
  493. end)
  494.  
  495. ctool.Equipped:Connect(function()
  496.     coreen.Enabled = true
  497. end)
  498.  
  499. ctool.Unequipped:Connect(function()
  500.     coreen.Enabled = false
  501. end)
  502.  
  503. anctool.Unequipped:Connect(function()
  504.     ancreen.Enabled = false
  505. end)
  506.  
  507. anctool.Equipped:Connect(function()
  508.     ancreen.Enabled = true
  509. end)
  510.  
  511. ttool.Equipped:Connect(function()
  512.     treen.Enabled = true
  513. end)
  514.  
  515. ttool.Unequipped:Connect(function()
  516.     treen.Enabled = false
  517. end)
  518.  
  519. cbtn.MouseButton1Click:Connect(function()
  520.     status.TextColor3 = cbtn.BackgroundColor3
  521.     status.Text       = "Red"
  522. end)
  523.  
  524. cbtn2.MouseButton1Click:Connect(function()
  525.     status.TextColor3 = cbtn2.BackgroundColor3
  526.     status.Text       = "Orange"
  527. end)
  528.  
  529. cbtn3.MouseButton1Click:Connect(function()
  530.     status.TextColor3 = cbtn3.BackgroundColor3
  531.     status.Text       = "Yellow"
  532. end)
  533.  
  534. cbtn4.MouseButton1Click:Connect(function()
  535.     status.TextColor3 = cbtn4.BackgroundColor3
  536.     status.Text       = "Green"
  537. end)
  538.  
  539. cbtn5.MouseButton1Click:Connect(function()
  540.     status.TextColor3 = cbtn5.BackgroundColor3
  541.     status.Text       = "Cyan"
  542. end)
  543.  
  544. cbtn6.MouseButton1Click:Connect(function()
  545.     status.TextColor3 = cbtn6.BackgroundColor3
  546.     status.Text       = "Blue"
  547. end)
  548.  
  549. cbtn7.MouseButton1Click:Connect(function()
  550.     status.TextColor3 = cbtn7.BackgroundColor3
  551.     status.Text       = "Purple"
  552. end)
  553.  
  554. mbtn.MouseButton1Click:Connect(function()
  555.     status.TextColor3 = mbtn.BackgroundColor3
  556.     status.Text       = mbtn.Text
  557. end)
  558.  
  559. mbtn2.MouseButton1Click:Connect(function()
  560.     status.TextColor3 = mbtn2.BackgroundColor3
  561.     status.Text       = mbtn2.Text
  562. end)
  563.  
  564. mbtn3.MouseButton1Click:Connect(function()
  565.     status.TextColor3 = mbtn3.BackgroundColor3
  566.     status.Text       = mbtn3.Text
  567. end)
  568.  
  569. mbtn4.MouseButton1Click:Connect(function()
  570.     status.TextColor3 = mbtn4.BackgroundColor3
  571.     status.Text       = mbtn4.Text
  572. end)
  573.  
  574. mbtn5.MouseButton1Click:Connect(function()
  575.     status.TextColor3 = mbtn5.BackgroundColor3
  576.     status.Text       = mbtn5.Text
  577. end)
  578.  
  579. mbtn6.MouseButton1Click:Connect(function()
  580.     status.TextColor3 = mbtn6.BackgroundColor3
  581.     status.Text       = mbtn6.Text
  582. end)
  583.  
  584. mbtn7.MouseButton1Click:Connect(function()
  585.     status.TextColor3 = mbtn7.BackgroundColor3
  586.     status.Text       = mbtn7.Text
  587. end)
  588.  
  589. mbtn8.MouseButton1Click:Connect(function()
  590.     status.TextColor3 = mbtn8.BackgroundColor3
  591.     status.Text       = mbtn8.Text
  592. end)
  593.  
  594. mbtn9.MouseButton1Click:Connect(function()
  595.     status.TextColor3 = mbtn9.BackgroundColor3
  596.     status.Text       = mbtn9.Text
  597. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement