Advertisement
Guest User

Roblox Proto script

a guest
Sep 17th, 2017
1,141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. ---Protogent script---
  2. --By Axelpuff/loplkc--
  3.  
  4.  
  5. --Basic variables--
  6. local Player = game:GetService("Players").LocalPlayer
  7. local Char = Player.Character
  8. local Hum = Char.Humanoid
  9. local Torso = nil
  10. if Hum.RigType == Enum.HumanoidRigType.R15 then
  11. Torso = Char.UpperTorso
  12. else
  13. Torso = Char.Torso
  14. end
  15.  
  16. --Explosions Gui--
  17. local BMode = false
  18. local EGui = Instance.new("ScreenGui")
  19. EGui.Parent = Player.PlayerGui
  20. local EFrame = Instance.new("Frame")
  21. EFrame.Size = UDim2.new(0,100,0,100)
  22. EFrame.Parent = EGui
  23. EFrame.Transparency = 1
  24. local EButton = Instance.new("TextButton")
  25. EButton.Parent = EFrame
  26. EButton.Size = UDim2.new(0,100,0,50)
  27. EButton.Text = "Explosions Off"
  28. EButton.BackgroundColor3 = Color3.new(1,0.5,0)
  29. EButton.TextColor3 = Color3.new(0,0,1)
  30. EButton.MouseButton1Click:connect(function()
  31. if BMode == false then
  32. BMode = true
  33. EButton.Text = "Explosions On"
  34. else
  35. BMode = false
  36. EButton.Text = "Explosions Off"
  37. end
  38. end)
  39.  
  40.  
  41.  
  42. --Player stuff--
  43. Hum.MaxHealth = math.huge
  44. Hum.Health = math.huge
  45. local FF = Instance.new("ForceField")
  46. FF.Visible = false
  47. FF.Parent = Char
  48. Hum.WalkSpeed = 50
  49. Hum.JumpPower = 100
  50. local Colors = Char:FindFirstChild("Body Colors")
  51. print (Colors)
  52.  
  53. --Head and Hat--
  54. Char.Head.Mesh.Scale = Vector3.new(4,2.5,4)
  55. Char.Head.Mesh.Offset = Vector3.new(0,0.5,0)
  56. local Hat = Instance.new("Hat")
  57. Hat.AttachmentForward = Vector3.new(0,0,-1)
  58. Hat.AttachmentPos = Vector3.new(0.01,0.1,0)
  59. Hat.AttachmentRight = Vector3.new(1,0,0)
  60. Hat.AttachmentUp = Vector3.new(0,1,0)
  61. local HatHandle = Instance.new("Part")
  62. HatHandle.Name = "Handle"
  63. local HatMesh = Instance.new("SpecialMesh")
  64. HatMesh.MeshId = "http://www.roblox.com/asset/?id=12259089"
  65. HatMesh.Scale = Vector3.new(3.3,2.5,3)
  66. HatMesh.Offset = Vector3.new(0,0.7,0)
  67. HatHandle.BrickColor = BrickColor.new("Burnt Sienna")
  68. HatMesh.Parent = HatHandle
  69. HatHandle.Parent = Hat
  70. Hat.Parent = Char
  71.  
  72. --Terrible Rap--
  73. local Rap = Instance.new("Sound")
  74. Rap.Parent = Char
  75. Rap.SoundId = "rbxassetid://1010218129"
  76. Rap.Looped = true
  77. Rap.Volume = 25
  78. Rap.MaxDistance = math.huge
  79. Rap:Play()
  80.  
  81. --Symbol--
  82. local Protosym = Instance.new("Decal")
  83. Protosym.Texture = "http://www.roblox.com/asset/?id=1036070430"
  84. if Hum.RigType == Enum.HumanoidRigType.R15 then
  85. Protosym.Parent = Char.UpperTorso
  86. else
  87. Protosym.Parent = Char.Torso
  88. end
  89. Protosym.Face = "Front"
  90.  
  91. Char.HumanoidRootPart.Touched:connect(function(part)
  92. local HumCheck = part.Parent:FindFirstChild("Humanoid")
  93. if HumCheck then
  94. HumCheck:Destroy()
  95. if BMode == true then
  96. local Explo = Instance.new("Explosion")
  97. Torso.Anchored = true
  98. Explo.Parent = part.Parent
  99. Explo.Position = part.Position
  100. wait (0.5)
  101. Torso.Anchored = false
  102. end
  103. --local Gui = Instance.new("ScreenGui")
  104. --local Frame = Instance.new("Frame")
  105. --Frame.Parent = Gui
  106. --local Img = Instance.new("ImageLabel")
  107. --Img.Image = "http://www.roblox.com/asset/?id=89321260"
  108. --Img.Size = UDim2.new(0,1530,0,1000)
  109. --Img.Parent = Frame
  110. end
  111. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement