Advertisement
minecrafter523

Untitled

Sep 6th, 2017
1,619
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.30 KB | None | 0 0
  1. --Blox Watch Script by Lucario's Big Toad#1061 and Triangulum on v3rm
  2.  
  3. wait(1)
  4.  
  5. local Player = game:GetService("Players").LocalPlayer
  6. local Character = Player.Character
  7. local RootPart = Character:WaitForChild("HumanoidRootPart")
  8. local LArm = Character:WaitForChild("Left Arm")
  9. local RArm = Character:WaitForChild("Right Arm")
  10. local LLeg = Character:WaitForChild("Left Leg")
  11. local RLeg = Character:WaitForChild("Right Leg")
  12. local Torso = Character:WaitForChild("Torso")
  13. local Head = Character:WaitForChild("Head")
  14. local Face = nil
  15. if Head:FindFirstChild("face") then
  16. Face = Head.face
  17. Face.Texture = "rbxassetid://1"
  18. end
  19. local mouse = Player:GetMouse()
  20. local cam = workspace.CurrentCamera
  21. local Rbx = LoadLibrary("RbxUtility")
  22. local Create = Rbx.Create
  23. local Humanoid = Character.Humanoid
  24. local Invisible = true
  25. local Red = false
  26. noclip = false
  27. game:GetService('RunService').Stepped:connect(function()
  28. if noclip then
  29. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  30. end
  31. end)
  32. plr = game.Players.LocalPlayer
  33. mouse = plr:GetMouse()
  34. mouse.KeyDown:connect(function(key)
  35.  
  36. if key == "e" then
  37. noclip = not noclip
  38. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  39. end
  40. end)
  41.  
  42.  
  43. LArm.CanCollide = false
  44. RArm.CanCollide = false
  45. LLeg.CanCollide = false
  46. RLeg.CanCollide = false
  47. Torso.CanCollide = false
  48. Head.CanCollide = false
  49. RootPart.CanCollide = false
  50.  
  51. local Sounds = {}
  52. for i,v in pairs(Head:GetChildren()) do
  53. if v:IsA("Sound") then
  54. Sounds.Parent = nil
  55. table.insert(Sounds,v)
  56. end
  57. end
  58. for i,v in pairs(Character:GetChildren()) do
  59. if v.className == "Part" and v ~= RootPart then
  60. v.Transparency = 1
  61. elseif v.className == "Accessory" then
  62. v.Handle.Transparency = 1
  63. end
  64. end
  65.  
  66. Humanoid.WalkSpeed = 40
  67. Humanoid.JumpPower = 60
  68.  
  69. local LeftEye = Create("Part"){
  70. Parent = Character,
  71. Name = "Left Eye",
  72. Material = "Neon",
  73. Size = Vector3.new(0.25,0.25,0.25),
  74. Shape = "Ball",
  75. BrickColor = BrickColor.new("Institutional white"),
  76. Locked = true,
  77. CanCollide = false,
  78. Anchored = false,
  79. TopSurface = 10,
  80. LeftSurface = 10,
  81. RightSurface = 10,
  82. BottomSurface = 10,
  83. FrontSurface = 10,
  84. BackSurface = 10,
  85. Transparency = 1
  86. }
  87. local Weld = Create("Weld"){
  88. Parent = LeftEye,
  89. Part0 = LeftEye,
  90. Part1 = Head,
  91. C0 = CFrame.new(0.175,-0.2,0.5)
  92. }
  93. local RightEye = Create("Part"){
  94. Parent = Character,
  95. Name = "Right Eye",
  96. Material = "Neon",
  97. Size = Vector3.new(0.25,0.25,0.25),
  98. Shape = "Ball",
  99. BrickColor = BrickColor.new("Institutional white"),
  100. Locked = true,
  101. CanCollide = false,
  102. Anchored = false,
  103. TopSurface = 10,
  104. LeftSurface = 10,
  105. RightSurface = 10,
  106. BottomSurface = 10,
  107. FrontSurface = 10,
  108. BackSurface = 10,
  109. Transparency = 1
  110. }
  111. local Weld = Create("Weld"){
  112. Parent = RightEye,
  113. Part0 = RightEye,
  114. Part1 = Head,
  115. C0 = CFrame.new(-0.175,-0.2,0.5)
  116. }
  117.  
  118. function swait(num)
  119. if num ~= nil then
  120. game:GetService("RunService").RenderStepped:wait(num)
  121. elseif num == nil or num == 0 then
  122. game:GetService("RunService").RenderStepped:wait(0)
  123. end
  124. end
  125.  
  126. function rayCast(Pos,Dir,Dis,Ignore)
  127. return workspace:FindPartOnRay(Pos,Dir,Dis or 10000,Ignore)
  128. end
  129.  
  130. mouse.KeyDown:connect(function(key)
  131. key = key:lower()
  132. if key == "f" then
  133. if Invisible == false then
  134. Invisible = true
  135. for i=0,20 do
  136. swait()
  137. LeftEye.Transparency = 1-(i/20)
  138. RightEye.Transparency = 1-(i/20)
  139. end
  140. elseif Invisible == true then
  141. Invisible = false
  142. for i=0,20 do
  143. swait()
  144. LeftEye.Transparency = 1-(1-(i/20))
  145. RightEye.Transparency = 1-(1-(i/20))
  146. end
  147. end
  148. elseif key == "r" then
  149. if Red == false then
  150. Red = true
  151. LeftEye.BrickColor = BrickColor.new("Really red")
  152. RightEye.BrickColor = BrickColor.new("Really red")
  153. elseif Red == true then
  154. Red = false
  155. LeftEye.BrickColor = BrickColor.new("Institutional white")
  156. RightEye.BrickColor = BrickColor.new("Institutional white")
  157. end
  158. end
  159. end)
  160.  
  161. while true do
  162. swait()
  163. Character.Humanoid.MaxHealth = math.huge
  164. Character.Humanoid.Health = math.huge
  165. end
  166.  
  167. while true do
  168. swait()
  169. local Victim = rayCast(Head.Position,Head.CFrame.lookVector,1000,Character)
  170. if Victim then
  171. local hum = Victim:FindFirstChild("Humanoid")
  172. if hum then
  173. hum.WalkSpeed = 9
  174. hum.JumpPower = 25
  175. wait(1)
  176. hum.WalkSpeed = 16
  177. hum.JumpPower = 50
  178. end
  179. end
  180. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement