Sleydi

Demon gui

Jul 23rd, 2019
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.35 KB | None | 0 0
  1. -- gui made by sleydi
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Open = Instance.new("Frame")
  4. local Demon = Instance.new("TextButton")
  5. local Main = Instance.new("Frame")
  6. local Frame = Instance.new("Frame")
  7. local TextLabel = Instance.new("TextLabel")
  8. local Close = Instance.new("TextButton")
  9. local Speed30 = Instance.new("TextButton")
  10. local Speed100 = Instance.new("TextButton")
  11. local Admin = Instance.new("TextButton")
  12. --Properties:
  13. ScreenGui.Parent = game.CoreGui
  14. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. Open.Name = "Open"
  17. Open.Parent = ScreenGui
  18. Open.Active = true
  19. Open.BackgroundColor3 = Color3.new(1, 0.333333, 0.498039)
  20. Open.Position = UDim2.new(-3.17891455e-08, 0, 0.489864856, 0)
  21. Open.Size = UDim2.new(0, 92, 0, 33)
  22. Demon.MouseButton1Down:connect(function()
  23. Main.Visible = true
  24. Main.Visible = true
  25. end)
  26.  
  27.  
  28. Demon.Name = "Demon"
  29. Demon.Parent = Open
  30. Demon.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  31. Demon.Position = UDim2.new(0.0652168915, 0, 0.151515156, 0)
  32. Demon.Size = UDim2.new(0, 86, 0, 28)
  33. Demon.Font = Enum.Font.SciFi
  34. Demon.Text = "DEMON"
  35. Demon.TextColor3 = Color3.new(0, 0, 0)
  36. Demon.TextScaled = true
  37. Demon.TextSize = 14
  38. Demon.TextWrapped = true
  39.  
  40. Main.Name = "Main"
  41. Main.Parent = ScreenGui
  42. Main.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  43. Main.Position = UDim2.new(0.138541654, 0, 0.160472974, 0)
  44. Main.Size = UDim2.new(0, 693, 0, 423)
  45. Main.Visible = false
  46. Main.Draggable = true
  47.  
  48. Frame.Parent = Main
  49. Frame.BackgroundColor3 = Color3.new(1, 0, 0)
  50. Frame.Size = UDim2.new(0, 693, 0, 53)
  51.  
  52. TextLabel.Parent = Frame
  53. TextLabel.BackgroundColor3 = Color3.new(1, 0, 0)
  54. TextLabel.Size = UDim2.new(0, 309, 0, 50)
  55. TextLabel.Font = Enum.Font.GothamBold
  56. TextLabel.Text = "DEMON GUI V1.0"
  57. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  58. TextLabel.TextScaled = true
  59. TextLabel.TextSize = 14
  60. TextLabel.TextWrapped = true
  61.  
  62. Close.Name = "Close"
  63. Close.Parent = Main
  64. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  65. Close.BackgroundTransparency = 1
  66. Close.BorderSizePixel = 0
  67. Close.Position = UDim2.new(0.920634925, 0, 0, 0)
  68. Close.Size = UDim2.new(0, 55, 0, 53)
  69. Close.Font = Enum.Font.SciFi
  70. Close.Text = "X"
  71. Close.TextColor3 = Color3.new(0, 0, 0)
  72. Close.TextScaled = true
  73. Close.TextSize = 14
  74. Close.TextWrapped = true
  75. Close.MouseButton1Down:connect(function()
  76. Open.Visible = true
  77. Main.Visible = false
  78. end)
  79.  
  80. Speed30.Name = "Speed 30"
  81. Speed30.Parent = Main
  82. Speed30.BackgroundColor3 = Color3.new(1, 0, 0)
  83. Speed30.BorderSizePixel = 3
  84. Speed30.Position = UDim2.new(0.0404040366, 0, 0.153664306, 0)
  85. Speed30.Size = UDim2.new(0, 141, 0, 56)
  86. Speed30.Font = Enum.Font.GothamBold
  87. Speed30.Text = "Speed 30"
  88. Speed30.TextColor3 = Color3.new(0, 0, 0)
  89. Speed30.TextScaled = true
  90. Speed30.TextSize = 14
  91. Speed30.TextWrapped = true
  92. Speed30.MouseButton1Down:connect(function()
  93. _G.WalkSpeed = 30
  94. local run = game:GetService('RunService')
  95. local players = game:GetService('Players')
  96.  
  97. if _G.InitWS ~= true then
  98. run.Heartbeat:connect(function()
  99. players.LocalPlayer.Character.Humanoid.WalkSpeed = _G.WalkSpeed
  100. end)
  101. _G.InitWS = true
  102. end
  103. end)
  104.  
  105. Speed100.Name = "Speed 100"
  106. Speed100.Parent = Main
  107. Speed100.BackgroundColor3 = Color3.new(1, 0, 0)
  108. Speed100.BorderSizePixel = 3
  109. Speed100.Position = UDim2.new(0.0404040366, 0, 0.31205675, 0)
  110. Speed100.Size = UDim2.new(0, 141, 0, 56)
  111. Speed100.Font = Enum.Font.GothamBold
  112. Speed100.Text = "Speed 100"
  113. Speed100.TextColor3 = Color3.new(0, 0, 0)
  114. Speed100.TextScaled = true
  115. Speed100.TextSize = 14
  116. Speed100.TextWrapped = true
  117. Speed100.MouseButton1Down:connect(function()
  118. _G.WalkSpeed = 100
  119. local run = game:GetService('RunService')
  120. local players = game:GetService('Players')
  121.  
  122. if _G.InitWS ~= true then
  123. run.Heartbeat:connect(function()
  124. players.LocalPlayer.Character.Humanoid.WalkSpeed = _G.WalkSpeed
  125. end)
  126. _G.InitWS = true
  127. end
  128. end)
  129.  
  130. Admin.Name = "Admin"
  131. Admin.Parent = Main
  132. Admin.BackgroundColor3 = Color3.new(1, 0, 0)
  133. Admin.BorderSizePixel = 3
  134. Admin.Position = UDim2.new(0.0404040366, 0, 0.472813249, 0)
  135. Admin.Size = UDim2.new(0, 141, 0, 56)
  136. Admin.Font = Enum.Font.GothamBold
  137. Admin.Text = "Admin"
  138. Admin.TextColor3 = Color3.new(0, 0, 0)
  139. Admin.TextScaled = true
  140. Admin.TextSize = 14
  141. Admin.TextWrapped = true
  142. Admin.MouseButton1Down:connect(function()
  143. loadstring(game:HttpGet(('https://pastebin.com/raw/pyzjWNhk'),true))()
  144. end)
  145.  
  146. -- gui made by sleydi)), good luck
Add Comment
Please, Sign In to add comment