Advertisement
ManlyMemeScripter

Untitled

Feb 2nd, 2018
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 KB | None | 0 0
  1. --[[
  2.  
  3. Created by Sharkringan kthx
  4.  
  5. --]]
  6.  
  7. wait(1/60)
  8.  
  9. plr = game:service'Players'.LocalPlayer
  10. char = plr.Character
  11. root = char:FindFirstChild'HumanoidRootPart'
  12. hum = char:FindFirstChildOfClass'Humanoid'
  13. mouse = plr:GetMouse()
  14. clones = {}
  15. followplr = true
  16. radius = 25
  17.  
  18. if char.Head:FindFirstChild'face' then
  19. char.Head.face:Destroy()
  20. end
  21.  
  22. for _, a in pairs(char:children()) do
  23. if a:IsA'Part' then
  24. a.Transparency = 1
  25. elseif a:IsA'Accessory' then
  26. a:Destroy()
  27. end
  28. end
  29.  
  30. eyes = Instance.new('Part', char)
  31. eyes.Anchored = false
  32. eyes.Name = "Eyes"
  33. eyes.Size = Vector3.new(2, 2, 2)
  34. eyesm = Instance.new('SpecialMesh', eyes)
  35. eyesm.Scale = Vector3.new(2, 2, 2)
  36. eyesm.MeshId = "rbxassetid://192551369"
  37. eyesm.TextureId = "rbxassetid://192551430"
  38.  
  39. body = Instance.new('Part', char)
  40. body.Anchored = false
  41. body.Name = "Body"
  42. body.Size = Vector3.new(2, 2, 2)
  43. bodym = Instance.new('SpecialMesh', body)
  44. bodym.Scale = Vector3.new(2, 2, 2)
  45. bodym.MeshId = "rbxassetid://511741293"
  46. bodym.TextureId = "rbxassetid://511741295"
  47.  
  48. -- Properties
  49.  
  50. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  51.  
  52. TextButton.Parent = ScreenGui
  53. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  54. TextButton.Size = UDim2.new(0, 200, 0, 50)
  55. TextButton.Font = Enum.Font.SourceSans
  56. TextButton.FontSize = Enum.FontSize.Size14
  57. TextButton.Text = "Aaaa"
  58. TextButton.TextSize = 14
  59.  
  60. --[[Function/s being made!]]
  61. function PlayMusic(ID)
  62. for i, v in pairs (game.Workspace:GetChildren()) do
  63. if v:IsA("Sound") then
  64. end
  65. end
  66. local music = Instance.new("Sound")
  67. local asset = "rbxassetid://"
  68. music.SoundId = asset .. ID
  69. music.Parent = workspace
  70. music.Volume = 99
  71. music.Looped = false
  72. music:Play()
  73. end
  74. --[[Connecting functions!]]
  75. TextButton.MouseButton1Down:connect(function()
  76. PlayMusic(1245734952)
  77. end)
  78.  
  79. local plr = game.Players.LocalPlayer
  80. local chr = plr.Character
  81. local maus = plr:GetMouse()
  82. local PGui=plr.PlayerGui
  83. local lleg = chr["Left Leg"]
  84. local rleg = chr["Right Leg"]
  85. local larm = chr["Left Arm"]
  86. local rarm = chr["Right Arm"]
  87. local hed = chr.Head
  88. local rutprt = chr.HumanoidRootPart
  89. local torso = chr.Torso
  90. local pseudohead=hed:Clone()
  91. for i,x in pairs(pseudohead:GetChildren()) do if not x.ClassName:find('Mesh') then x:Destroy() end end
  92. pseudohead.Name='PseudoHead'
  93. pseudohead.Parent=chr.Head
  94. local pseudoweld=Instance.new('Weld',torso)
  95. pseudoweld.Part0=hed
  96. pseudoweld.Name='PseudoHeadWeld'
  97. pseudoweld.Part1=pseudohead
  98. hed.Transparency=1
  99. for i,x in pairs(chr:GetChildren()) do
  100. if x:IsA'HHat' then x:destroy'' end end
  101. for i,x in pairs(chr:GetChildren()) do
  102. for a,v in pairs(x:GetChildren()) do
  103. if v:IsA'CharacterMesh' then v:destroy''
  104. end
  105. end
  106. end
  107.  
  108. --This is a localscript; you will need to have access to using scripts wherever you want this
  109. p = game:GetService('Players').LocalPlayer if p.Character then if p.Character:FindFirstChild('Humanoid') then p.Character.Humanoid.MaxHealth = math.huge end end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement