Advertisement
Guest User

Untitled

a guest
Aug 14th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. wait(3)
  2. --Chest script
  3. -- by masonsteinmet
  4. local UIS = game:GetService("UserInputService")
  5. local player = game.Players.masonsteinmet
  6. local RightArm = player.Character["Right Arm"]
  7. local LeftArm = player.Character["Left Arm"]
  8. local LeftLeg = player.Character["Left Leg"]
  9. local RightLeg = player.Character["Right Leg"]
  10.  
  11. function tag()
  12. local cool = Instance.new("BillboardGui")
  13. cool.Parent = player.Character.Head
  14. cool.Size = UDim2.new(3, 0,3, 0)
  15. cool.Name = "cool"
  16. cool.MaxDistance = 150
  17. cool.StudsOffset = Vector3.new(0,4,0)
  18. local text = Instance.new("TextLabel")
  19. text.Parent = player.Character.Head.cool
  20. text.Text = "Noob script made by masonsteinmet"
  21. text.Font = "SourceSansBold"
  22. text.Size = UDim2.new(1,0,1,0)
  23. text.BackgroundTransparency = 1
  24. text.TextScaled = true
  25. end
  26.  
  27. function noobwalk()
  28. local humanoid = player.Character.Humanoid
  29. local walk2 = Instance.new("BillboardGui")
  30. local check = Instance.new("BoolValue")
  31. humanoid.DisplayDistanceType = 'None'
  32. check.Parent = player.Character
  33. check.Value = true
  34. walk2.Parent = player.Character.Torso
  35. walk2.Size = UDim2.new(9, 0,9, 0)
  36. walk2.Name = "walk2"
  37. walk2.MaxDistance = 150
  38. walk2.StudsOffset = Vector3.new(0,0,0)
  39. wait(0.01)
  40. local text = Instance.new("ImageLabel")
  41. text.Parent = player.Character.Torso.walk2
  42. text.Image = 'rbxassetid://652837132'
  43. text.Size = UDim2.new(1,0,1,0)
  44. text.BackgroundTransparency = 1
  45. text.Visible = false
  46. local walk = Instance.new("BillboardGui")
  47. walk.Parent = player.Character.Torso
  48. walk.Size = UDim2.new(9, 0,9, 0)
  49. walk.Name = "walk"
  50. walk.MaxDistance = 150
  51. walk.StudsOffset = Vector3.new(0,0,0)
  52. wait(0.01)
  53. local text2 = Instance.new("ImageLabel")
  54. text2.Parent = player.Character.Torso.walk
  55. text2.Image = 'rbxassetid://652836040'
  56. text2.Size = UDim2.new(1,0,1,0)
  57. text2.BackgroundTransparency = 1
  58. text2.Visible = true
  59. player.Character.Head.Transparency = 1
  60. player.Character.Torso.Transparency = 1
  61. player.Character.Head.face:Destroy()
  62. RightLeg.Transparency = 1
  63. RightArm.Transparency = 1
  64. LeftArm.Transparency = 1
  65. LeftLeg.Transparency = 1
  66. wait(0.1)
  67. local humanoid = player.Character.Humanoid
  68. humanoid.StateChanged:Connect(function(oldState, newState, smokeState)
  69. if humanoid.MoveDirection == Vector3.new(0, 0, 0) and humanoid:GetState() ~= Enum.HumanoidStateType.Jumping and humanoid:GetState() ~= Enum.HumanoidStateType.Jumping then
  70. check = true
  71. end
  72. if oldState == Enum.HumanoidStateType.RunningNoPhysics then
  73. check = false
  74. repeat
  75. wait(0.2)
  76. player.Character.Torso.walk2.ImageLabel.Visible = true
  77. player.Character.Torso.walk.ImageLabel.Visible = false
  78. wait(0.2)
  79. player.Character.Torso.walk.ImageLabel.Visible = true
  80. player.Character.Torso.walk2.ImageLabel.Visible = false
  81. wait(0.2)
  82. until check == true
  83. end
  84. end)
  85.  
  86. end
  87. noobwalk()
  88. tag()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement