Advertisement
SmokeDelsin

project minipeep(expirment number21)

May 25th, 2015
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.16 KB | None | 0 0
  1. local ran,err = ypcall(function()
  2. plr = game:service'Players'.LocalPlayer
  3. char = plr.Character
  4. mouse = plr:GetMouse()
  5. humanoid = char:findFirstChild("Humanoid")
  6. torso = char:findFirstChild("Torso")
  7. head = char.Head
  8. ra = char:findFirstChild("Right Arm")
  9. la = char:findFirstChild("Left Arm")
  10. rl = char:findFirstChild("Right Leg")
  11. ll = char:findFirstChild("Left Leg")
  12. rs = torso:findFirstChild("Right Shoulder")
  13. ls = torso:findFirstChild("Left Shoulder")
  14. rh = torso:findFirstChild("Right Hip")
  15. lh = torso:findFirstChild("Left Hip")
  16. neck = torso:findFirstChild("Neck")
  17. rj = char:findFirstChild("HumanoidRootPart"):findFirstChild("RootJoint")
  18. anim = char:findFirstChild("Animate")
  19. rootpart = char:findFirstChild("HumanoidRootPart")
  20. camera = workspace.CurrentCamera
  21. do --Removing ROBLOX's new Looped bug >_>
  22. local function rec(x)
  23. for i,v in pairs(x:children()) do
  24. if v:IsA'Animation' then
  25. v.AnimationId = 'rbxassetid://28159255'
  26. end
  27. rec(v)
  28. end
  29. end
  30. rec(anim) --the Animate script
  31. end
  32.  
  33. humanoid.Jump = true
  34.  
  35. wait(.4)
  36.  
  37.  
  38. if anim then
  39. anim:Destroy()
  40. end
  41.  
  42.  
  43. rj.C0 = CFrame.new()
  44. rj.C1 = CFrame.new()
  45.  
  46.  
  47.  
  48. Instance.new("HumanoidController", game:service'ControllerService')
  49. Instance.new("SkateboardController", game:service'ControllerService')
  50. Instance.new("VehicleController", game:service'ControllerService')
  51.  
  52.  
  53.  
  54.  
  55. --minimize
  56. rh.Parent = nil
  57. lh.Parent = nil
  58. rs.Parent = nil
  59. ls.Parent = nil
  60. neck.Parent = nil
  61. rj.Parent = nil
  62.  
  63.  
  64. rl.FormFactor = "Custom"
  65. ll.FormFactor = "Custom"
  66. ra.FormFactor = "Custom"
  67. la.FormFactor = "Custom"
  68. torso.FormFactor = "Custom"
  69. head.FormFactor = "Custom"
  70. rootpart.FormFactor = "Custom"
  71.  
  72.  
  73.  
  74.  
  75. rootpart.Size = Vector3.new(.4, .4, .2)
  76. rl.Size = Vector3.new(.2, .4, .2)
  77. ll.Size = Vector3.new(.2, .4, .2)
  78. ra.Size = Vector3.new(.2, .4, .2)
  79. la.Size = Vector3.new(.2, .4, .2)
  80. torso.Size = Vector3.new(.4, .4, .2)
  81. head.Size = Vector3.new(.4, .2, .2)
  82.  
  83. rh.Parent = torso
  84. lh.Parent = torso
  85. rs.Parent = torso
  86. ls.Parent = torso
  87. neck.Parent = torso
  88. rj.Parent = rootpart
  89.  
  90.  
  91. if torso:findFirstChild("roblox") then
  92. local p = Instance.new("Part", char)
  93. p.FormFactor = "Custom"
  94. p.Size = torso.Size
  95. p.Transparency = 1
  96. p:BreakJoints()
  97. local w = Instance.new("Weld", char)
  98. w.Part0 = p
  99. w.Part1 = torso
  100. torso:findFirstChild("roblox").Parent = p
  101. end
  102.  
  103.  
  104. --[[mesh1 = Instance.new("SpecialMesh", torso)
  105. mesh1.Name = "Mesh"
  106. mesh1.Scale = torso.Size - Vector3.new(torso.Size.x/2, torso.Size.y/2, 0)
  107. mesh1.MeshId = "rbxasset://fonts/torso.mesh"
  108. mesh2 = Instance.new("SpecialMesh", la)
  109. mesh2.Name = "Mesh"
  110. mesh2.Scale = la.Size - Vector3.new(0, la.Size.y/2, 0)
  111. mesh2.MeshId = "rbxasset://fonts/leftarm.mesh"
  112. mesh3 = Instance.new("SpecialMesh", ra)
  113. mesh3.Name = "Mesh"
  114. mesh3.Scale = ra.Size - Vector3.new(0, ra.Size.y/2, 0)
  115. mesh3.MeshId = "rbxasset://fonts/rightarm.mesh"
  116. mesh4 = Instance.new("SpecialMesh", ll)
  117. mesh4.Name = "Mesh"
  118. mesh4.Scale = ll.Size - Vector3.new(0, ll.Size.y/2, 0)
  119. mesh4.MeshId = "rbxasset://fonts/leftleg.mesh"
  120. mesh5 = Instance.new("SpecialMesh", rl)
  121. mesh5.Name = "Mesh"
  122. mesh5.Scale = rl.Size - Vector3.new(0, rl.Size.y/2, 0)
  123. mesh5.MeshId = "rbxasset://fonts/rightleg.mesh"--]]
  124.  
  125.  
  126. --0.3 = 1.5, 0.1 = 0.5, 0.2 = 1
  127.  
  128. ls.C0 = CFrame.new(-.3,.1,0)
  129. ls.C1 = CFrame.new(0,.1,0)
  130. rs.C0 = CFrame.new(.3,.1,0)
  131. rs.C1 = CFrame.new(0,.1,0)
  132. rh.C0 = CFrame.new(.1,-.2,0)
  133. rh.C1 = CFrame.new(0, .2, 0)
  134. lh.C0 = CFrame.new(-.1,-.2,0)
  135. lh.C1 = CFrame.new(0, .2, 0)
  136. neck.C0 = CFrame.new(0,.2,0)
  137. neck.C1 = CFrame.new(0,-.1,0)
  138.  
  139. bodyc = char:findFirstChild("Body Colors")
  140. if bodyc then
  141. bodyc:Destroy()
  142. end
  143.  
  144. wait(1)
  145.  
  146. local body = {}
  147. for i,v in pairs(char:children()) do
  148. if v:IsA'BasePart' then
  149. body[v] = {Color = v.BrickColor}
  150. end
  151. end
  152.  
  153. function restorecolors()
  154. for _,bp in pairs(char:children()) do
  155. if bp:IsA("BasePart") then
  156. bp.BrickColor = body[bp].Color
  157. end
  158. end
  159. end
  160.  
  161.  
  162. local LightForTorso = Instance.new("PointLight", head)
  163. LightForTorso.Color = torso.BrickColor.Color
  164. LightForTorso.Range = 7
  165. LightForTorso.Brightness = 1.5
  166.  
  167.  
  168.  
  169.  
  170. local slidecount = 0
  171. local slidecountmax = 0
  172. local anim = ""
  173. local lastanim = anim
  174. local speed = 0
  175. local looking = false
  176. local dancing = false
  177. local superannoying = false
  178. local barrelroll = false
  179. local dubstepgun = false
  180. local foxie = false
  181. local durka = false
  182. local saxguy = false
  183. local heya = false
  184. local jb = false
  185. local bronymusic = false
  186. local sheddy = false
  187. local burndem = false
  188. local global_wait = 0
  189.  
  190. count = 0
  191. countspeed = 1
  192. sine = 0
  193. sinespeed = 1
  194.  
  195.  
  196.  
  197. humanoid.WalkSpeed = 40
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement