Advertisement
potatinha

RKIRKRJJRJRR

Oct 2nd, 2017
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.40 KB | None | 0 0
  1. local Player = game.Players.Bruno973
  2. local Character = Player.Character
  3. RS = Character.Torso["Right Shoulder"]
  4. local Mouse = Player:GetMouse()
  5. MH = Mouse.Hit + Vector3.new(15, 15, 15)
  6. Character.Humanoid.MaxHealth = 5000
  7. Character.Humanoid.Health = 5000
  8.  
  9. l = Character:findFirstChild("Left Leg")
  10. l.Transparency = 1
  11. k = Character:findFirstChild("Right Leg")
  12. k.Transparency = 1
  13. h = Character.Head
  14. h.Transparency = 1
  15. g = Character:findFirstChild("Left Arm")
  16. g.Transparency = 1
  17. s = Character:findFirstChild("Right Arm")
  18. s.Transparency = 1
  19.  
  20. k = Instance.new("Sound", Character.Head)
  21. k.SoundId = "rbxassetid://586187912"
  22. k.Volume = 10
  23.  
  24. m = Instance.new("SpecialMesh", Character.Torso)
  25. m.MeshId = "rbxassetid://906939696"
  26. m.TextureId = "rbxassetid://906939805"
  27.  
  28. function onKeyDown(key)
  29. key = key:lower()
  30. if key == "f" then
  31. for i = 1,3 do
  32. RS.C0 = RS.C0*CFrame.Angles(0,0,0.5)
  33. wait()
  34. end
  35. k:Play()
  36. local Fireball = Instance.new("Part", Character)
  37. Fireball.Name = "Fireball"
  38. game.Debris:AddItem(Fireball, 7)
  39. Fireball.Shape = "Ball"
  40. Fireball.BrickColor = BrickColor.new("Really red")
  41. Fireball.Transparency = 0.7
  42. Fireball.TopSurface = 0
  43. Fireball.Size = Vector3.new(13, 13, 13)
  44. Fireball.BottomSurface = 0
  45. Fireball.CanCollide = false
  46. Fireball.Locked = true
  47. Fireball.CFrame = Character.Torso.CFrame*CFrame.new(0,0,-12)
  48. local BodyVelocity = Instance.new("BodyVelocity", Fireball)
  49. BodyVelocity.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  50. BodyVelocity.velocity = Mouse.Hit.lookVector*80
  51. function Hurt(Part)
  52. if Part.Parent:FindFirstChild("Humanoid") then
  53. Part.Parent.Humanoid.Health = Part.Parent.Humanoid.Health-15
  54. end
  55. end
  56. Fireball.Touched:connect(Hurt)
  57. wait(5)
  58. for i = 1,3 do
  59. RS.C0 = RS.C0*CFrame.Angles(0,0,-0.5)
  60. wait()
  61. end
  62. end
  63. end
  64. Mouse.KeyDown:connect(onKeyDown)
  65. function giant(p, size)
  66. local pchar = p.Character
  67. if pchar then
  68. local function scale(chr,scl)
  69.  
  70. for _,v in pairs(pchar:GetChildren()) do
  71. if v:IsA("Hat") then
  72. v:Clone()
  73. v.Parent = game.Lighting
  74. end
  75. end
  76.  
  77. local Head = chr['Head']
  78. local Torso = chr['Torso']
  79. local LA = chr['Left Arm']
  80. local RA = chr['Right Arm']
  81. local LL = chr['Left Leg']
  82. local RL = chr['Right Leg']
  83. local HRP = chr['HumanoidRootPart']
  84.  
  85. wait(0.1)
  86.  
  87. Head.formFactor = 3
  88. Torso.formFactor = 3
  89. LA.formFactor = 3
  90. RA.formFactor = 3
  91. LL.formFactor = 3
  92. RL.formFactor = 3
  93. HRP.formFactor = 3
  94.  
  95. Head.Size = Vector3.new(scl * 2, scl, scl)
  96. Torso.Size = Vector3.new(scl * 2, scl * 2, scl)
  97. LA.Size = Vector3.new(scl, scl * 2, scl)
  98. RA.Size = Vector3.new(scl, scl * 2, scl)
  99. LL.Size = Vector3.new(scl, scl * 2, scl)
  100. RL.Size = Vector3.new(scl, scl * 2, scl)
  101. HRP.Size = Vector3.new(scl * 2, scl * 2, scl)
  102.  
  103. local Motor1 = Instance.new('Motor6D', Torso)
  104. Motor1.Part0 = Torso
  105. Motor1.Part1 = Head
  106. Motor1.C0 = CFrame.new(0, 1 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  107. Motor1.C1 = CFrame.new(0, -0.5 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  108. Motor1.Name = "Neck"
  109.  
  110. local Motor2 = Instance.new('Motor6D', Torso)
  111. Motor2.Part0 = Torso
  112. Motor2.Part1 = LA
  113. Motor2.C0 = CFrame.new(-1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  114. Motor2.C1 = CFrame.new(0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  115. Motor2.Name = "Left Shoulder"
  116.  
  117. local Motor3 = Instance.new('Motor6D', Torso)
  118. Motor3.Part0 = Torso
  119. Motor3.Part1 = RA
  120. Motor3.C0 = CFrame.new(1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  121. Motor3.C1 = CFrame.new(-0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  122. Motor3.Name = "Right Shoulder"
  123.  
  124. local Motor4 = Instance.new('Motor6D', Torso)
  125. Motor4.Part0 = Torso
  126. Motor4.Part1 = LL
  127. Motor4.C0 = CFrame.new(-1 * scl, -1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  128. Motor4.C1 = CFrame.new(-0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  129. Motor4.Name = "Left Hip"
  130.  
  131. local Motor5 = Instance.new('Motor6D', Torso)
  132. Motor5.Part0 = Torso
  133. Motor5.Part1 = RL
  134. Motor5.C0 = CFrame.new(1 * scl, -1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  135. Motor5.C1 = CFrame.new(0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  136. Motor5.Name = "Right Hip"
  137.  
  138. local Motor6 = Instance.new('Motor6D', HRP)
  139. Motor6.Part0 = HRP
  140. Motor6.Part1 = Torso
  141. Motor6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  142. Motor6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  143.  
  144. end
  145.  
  146. scale(pchar, size)
  147. pchar.Humanoid.WalkSpeed = 15 * size
  148.  
  149. for _,v in pairs(game.Lighting:GetChildren()) do
  150. if v:IsA("Hat") then
  151. v.Parent = pchar
  152. end
  153. end
  154. end
  155. end
  156.  
  157. local plr = game.Players.LocalPlayer
  158. giant(plr,1)
  159.  
  160.  
  161. local csize = 7.6
  162.  
  163. local sgui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  164. local base = Instance.new("Frame", sgui)
  165. base.BackgroundTransparency = 1
  166. base.Size = UDim2.new(0, 110, 0, 200)
  167. base.Position = UDim2.new(1, -120, 1, -180)
  168. local indicator = Instance.new("TextLabel", base)
  169. indicator.Size = UDim2.new(1, 0, 0, 25)
  170. indicator.TextColor3 = Color3.new(1, 1, 1)
  171. indicator.BackgroundTransparency = 0
  172. indicator.FontSize = Enum.FontSize.Size18
  173. indicator.Font = Enum.Font.SourceSans
  174. indicator.Text = "Current Size: 3"
  175. local PlusOne = Instance.new("TextButton", base)
  176. PlusOne.BackgroundColor3 = Color3.new(214/255, 214/255, 214/255)
  177. PlusOne.Position = UDim2.new(0, 0, 0, 40)
  178. PlusOne.Size = UDim2.new(1, 0, 0.5, -50)
  179. PlusOne.BorderSizePixel = 2
  180. PlusOne.Font = Enum.Font.SourceSansBold
  181. PlusOne.FontSize = Enum.FontSize.Size24
  182. PlusOne.Text = "+0 Size"
  183. local MinusOne = Instance.new("TextButton", base)
  184. MinusOne.BackgroundColor3 = Color3.new(214/255, 214/255, 214/255)
  185. MinusOne.Position = UDim2.new(0, 0, 0.5, 10)
  186. MinusOne.Size = UDim2.new(1, 0, 0.5, -50)
  187. MinusOne.Text = "-0 Size"
  188. MinusOne.BorderSizePixel = 2
  189. MinusOne.Font = Enum.Font.SourceSansBold
  190. MinusOne.FontSize = Enum.FontSize.Size24
  191.  
  192. PlusOne.MouseButton1Down:connect(function()
  193. csize = csize + 0
  194. giant(plr, csize)
  195. indicator.Text = "Current Size: "..tostring(csize)
  196. end)
  197.  
  198. MinusOne.MouseButton1Down:connect(function()
  199. csize = csize - 0
  200. giant(plr, csize)
  201. indicator.Text = "Current Size: "..tostring(csize)
  202. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement