artucox7

Meliodas script ("Incompleted")

Jun 4th, 2018
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local pants = Instance.new("Pants", player.Character)
  3. local shirt = Instance.new("Shirt", player.Character)
  4. local sound = Instance.new("Sound",player.Character.Torso)
  5. local sound2 = Instance.new("Sound",player.Character.Head)
  6. local Sin = Instance.new("Part",player.Character)
  7. local decal = Instance.new("Decal",Sin)
  8. local weld = Instance.new("Weld", Sin)
  9. local humanoid = player.Character.Humanoid
  10. local Mouse = player:GetMouse()
  11. local Billboard = Instance.new("BillboardGui")
  12. local TextLabel = Instance.new("TextLabel")
  13. local anim = player.Character.Animate
  14.  
  15. print("Local user is "..player.Name)
  16.  
  17. --|tag|--
  18.  
  19. Billboard.Name = "Billboard"
  20. Billboard.Parent = player.Character
  21. Billboard.Size = UDim2.new(10, 0, 1, 0)
  22. Billboard.StudsOffset = Vector3.new(0, 3, 0)
  23.  
  24. TextLabel.Parent = Billboard
  25. TextLabel.BackgroundColor3 = Color3.new(89, 34, 89)
  26. TextLabel.BackgroundTransparency = 1
  27. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  28. TextLabel.Visible = true
  29. TextLabel.Font = Enum.Font.ArialBold
  30. TextLabel.TextScaled = true
  31. TextLabel.Text = "Meliodas"
  32. TextLabel.TextColor3 = Color3.new("196, 40, 28")
  33. TextLabel.TextScaled = true
  34. TextLabel.TextSize = 14
  35. TextLabel.TextWrapped = true
  36.  
  37. --|end tag|--
  38.  
  39. --|importants thinks|--
  40.  
  41. shirt.ShirtTemplate = ("rbxassetid://1683165713")
  42. pants.PantsTemplate = ("rbxassetid://1565486744")
  43. Sin.Size = Vector3.new(0.83, 0.86, 0.52)
  44. Sin.Orientation = Vector3.new(0, -90, 0)
  45. Sin.Position = Vector3.new(26.158, 5.355, -40.107)
  46. weld.Part0 = Sin
  47. weld.Part1 = player.Character:FindFirstChild("Left Arm")
  48. sound2.SoundId = 'rbxassetid://1238240145'
  49. sound2.Name = 'DistoredLaugh(DIO)'
  50. sound2.Volume = 100
  51. sound.SoundId = "rbxassetid://1360047951"
  52. sound.Playing = true
  53. sound.Looped = true
  54. sound.Volume = 1
  55. Sin.Name = "Sin"
  56. decal.Texture = ("http://www.roblox.com/asset/?id=245275191")
  57. shirt.Name = 'BodyHacker'
  58. pants.Name = 'LegHacker'
  59. player.Character.Shirt:Destroy()
  60. player.Character.Pants:Destroy()
  61.  
  62. --|end important thinks|--
  63.  
  64. --|start key commands|--
  65.  
  66. function onKeyPress(inputObject, gameProcessedEvent)
  67. if inputObject.KeyCode == Enum.KeyCode.T then
  68. sound2.Playing = true
  69. anim.AnimationId = 'rbxassetid://1916711165'
  70. anim:Play()
  71. end
  72. end
  73.  
  74.  
  75. player:GetMouse().KeyDown:connect(function(key)
  76. if key == "z" then
  77.  
  78. end
  79. end)
  80.  
  81.  
  82. --|end key commands|--
Add Comment
Please, Sign In to add comment