refrop

MyDummy (NOTES) v6 -extra music

Jun 18th, 2021 (edited)
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.73 KB | None | 0 0
  1. local runDummyScript = function(f,scri)
  2. local oldenv = getfenv(f)
  3. local newenv = setmetatable({}, {
  4. __index = function(_, k)
  5. if k:lower() == 'script' then
  6. return script
  7. else
  8. return oldenv[k]
  9. end
  10. end
  11. })
  12. setfenv(f, newenv)
  13. ypcall(function() f() end)
  14. end
  15.  
  16.  
  17. cors = {}
  18. Wo = Instance.new("Model",game:GetService("Lighting"))
  19. Wo.Name = "CompiledModel"
  20.  
  21. -----variables
  22. local runner = game.Workspace:WaitForChild("refrop")
  23. local master = game:GetService("Players"):GetPlayerFromCharacter(runner)
  24.  
  25. local base = Instance.new("Model")
  26. base.Name = "MyDummy"
  27.  
  28. -------body
  29. local Head = Instance.new("Part")
  30. Head.Name = "Head"
  31.  
  32. local Torso = Instance.new("Part")
  33. Torso.Name = "Torso"
  34.  
  35. local LeftArm = Instance.new("Part")
  36. LeftArm.Name = "Left Arm"
  37.  
  38. local RightArm = Instance.new("Part")
  39. RightArm.Name = "Right Arm"
  40.  
  41. local LeftLeg = Instance.new("Part")
  42. LeftLeg.Name = "Left Leg"
  43.  
  44. local RightLeg = Instance.new("Part")
  45. RightLeg.Name = "Right Leg"
  46.  
  47. local Humanoid = Instance.new("Humanoid")
  48. Humanoid.Name = "Humanoid"
  49.  
  50.  
  51. local Face = Instance.new("Decal")
  52. Face.Name = "Face"
  53. -------body
  54.  
  55. ------Motor6D
  56.  
  57. local Neck = Instance.new("WeldConstraint")
  58. Neck.Name = "Neck"
  59.  
  60. local RightShoulder = Instance.new("WeldConstraint")
  61. RightShoulder.Name = "Right Shoulder"
  62.  
  63. local LeftHip = Instance.new("WeldConstraint")
  64. LeftHip.Name = "Left Hip"
  65.  
  66. --local LeftShoulder = Instance.new("Motor6D")
  67. --LeftShoulder.Name = "Left Shoulder"
  68.  
  69. local LeftShoulder = Instance.new("WeldConstraint")
  70. LeftShoulder.Name = "Left Shoulder"
  71.  
  72.  
  73. local RightHip = Instance.new("WeldConstraint")
  74. RightHip.Name = "Right Hip"
  75.  
  76. local Mesh = Instance.new("SpecialMesh")
  77. Mesh.Name = "Mesh"
  78.  
  79. local random = math.random(1, 2)
  80. local random2 = math.random(1, 3)
  81.  
  82. ------Motor6D
  83.  
  84. local Gui = Instance.new("ScreenGui")
  85. Gui.Name = "MyDummy"
  86.  
  87.  
  88. local Button = Instance.new("TextButton")
  89. Button.Name = "Duplicate"
  90.  
  91. local Button2 = Instance.new("TextButton")
  92. Button2.Name = "Delete"
  93.  
  94. local Button3 = Instance.new("TextButton")
  95. Button3.Name = "Sing"
  96.  
  97. local Button4 = Instance.new("TextButton")
  98. Button4.Name = "Shut"
  99.  
  100. local Button5 = Instance.new("TextButton")
  101. Button5.Name = "Close"
  102.  
  103. local Button6 = Instance.new("TextButton")
  104. Button6.Name = "Follow"
  105.  
  106. local Button7 = Instance.new("TextButton")
  107. Button7.Name = "Stop"
  108.  
  109.  
  110. local Button8 = Instance.new("TextButton")
  111. Button8.Name = "Kiss"
  112.  
  113.  
  114. -------Talk
  115.  
  116. local Bi = Instance.new("BillboardGui")
  117. Bi.Name = "talk"
  118.  
  119. local text = Instance.new("TextBox")
  120.  
  121. -------Talk
  122.  
  123.  
  124. -----variables
  125.  
  126. -----game
  127.  
  128. wait(0.2)
  129. local W = Wo
  130.  
  131. base.Parent = W
  132.  
  133. ---base.World = runner.Torso.Position - Vector3.new(0, 1, 0)
  134.  
  135.  
  136.  
  137.  
  138. Head.Parent = base
  139. Head.Position = runner.Torso.Position + Vector3.new(0, 4.5, 0)
  140. Head.Orientation = Vector3.new(0, 0, 0)
  141. Head.Size = Vector3.new(2, 1, 1)
  142. Head.Anchored = false
  143. Head.Material = Enum.Material.SmoothPlastic
  144.  
  145.  
  146. Bi.Parent = Head
  147. Bi.AlwaysOnTop = true
  148. Bi.Enabled = true
  149. Bi.Size = UDim2.new(0, 200, 0, 50)
  150. Bi.StudsOffset = Vector3.new(0, 2, 0)
  151.  
  152.  
  153.  
  154. text.Parent = Bi
  155. text.TextScaled = true
  156. text.BackgroundTransparency = 1
  157. text.Text = "..."
  158. text.Size = UDim2.new(1, 0, 1, 0)
  159.  
  160.  
  161.  
  162.  
  163. Face.Parent = Head
  164. Face.Texture = "http://www.roblox.com/asset/?id=5400574876"
  165.  
  166.  
  167. Mesh.Parent = Head
  168. Mesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  169.  
  170.  
  171. Torso.Parent = base
  172. Torso.Position = runner.Torso.Position + Vector3.new(0, 3, 0)
  173. Torso.Orientation = Vector3.new(0, 0, 0)
  174. Torso.Size = Vector3.new(2, 2, 1)
  175. Torso.Anchored = false
  176.  
  177. Torso.Material = Enum.Material.SmoothPlastic
  178. Torso.CanCollide = false
  179.  
  180. LeftArm.Parent = base
  181. LeftArm.Position = runner.Torso.Position + Vector3.new(-1.47, 3, 0)
  182. LeftArm.Orientation = Vector3.new(0, 0, 0)
  183. LeftArm.Size = Vector3.new(1, 2, 1)
  184. LeftArm.Anchored = false
  185.  
  186. LeftArm.Material = Enum.Material.SmoothPlastic
  187. LeftArm.CanCollide = false
  188.  
  189. RightArm.Parent = base
  190. RightArm.Position = runner.Torso.Position + Vector3.new(1.47, 3, 0)
  191. RightArm.Orientation = Vector3.new(0, 0, 0)
  192. RightArm.Size = Vector3.new(1, 2, 1)
  193. RightArm.Anchored = false
  194.  
  195. RightArm.Material = Enum.Material.SmoothPlastic
  196. RightArm.CanCollide = false
  197.  
  198.  
  199. LeftLeg.Parent = base
  200. LeftLeg.Position = runner.Torso.Position + Vector3.new(-0.5, 1, 0)
  201. LeftLeg.Orientation = Vector3.new(0, 0, 0)
  202. LeftLeg.Size = Vector3.new(1, 2, 1)
  203. LeftLeg.Anchored = false
  204.  
  205. LeftLeg.Material = Enum.Material.SmoothPlastic
  206. LeftLeg.CanCollide = false
  207.  
  208.  
  209.  
  210. RightLeg.Parent = base
  211. RightLeg.Position = runner.Torso.Position + Vector3.new(0.5, 1, 0)
  212. RightLeg.Orientation = Vector3.new(0, 0, 0)
  213. RightLeg.Size = Vector3.new(1, 2, 1)
  214. RightLeg.Anchored = false
  215.  
  216. RightLeg.Material = Enum.Material.SmoothPlastic
  217. RightLeg.CanCollide = false
  218.  
  219. -------body
  220. if random == 1 then
  221.  
  222. Head.BrickColor = BrickColor.new("Cool yellow")
  223. RightArm.BrickColor = BrickColor.new("Cool yellow")
  224. LeftArm.BrickColor = BrickColor.new("Cool yellow")
  225.  
  226. else
  227.  
  228. Head.BrickColor = BrickColor.new("Bright orange")
  229. RightArm.BrickColor = BrickColor.new("Bright orange")
  230. LeftArm.BrickColor = BrickColor.new("Bright orange")
  231.  
  232. end
  233. ---------shirt
  234. if random2 == 1 then
  235.  
  236. Torso.BrickColor = BrickColor.new("Neon orange")
  237. RightLeg.BrickColor = BrickColor.new("Neon orange")
  238. LeftLeg.BrickColor = BrickColor.new("Neon orange")
  239. end
  240.  
  241.  
  242. if random2 == 2 then
  243.  
  244. Torso.BrickColor = BrickColor.new("Black")
  245. RightLeg.BrickColor = BrickColor.new("Black")
  246. LeftLeg.BrickColor = BrickColor.new("Black")
  247. end
  248. if random2 == 3 then
  249.  
  250.  
  251. Torso.BrickColor = BrickColor.new("Baby blue")
  252. RightLeg.BrickColor = BrickColor.new("Baby blue")
  253. LeftLeg.BrickColor = BrickColor.new("Baby blue")
  254.  
  255.  
  256. end
  257.  
  258.  
  259. Humanoid.Parent = base
  260. Humanoid.NameOcclusion = Enum.NameOcclusion.OccludeAll
  261. Humanoid.DisplayName = " "
  262. -------------Motor6D
  263.  
  264.  
  265. LeftHip.Parent = Torso
  266. LeftHip.Part0 = Torso
  267. LeftHip.Part1 = LeftLeg
  268.  
  269.  
  270.  
  271. RightHip.Parent = Torso
  272. RightHip.Part0 = Torso
  273. RightHip.Part1 = RightLeg
  274.  
  275.  
  276. Neck.Parent = Torso
  277. Neck.Part0 = Torso
  278. Neck.Part1 = Head
  279.  
  280.  
  281. RightShoulder.Parent = Torso
  282. RightShoulder.Part0 = Torso
  283. RightShoulder.Part1 = RightArm
  284.  
  285.  
  286. LeftShoulder.Parent = Torso
  287. LeftShoulder.Part0 = Torso
  288. LeftShoulder.Part1 = LeftArm
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298. -------------Motor6D
  299. --------------------------Gui
  300.  
  301. Gui.Parent = master.PlayerGui
  302. Gui.ResetOnSpawn = false
  303.  
  304.  
  305. Button.Parent = master.PlayerGui.MyDummy
  306. Button.Position = UDim2.new(0.497, 0, 0.759, 0)
  307. Button.Size = UDim2.new(0, 95, 0, 50)
  308. Button.Text = "Duplicate"
  309. Button.TextScaled = true
  310. Button.BackgroundColor3 = Color3.new(0.666667, 0.666667, 1)
  311. Button.TextColor3 = Color3.new(1, 1, 1)
  312. Button.BorderSizePixel = 0
  313.  
  314.  
  315. Button2.Parent = master.PlayerGui.MyDummy
  316. Button2.Position = UDim2.new(0.597, 0, 0.759, 0)
  317. Button2.Size = UDim2.new(0, 95, 0, 50)
  318. Button2.Text = "Clean"
  319. Button2.TextScaled = true
  320. Button2.BackgroundColor3 = Color3.new(0.666667, 0.666667, 1)
  321. Button2.TextColor3 = Color3.new(1, 1, 1)
  322. Button2.BorderSizePixel = 0
  323.  
  324. Button3.Parent = master.PlayerGui.MyDummy
  325. Button3.Position = UDim2.new(0.397, 0, 0.759, 0)
  326. Button3.Size = UDim2.new(0, 95, 0, 50)
  327. Button3.Text = "Sing"
  328. Button3.TextScaled = true
  329. Button3.BackgroundColor3 = Color3.new(0.666667, 0.666667, 1)
  330. Button3.TextColor3 = Color3.new(1, 1, 1)
  331. Button3.BorderSizePixel = 0
  332.  
  333. Button4.Parent = master.PlayerGui.MyDummy
  334. Button4.Position = UDim2.new(0.397, 0, 0.859, 0)
  335. Button4.Size = UDim2.new(0, 95, 0, 50)
  336. Button4.Text = "Shut"
  337. Button4.TextScaled = true
  338. Button4.BackgroundColor3 = Color3.new(0.666667, 0.666667, 1)
  339. Button4.TextColor3 = Color3.new(1, 1, 1)
  340. Button4.BorderSizePixel = 0
  341.  
  342. Button5.Parent = master.PlayerGui.MyDummy
  343. Button5.Position = UDim2.new(0.497, 0, 0.659, 0)
  344. Button5.Size = UDim2.new(0, 95, 0, 50)
  345. Button5.Text = "X"
  346. Button5.TextScaled = true
  347. Button5.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.435294)
  348. Button5.TextColor3 = Color3.new(1, 1, 1)
  349. Button5.BorderSizePixel = 0
  350.  
  351. Button6.Parent = master.PlayerGui.MyDummy
  352. Button6.Position = UDim2.new(0.297, 0, 0.759, 0)
  353. Button6.Size = UDim2.new(0, 95, 0, 50)
  354. Button6.Text = "Follow"
  355. Button6.TextScaled = true
  356. Button6.BackgroundColor3 = Color3.new(0.666667, 0.666667, 1)
  357. Button6.TextColor3 = Color3.new(1, 1, 1)
  358. Button6.BorderSizePixel = 0
  359.  
  360. Button7.Parent = master.PlayerGui.MyDummy
  361. Button7.Position = UDim2.new(0.297, 0, 0.859, 0)
  362. Button7.Size = UDim2.new(0, 95, 0, 50)
  363. Button7.Text = "Stop"
  364. Button7.TextScaled = true
  365. Button7.BackgroundColor3 = Color3.new(0.666667, 0.666667, 1)
  366. Button7.TextColor3 = Color3.new(1, 1, 1)
  367. Button7.BorderSizePixel = 0
  368.  
  369. Button8.Parent = master.PlayerGui.MyDummy
  370. Button8.Position = UDim2.new(0.397, 0, 0.659, 0)
  371. Button8.Size = UDim2.new(0, 95, 0, 50)
  372. Button8.Text = "Kiss"
  373. Button8.TextScaled = true
  374. Button8.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.435294)
  375. Button8.TextColor3 = Color3.new(1, 1, 1)
  376. Button8.BorderSizePixel = 0
  377.  
  378.  
  379.  
  380.  
  381.  
  382.  
  383.  
  384.  
  385. --------------------------Gui
  386.  
  387. text.TextColor3 = Torso.Color
  388.  
  389. -----game
  390.  
  391. -----final
  392.  
  393. Wo.Parent = workspace
  394. Wo:MakeJoints()
  395. local mas1 = Wo:GetChildren()
  396. for i=1,#mas1 do
  397. mas1[i].Parent = workspace
  398. ypcall(function() mas1[i]:MakeJoints() end)
  399. end
  400. Wo:Destroy()
  401. for i=1,#cors do
  402. coroutine.resume(cors[i])
  403. end
  404.  
  405. -----final
  406.  
  407.  
  408. -----functions
  409.  
  410. local player = master
  411. local char = runner
  412. local Dummy = game.Workspace:FindFirstChild("MyDummy")
  413. local Gui = master.PlayerGui.MyDummy
  414. local Button1 = master.PlayerGui.MyDummy.Duplicate
  415. local Button2 = master.PlayerGui.MyDummy.Delete
  416. local Button3 = master.PlayerGui.MyDummy.Sing
  417. local Button4 = master.PlayerGui.MyDummy.Shut
  418. local Button5 = master.PlayerGui.MyDummy.Close
  419. local Button6 = master.PlayerGui.MyDummy.Follow
  420. local Button7 = master.PlayerGui.MyDummy.Stop
  421. local Button8 = master.PlayerGui.MyDummy.Kiss
  422. local music = Instance.new("Sound")
  423. local light = Instance.new("PointLight")
  424. local talk = Dummy.Head.talk.TextBox.Text
  425. ---
  426.  
  427. ---
  428.  
  429.  
  430.  
  431.  
  432. music.Looped = true
  433.  
  434.  
  435. Button1.MouseButton1Down:Connect(function()
  436.  
  437. local clone = Dummy:clone()
  438.  
  439.  
  440. wait(0.5)
  441.  
  442.  
  443. clone.Parent = game.Workspace
  444.  
  445.  
  446. end)
  447.  
  448. Button2.MouseButton1Down:Connect(function()
  449.  
  450. local runDummyScript = function(f,scri)
  451. local oldenv = getfenv(f)
  452. local newenv = setmetatable({}, {
  453. __index = function(_, k)
  454. if k:lower() == 'script' then
  455. return script
  456. else
  457. return oldenv[k]
  458. end
  459. end
  460. })
  461. setfenv(f, newenv)
  462. ypcall(function() f() end)
  463. end
  464.  
  465.  
  466. cors = {}
  467. Wo = Instance.new("Model",game:GetService("Lighting"))
  468. Wo.Name = "CompiledModel"
  469.  
  470. -----variables
  471.  
  472.  
  473.  
  474. local base = Instance.new("Part")
  475. base.Name = "clean"
  476.  
  477. local Bi = Instance.new("BillboardGui")
  478.  
  479. local text = Instance.new("TextBox")
  480.  
  481. local runner = game.Workspace:WaitForChild("MyDummy")
  482.  
  483. -----variables
  484.  
  485. -----game
  486.  
  487. wait(0.2)
  488. local W = Wo
  489.  
  490. base.Parent = W
  491. base.Position = runner.Torso.Position + Vector3.new(0, 1, 0)
  492. base.Orientation = Vector3.new(0, 0, 0)
  493. base.Size = Vector3.new(2048, 2048, 2048)
  494. base.Anchored = false
  495. base.BrickColor = BrickColor.new("Neon orange")
  496. base.Material = Enum.Material.Neon
  497. base.Transparency = 0.5
  498. base.CanCollide = false
  499.  
  500.  
  501. Bi.Parent = base
  502. Bi.AlwaysOnTop = true
  503. Bi.Enabled = true
  504. Bi.Size = UDim2.new(0, 200, 0, 50)
  505.  
  506. text.Parent = Bi
  507. text.TextScaled = true
  508. text.BackgroundTransparency = 1
  509. text.Text = "Cleaning..."
  510. text.Size = UDim2.new(1, 0, 1, 0)
  511.  
  512.  
  513.  
  514.  
  515.  
  516.  
  517.  
  518.  
  519.  
  520. -----game
  521.  
  522.  
  523.  
  524. -----final
  525.  
  526. Wo.Parent = workspace
  527. Wo:MakeJoints()
  528. local mas1 = Wo:GetChildren()
  529. for i=1,#mas1 do
  530. mas1[i].Parent = workspace
  531. ypcall(function() mas1[i]:MakeJoints() end)
  532. end
  533. Wo:Destroy()
  534. for i=1,#cors do
  535. coroutine.resume(cors[i])
  536. end
  537.  
  538. -----final
  539.  
  540. -----functions
  541.  
  542. game.Workspace.clean.Touched:Connect(function(hit)
  543.  
  544. repeat
  545.  
  546. local char = hit.Parent
  547.  
  548. char:destroy()
  549.  
  550. until char ~= nil
  551.  
  552. text.Text = "Server Cleaned"
  553. wait(2)
  554.  
  555. game.Workspace.clean:destroy()
  556.  
  557.  
  558.  
  559. end)
  560.  
  561. -----functions
  562.  
  563.  
  564. end)
  565.  
  566. Button3.MouseButton1Down:Connect(function()
  567.  
  568. local mix = math.random(1, 6)
  569.  
  570.  
  571. music.Playing = false
  572. Dummy.Head.talk.TextBox.Text = "Yes master, ill sing for you"
  573.  
  574. wait(1)
  575.  
  576. if mix == 1 then
  577.  
  578. Dummy.Head.talk.TextBox.Text = "Now Playing: Hatsune Miku - The Singing Passion of Hatsune Miku"
  579.  
  580. music.Parent = Dummy.Head
  581. music.Playing = true
  582. music.Volume = 5
  583. music.SoundId = "rbxassetid://604911505"
  584. music.TimePosition = 0
  585.  
  586. light.Parent = Dummy.Head
  587. light.Brightness = 2
  588. light.Range = 12
  589. light.Enabled = true
  590. light.Color = Color3.new(1, 0.666667, 1)
  591.  
  592. end
  593.  
  594. if mix == 2 then
  595.  
  596. Dummy.Head.talk.TextBox.Text = "Now Playing: HATSUNE MIKU - MAIRIEUX"
  597.  
  598. music.Parent = Dummy.Head
  599. music.Playing = true
  600. music.Volume = 5
  601. music.SoundId = "rbxassetid://6769399199"
  602. music.TimePosition = 0
  603.  
  604. light.Parent = Dummy.Head
  605. light.Brightness = 2
  606. light.Range = 12
  607. light.Enabled = true
  608. light.Color = Color3.new(1, 0.333333, 0.498039)
  609.  
  610. end
  611.  
  612. if mix == 3 then
  613.  
  614. Dummy.Head.talk.TextBox.Text = "Now Playing: Deltarune - Lost Girl (Noelle's Theme)"
  615.  
  616. music.Parent = Dummy.Head
  617. music.Playing = true
  618. music.Volume = 5
  619. music.SoundId = "rbxassetid://4652222971"
  620. music.TimePosition = 0
  621.  
  622. light.Parent = Dummy.Head
  623. light.Brightness = 2
  624. light.Range = 12
  625. light.Enabled = true
  626. light.Color = Color3.new(0.666667, 0.666667, 1)
  627.  
  628. end
  629.  
  630. if mix == 4 then
  631.  
  632. Dummy.Head.talk.TextBox.Text = "Now Playing: Snails House - Pixel Galaxy"
  633.  
  634. music.Parent = Dummy.Head
  635. music.Playing = true
  636. music.Volume = 5
  637. music.SoundId = "rbxassetid://1425570716"
  638. music.TimePosition = 0
  639.  
  640. light.Parent = Dummy.Head
  641. light.Brightness = 2
  642. light.Range = 12
  643. light.Enabled = true
  644. light.Color = Color3.new(1, 0.666667, 0.498039)
  645.  
  646. end
  647.  
  648. if mix == 5 then
  649.  
  650. Dummy.Head.talk.TextBox.Text = "Now Playing: DELTARUNE - End Credits Song"
  651.  
  652. music.Parent = Dummy.Head
  653. music.Playing = true
  654. music.Volume = 5
  655. music.SoundId = "rbxassetid://2533289322"
  656. music.TimePosition = 0
  657.  
  658. light.Parent = Dummy.Head
  659. light.Brightness = 2
  660. light.Range = 12
  661. light.Enabled = true
  662. light.Color = Color3.new(1, 0.666667, 0)
  663.  
  664. end
  665.  
  666. if mix == 6 then
  667.  
  668. Dummy.Head.talk.TextBox.Text = "Now Playing: Space Junk Galaxy Music - Super Mario Galaxy"
  669.  
  670. music.Parent = Dummy.Head
  671. music.Playing = true
  672. music.Volume = 5
  673. music.SoundId = "rbxassetid://154351646"
  674. music.TimePosition = 0
  675.  
  676. light.Parent = Dummy.Head
  677. light.Brightness = 4
  678. light.Range = 12
  679. light.Enabled = true
  680. light.Color = Color3.new(0.333333, 1, 1)
  681.  
  682. end
  683.  
  684.  
  685.  
  686.  
  687.  
  688. Button4.MouseButton1Down:Connect(function()
  689.  
  690. Dummy.Head.talk.TextBox.Text = "Yes master."
  691.  
  692. Dummy.Head.Sound.Playing = false
  693. Dummy.Head.PointLight.Enabled = false
  694.  
  695. wait(2)
  696.  
  697. Dummy.Head.talk.TextBox.Text = "..."
  698.  
  699. end)
  700.  
  701.  
  702.  
  703.  
  704. end)
  705.  
  706. Button5.MouseButton1Down:Connect(function()
  707.  
  708. master.PlayerGui.MyDummy:remove()
  709.  
  710. end)
  711.  
  712. Button6.MouseButton1Down:Connect(function()
  713.  
  714.  
  715. repeat
  716.  
  717.  
  718.  
  719.  
  720. Dummy.Head.talk.TextBox.Text = "Yes master, im coming"
  721.  
  722.  
  723.  
  724. local humanoid = Dummy.Humanoid
  725.  
  726.  
  727.  
  728.  
  729. humanoid:MoveTo(runner.PrimaryPart.Position)
  730.  
  731. wait(0.1)
  732.  
  733.  
  734. Button7.MouseButton1Down:Connect(function()
  735.  
  736.  
  737.  
  738.  
  739.  
  740.  
  741. Dummy.Head.talk.TextBox.Text = "Yes master."
  742.  
  743.  
  744. wait(1)
  745.  
  746. Dummy.Head.talk.TextBox.Text = "..."
  747.  
  748.  
  749. end)
  750.  
  751.  
  752.  
  753.  
  754.  
  755.  
  756.  
  757. until Dummy.Head.talk.TextBox.Text == "Yes master."
  758.  
  759. print("ended")
  760.  
  761.  
  762.  
  763.  
  764.  
  765.  
  766.  
  767.  
  768.  
  769.  
  770.  
  771. end)
  772.  
  773. Button8.MouseButton1Down:Connect(function()
  774.  
  775.  
  776. Dummy.Head.talk.TextBox.Text = "M- Master"
  777.  
  778. local fa = Instance.new("Decal")
  779. fa.Texture = "http://www.roblox.com/asset/?id=4529210191"
  780. fa.Parent = Dummy.Head
  781.  
  782. local gig = Instance.new("Sound")
  783. gig.Parent = Dummy.Head
  784. gig.Volume = 5
  785. gig.Playing = true
  786. gig.SoundId = "http://www.roblox.com/asset/?id=5235559631"
  787.  
  788.  
  789. wait(2)
  790.  
  791. Dummy.Head.talk.TextBox.Text = "..."
  792. fa:Destroy()
  793.  
  794.  
  795.  
  796.  
  797.  
  798.  
  799. end)
  800.  
  801.  
  802.  
  803.  
  804.  
  805. ------functions
  806.  
  807.  
Add Comment
Please, Sign In to add comment