refrop

MyDummy (NOTES) v6 - INF

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