Advertisement
Guest User

ElectroScript

a guest
Feb 16th, 2020
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.48 KB | None | 0 0
  1. -- Electro Script v.2020.0.1
  2. -- Electro#2832
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local title = Instance.new("TextLabel")
  6. local close = Instance.new("TextButton")
  7. local version = Instance.new("TextLabel")
  8. local walkspeed = Instance.new("TextButton")
  9. local jumppower = Instance.new("TextButton")
  10. local Fly = Instance.new("TextButton")
  11. local Btools = Instance.new("TextButton")
  12. local openmenu = Instance.new("Frame")
  13. local open = Instance.new("TextButton")
  14.  
  15. --Properties:
  16. ScreenGui.Parent = game.CoreGui
  17. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. main.Name = "main"
  20. main.Parent = ScreenGui
  21. main.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
  22. main.Position = UDim2.new(0.0395010412, 0, 0.730769217, 0)
  23. main.Size = UDim2.new(0, 254, 0, 141)
  24. main.Visible = false
  25. main.Active = true
  26. main.Draggable = true
  27.  
  28.  
  29. title.Name = "title"
  30. title.Parent = main
  31. title.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  32. title.Size = UDim2.new(0, 254, 0, 31)
  33. title.Font = Enum.Font.Code
  34. title.Text = "ElectroScript"
  35. title.TextColor3 = Color3.fromRGB(0, 0, 0)
  36. title.TextSize = 14.000
  37. title.TextStrokeColor3 = Color3.fromRGB(255, 0, 255)
  38. title.TextStrokeTransparency = 0.000
  39.  
  40. close.Name = "close"
  41. close.Parent = main
  42. close.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
  43. close.Position = UDim2.new(0.874015749, 0, 0.0283687934, 0)
  44. close.Size = UDim2.new(0, 25, 0, 22)
  45. close.Font = Enum.Font.SourceSans
  46. close.Text = "X"
  47. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  48. close.TextSize = 14.000
  49. NAMEOFBUTTONHERE.MouseButton1Down:connect(funcion()
  50. Scripthere
  51. end)
  52.  
  53. version.Name = "version"
  54. version.Parent = main
  55. version.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  56. version.BackgroundTransparency = 1.000
  57. version.Position = UDim2.new(0.767716527, 0, 0.829787195, 0)
  58. version.Size = UDim2.new(0, 59, 0, 24)
  59. version.Font = Enum.Font.Code
  60. version.Text = "v.2020.0.1"
  61. version.TextColor3 = Color3.fromRGB(85, 255, 0)
  62. version.TextSize = 9.000
  63.  
  64. walkspeed.Name = "walkspeed"
  65. walkspeed.Parent = main
  66. walkspeed.BackgroundColor3 = Color3.fromRGB(26, 26, 10)
  67. walkspeed.Position = UDim2.new(0.0787401572, 0, 0.304964542, 0)
  68. walkspeed.Size = UDim2.new(0, 81, 0, 27)
  69. walkspeed.Font = Enum.Font.Code
  70. walkspeed.Text = "WalkSpeed"
  71. walkspeed.TextColor3 = Color3.fromRGB(85, 255, 0)
  72. walkspeed.TextSize = 14.000
  73. walkspeed.MouseButton1Down:connect(funcion()
  74. game.Players.LocalPlayer.Character.Humanoid.Walkspeed = 100
  75. end)
  76.  
  77. jumppower.Name = "jumppower"
  78. jumppower.Parent = main
  79. jumppower.BackgroundColor3 = Color3.fromRGB(26, 26, 10)
  80. jumppower.Position = UDim2.new(0.586614132, 0, 0.304964542, 0)
  81. jumppower.Size = UDim2.new(0, 81, 0, 27)
  82. jumppower.Font = Enum.Font.Code
  83. jumppower.Text = "JumpPower"
  84. jumppower.TextColor3 = Color3.fromRGB(85, 255, 0)
  85. jumppower.TextSize = 14.000
  86. jumppower.MouseButton1Down:connect(funcion()
  87. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150
  88. end)
  89.  
  90. Fly.Name = "Fly"
  91. Fly.Parent = main
  92. Fly.BackgroundColor3 = Color3.fromRGB(26, 26, 10)
  93. Fly.Position = UDim2.new(0.0787401274, 0, 0.574468136, 0)
  94. Fly.Size = UDim2.new(0, 81, 0, 23)
  95. Fly.Font = Enum.Font.Code
  96. Fly.Text = "Fly [E]"
  97. Fly.TextColor3 = Color3.fromRGB(85, 255, 0)
  98. Fly.TextSize = 14.000
  99. Fly.MouseButton1Down:connect(funcion()
  100. -- Press "E" to fly and unfly
  101. -- You have to re-apply the script if you die
  102. loadstring(game:HttpGet("https://pastebin.com/raw/7rXZ9VNc", true))()
  103. end)
  104.  
  105. Btools.Name = "Btools"
  106. Btools.Parent = main
  107. Btools.BackgroundColor3 = Color3.fromRGB(26, 26, 10)
  108. Btools.Position = UDim2.new(0.586614132, 0, 0.574468076, 0)
  109. Btools.Size = UDim2.new(0, 81, 0, 23)
  110. Btools.Font = Enum.Font.Code
  111. Btools.Text = "Btools"
  112. Btools.TextColor3 = Color3.fromRGB(85, 255, 0)
  113. Btools.TextSize = 14.000
  114. Btools.MouseButton1Down:connect(funcion()
  115. local player = game.Players.LocalPlayer
  116. local mouse = player:GetMouse()
  117.  
  118. -- Objects
  119.  
  120. local ScreenGui = Instance.new("ScreenGui")
  121. local TextButton = Instance.new("TextButton")
  122. local On = Instance.new("StringValue")
  123.  
  124. -- Properties
  125.  
  126. ScreenGui.Parent = player.PlayerGui
  127.  
  128. TextButton.Parent = ScreenGui
  129. TextButton.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  130. TextButton.BorderSizePixel = 0
  131. TextButton.Position = UDim2.new(0, 0, 0.455743879, 0)
  132. TextButton.Size = UDim2.new(0, 186, 0, 35)
  133. TextButton.Font = Enum.Font.SourceSans
  134. TextButton.Text = "Btools (Off)"
  135. TextButton.TextColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  136. TextButton.TextScaled = true
  137. TextButton.TextSize = 14
  138. TextButton.TextWrapped = true
  139.  
  140.  
  141. On.Parent = TextButton
  142. On.Value = "Off"
  143.  
  144. -- Scripts
  145.  
  146. TextButton.MouseButton1Up:Connect(function()
  147. if On.Value == "Off" then
  148. On.Value = "On"
  149. TextButton.Text = "Btools (On)"
  150. else
  151. On.Value = "Off"
  152. TextButton.Text = "Btools (Off)"
  153. end
  154. end)
  155.  
  156. mouse.Button1Up:Connect(function()
  157. if On.Value == "Off" then
  158. print('btools off')
  159. else
  160. if mouse.Target.Locked == true then
  161. mouse.Target:Destroy()
  162. else
  163. mouse.Target:Destroy()
  164. end
  165. end
  166. end)
  167. end)
  168.  
  169. openmenu.Name = "openmenu"
  170. openmenu.Parent = ScreenGui
  171. openmenu.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  172. openmenu.Position = UDim2.new(0.850311816, 0, 0.943143845, 0)
  173. openmenu.Size = UDim2.new(0, 120, 0, 21)
  174.  
  175. open.Name = "open"
  176. open.Parent = openmenu
  177. open.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
  178. open.Position = UDim2.new(-0.00400000811, 0, -0.0122861862, 0)
  179. open.Size = UDim2.new(0, 120, 0, 21)
  180. open.Font = Enum.Font.Cartoon
  181. open.Text = "Open"
  182. open.TextColor3 = Color3.fromRGB(0, 0, 0)
  183. open.TextSize = 20.000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement