Advertisement
RyanDaCoder

HAHA!

Sep 14th, 2017
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16. -- get rid of pants and shirt for script to work :D
  17. local a = Instance.new("Pants")
  18. a.PantsTemplate = "http://www.roblox.com/asset/?id=451216658"
  19. a.Name = "Pants"
  20. a.Parent = game.Players.LocalPlayer.Character
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65. local ScreenGui = Instance.new("ScreenGui")
  66. local name = Instance.new("TextBox")
  67. local die = Instance.new("TextButton")
  68. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  69. name.Name = "name"
  70. name.Parent = ScreenGui
  71. name.BackgroundColor3 = Color3.new(1, 1, 1)
  72. name.Size = UDim2.new(0, 200, 0, 50)
  73. name.Font = Enum.Font.SourceSans
  74. name.FontSize = Enum.FontSize.Size14
  75. name.Text = "name"
  76. name.TextSize = 14
  77. die.Name = "die"
  78. die.Parent = name
  79. die.BackgroundColor3 = Color3.new(1, 1, 1)
  80. die.Position = UDim2.new(0, 0, 0, 50)
  81. die.Size = UDim2.new(0, 200, 0, 50)
  82. die.Font = Enum.Font.SourceSans
  83. die.FontSize = Enum.FontSize.Size14
  84. die.Text = "Death"
  85. die.TextSize = 14
  86. local me = game.Players.LocalPlayer.Character
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102. me.HumanoidRootPart.CFrame = CFrame.new(-76.253, 16.723, -53.8)
  103. local victim = name.Text
  104. die.MouseButton1Click:connect(function()
  105. local chair = Instance.new("Model")
  106. chair.Name = "DeathChair"
  107. chair.Parent = game.Workspace
  108. local a = Instance.new("Part")
  109. a.Size = Vector3.new(3.49, 0.05, 3.26)
  110. a.CFrame = CFrame.new(-68.585, 3.165, -53.73)
  111. a.Parent = chair
  112. local b = Instance.new("Part")
  113. b.Size = Vector3.new(0.05, 3.48, 3.26)
  114. b.CFrame = CFrame.new(-66.865, 4.88, -53.73)
  115. b.Parent = chair
  116. local c = Instance.new("Part")
  117. c.Size = Vector3.new(0.31, 3.19, 0.45)
  118. c.CFrame = CFrame.new(-66.994, 1.595, -55.145)
  119. c.Parent = chair
  120. local d = Instance.new("Part")
  121. d.Size = Vector3.new(0.31, 3.19, 0.45)
  122. d.CFrame = CFrame.new(-66.995, 1.595, -52.325)
  123. d.Parent = chair
  124. local e = Instance.new("Part")
  125. e.Size = Vector3.new(0.31, 3.19, 0.45)
  126. e.CFrame = CFrame.new(-70.159, 1.595, -52.325)
  127. e.Parent = chair
  128. local f = Instance.new("Part")
  129. f.Size = Vector3.new(0.05, 3.48, 3.26)
  130. f.CFrame = CFrame.new(-66.865, 4.88, -53.73)
  131. f.Parent = chair
  132. a.Anchored = true
  133. b.Anchored = true
  134. c.Anchored = true
  135. d.Anchored = true
  136. e.Anchored = true
  137. f.Anchored = true
  138. game.Players[name.Text].Character.Humanoid.Name = "NHumanoid"
  139. game.Players[name.Text].Character.Humanoid.WalkSpeed = 0
  140. game.Players[name.Text].Character.Humanoid.JumpPower = 0
  141. local sound = Instance.new("Sound")
  142. sound.SoundId = "rbxassetid://536675558"
  143. sound.Volume = 5
  144. sound.Playing = true
  145. sound.Parent = game.Workspace
  146. game.Players[name.Text].Character.HumanoidRootPart.CFrame = CFrame.new(-68.426, 10.444, -53.572)
  147. wait(10)
  148. sound:Destroy()
  149. game.Players[name.Text].Character.NHumanoid.Name = "Humanoid"
  150. chair:Destroy()
  151. game.Players[victim].Character.Humanoid.Health = 0
  152. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement