Advertisement
DrakerMaker

Ins4niT33

May 26th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. -- Ins4niT33 made by DrakerMaker
  2.  
  3. local player = game.Players.LocalPlayer
  4.  
  5. local avatar = player.Character
  6.  
  7. local sign = Instance.new("BillboardGui")
  8.  
  9. sign.Adornee = avatar.Head
  10.  
  11. sign.Parent = avatar.Head
  12.  
  13. mouse = player:GetMouse()
  14.  
  15. sign.StudsOffset=Vector3.new(0.5,2,0)
  16. sign.Size=UDim2.new(3,0,3,0)
  17. text=Instance.new("TextLabel")
  18. text.Text= "Ins4niT33"
  19. text.TextScaled = true
  20. text.TextStrokeTransparency = 0
  21. text.TextColor3 = Color3.new(255, 0, 0)
  22. text.TextStrokeColor3 = Color3.new(157, 0, 0)
  23. text.Size=UDim2.new(1,0,1,0)
  24. text.Position=UDim2.new(-0.125,0,-0.25,0)
  25. text.BackgroundTransparency = 1
  26. text.Parent=sign
  27.  
  28. local info = Instance.new("Folder")
  29.  
  30. info.Parent = avatar
  31.  
  32. info.Name = "Info"
  33.  
  34. local IR = Instance.new("NumberValue")
  35.  
  36. IR.Value = 3222633040
  37.  
  38. IR.Name = "R15RigDead"
  39.  
  40. IR.Parent = info
  41.  
  42. local IRR = Instance.new("NumberValue")
  43.  
  44. IRR.Value = 3222654895
  45.  
  46. IRR.Name = "R6RigDead"
  47.  
  48. IRR.Parent = info
  49.  
  50. local HotkeyDead = Instance.new("StringValue")
  51.  
  52. HotkeyDead.Value = "k"
  53.  
  54. HotkeyDead.Name = "HotkeyDead"
  55.  
  56. HotkeyDead.Parent = info
  57.  
  58. local r6 = info.R6RigDead
  59. local r15 = info.R15RigDead
  60.  
  61. local hum = avatar.Humanoid
  62.  
  63. function KeyD(key)
  64. key = key:lower()
  65.  
  66. if key == HotkeyDead.Value:lower() then
  67. if hum.RigType == Enum.HumanoidRigType.R15 then
  68. anim = Instance.new("Animation")
  69. anim.AnimationId = "http://www.roblox.com/asset/?id="..r15.Value
  70. avatar:BreakJoints()
  71. elseif hum.RigType == Enum.HumanoidRigType.R6 then
  72. anim = Instance.new("Animation")
  73. anim.AnimationId = "http://www.roblox.com/asset/?id="..r6.Value
  74. wait(0.4)
  75. avatar:BreakJoints()
  76. end
  77.  
  78. local track = hum:LoadAnimation(anim)
  79. track:Play()
  80. end
  81. end
  82.  
  83. mouse.KeyDown:connect(KeyD)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement