MrWiggles1029

ROBLOX 2D Character

Sep 2nd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. Player = game:GetService("Players").DarkShadow6
  2. script.Parent = Player.Character
  3. pcall(function() script.Parent["Left Arm"]:Remove() end)
  4. pcall(function() script.Parent["Left Leg"]:Remove() end)
  5. pcall(function() script.Parent["Right Arm"]:Remove() end)
  6. pcall(function() script.Parent["Right Leg"]:Remove() end)
  7. pcall(function() script.Parent.Head.face:Remove() end)
  8. script.Parent.Head.Transparency = 1
  9. script.Parent.Torso.Transparency = 1
  10. script.Parent.Torso.Size = Vector3.new(1, 1, 1)
  11. script.Parent.Head.Size = Vector3.new(1, 1, 1)
  12. Weld = Instance.new("Weld", script.Parent.Torso)
  13. Weld.Name = "Neck"
  14. Weld.Part0 = Weld.Parent
  15. Weld.Part1 = script.Parent.Head
  16. Weld.C0 = CFrame.new(0, 1.5, 0)
  17. Weld.C1 = CFrame.new(0, 0.5, 0)
  18. for _, Part in pairs(script.Parent:GetChildren()) do
  19. if Part:IsA("Accoutrement") then
  20. Part:Remove()
  21. end
  22. end
  23. Gui = Instance.new("BillboardGui", script.Parent)
  24. Gui.Name = "Character"
  25. Gui.Adornee = script.Parent.Head
  26. Gui.Size = UDim2.new(0, 75, 0, 100)
  27. Label = Instance.new("TextLabel", Gui)
  28. Label.Name = "Character"
  29. Label.Text = Player.Name
  30. Label.Size = UDim2.new(1, 0, 1, 0)
  31. Label.Position = UDim2.new(0, 0, 0, 0)
  32. coroutine.wrap(function()
  33. Workspace.CurrentCamera.CameraType = "Track"
  34. while true do
  35. if script.Parent:FindFirstChild("Head") == nil then break end
  36. Workspace.CurrentCamera.CoordinateFrame = CFrame.new(script.Parent.Head.Position) * CFrame.new(0, 6, 5)
  37. Workspace.CurrentCamera.Focus = script.Parent.Head.CFrame
  38. wait()
  39. end
  40. end)()
Add Comment
Please, Sign In to add comment