Advertisement
dwasdwa3wasddwa

Untitled

Apr 27th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.25 KB | None | 0 0
  1. local Devgui = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local Title = Instance.new("TextLabel")
  4. local Close = Instance.new("TextButton")
  5. local CopyCoards = Instance.new("TextButton")
  6. local PrintLocalChild = Instance.new("TextButton")
  7. local PrintWorkspaceChild = Instance.new("TextButton")
  8. local CopyDevForm = Instance.new("TextButton")
  9. local CopyLuaLearning = Instance.new("TextButton")
  10. --Properties:
  11. Devgui.Name = "Devgui"
  12. Devgui.Parent = game.CoreGui
  13. Devgui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. Main.Name = "Main"
  16. Main.Parent = Devgui
  17. Main.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  18. Main.Position = UDim2.new(0.300180823, 0, 0.289540827, 0)
  19. Main.Size = UDim2.new(0, 528, 0, 274)
  20.  
  21. Title.Name = "Title"
  22. Title.Parent = Main
  23. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  24. Title.BackgroundTransparency = 1
  25. Title.Size = UDim2.new(0, 265, 0, 31)
  26. Title.Font = Enum.Font.SourceSansBold
  27. Title.Text = "PowerX Developer Gui"
  28. Title.TextColor3 = Color3.new(1, 0.666667, 0)
  29. Title.TextScaled = true
  30. Title.TextSize = 14
  31. Title.TextWrapped = true
  32.  
  33. Close.Name = "Close"
  34. Close.Parent = Main
  35. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  36. Close.BackgroundTransparency = 1
  37. Close.Position = UDim2.new(0.954545438, 0, 0, 0)
  38. Close.Size = UDim2.new(0, 24, 0, 23)
  39. Close.Font = Enum.Font.SourceSansSemibold
  40. Close.Text = "x"
  41. Close.TextColor3 = Color3.new(1, 0.666667, 0)
  42. Close.TextScaled = true
  43. Close.TextSize = 14
  44. Close.TextWrapped = true
  45. Close.MouseButton1Down:connect(function()
  46. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  47. Text = "DevGui: Thank you for using DevGui! You will now be returned to PowerX. I hope you enjoy it ".. game.Players.LocalPlayer.Name.. "!";
  48. Font = Enum.Font.SourceSansBold;
  49. Color = Color3.new(255, 170, 0);
  50. FontSize = Enum.FontSize.Size96;
  51. })
  52. game.CoreGui.Devgui:Destroy()
  53. wait(1)
  54. game.CoreGui.MainTheme.Main.Visible = true
  55. end)
  56.  
  57. CopyCoards.Name = "CopyCoards"
  58. CopyCoards.Parent = Main
  59. CopyCoards.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  60. CopyCoards.BorderColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  61. CopyCoards.BorderSizePixel = 2
  62. CopyCoards.Position = UDim2.new(0.0511363633, 0, 0.204379559, 0)
  63. CopyCoards.Size = UDim2.new(0, 170, 0, 40)
  64. CopyCoards.Font = Enum.Font.SourceSansSemibold
  65. CopyCoards.Text = "CopyCoords"
  66. CopyCoards.TextColor3 = Color3.new(1, 0.666667, 0)
  67. CopyCoards.TextScaled = true
  68. CopyCoards.TextSize = 14
  69. CopyCoards.TextWrapped = true
  70. CopyCoards.MouseButton1Down:connect(function()
  71. print(game.Players.LocalPlayer.Character.HumanoidRootPart.Position)
  72. setclipboard(tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position))
  73. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  74. Text = "DevGui: Copied Position to clipboard. If your exploit doesnt support this, then check f9 to see them. Enjoy!";
  75. Font = Enum.Font.SourceSansBold;
  76. Color = Color3.new(255, 170, 0);
  77. FontSize = Enum.FontSize.Size96;
  78. })
  79. end)
  80.  
  81. PrintLocalChild.Name = "PrintLocalChild"
  82. PrintLocalChild.Parent = Main
  83. PrintLocalChild.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  84. PrintLocalChild.BorderColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  85. PrintLocalChild.BorderSizePixel = 2
  86. PrintLocalChild.Position = UDim2.new(0.0511363633, 0, 0.401459843, 0)
  87. PrintLocalChild.Size = UDim2.new(0, 226, 0, 40)
  88. PrintLocalChild.Font = Enum.Font.SourceSansSemibold
  89. PrintLocalChild.Text = "PrintLocalDescendants"
  90. PrintLocalChild.TextColor3 = Color3.new(1, 0.666667, 0)
  91. PrintLocalChild.TextScaled = true
  92. PrintLocalChild.TextSize = 14
  93. PrintLocalChild.TextWrapped = true
  94. PrintLocalChild.MouseButton1Down:connect(function()
  95. local ting = game.Players.LocalPlayer:GetChildren()
  96.  
  97. for i,v in pairs(ting) do
  98. warn(i, v)
  99. end
  100. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  101. Text = "DevGui: Printed! Check f9 to see them ".. game.Players.LocalPlayer.Name;
  102. Font = Enum.Font.SourceSansBold;
  103. Color = Color3.new(255, 170, 0);
  104. FontSize = Enum.FontSize.Size96;
  105. })
  106. end)
  107.  
  108. PrintWorkspaceChild.Name = "PrintWorkspaceChild"
  109. PrintWorkspaceChild.Parent = Main
  110. PrintWorkspaceChild.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  111. PrintWorkspaceChild.BorderColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  112. PrintWorkspaceChild.BorderSizePixel = 2
  113. PrintWorkspaceChild.Position = UDim2.new(0.0511363633, 0, 0.598540127, 0)
  114. PrintWorkspaceChild.Size = UDim2.new(0, 226, 0, 40)
  115. PrintWorkspaceChild.Font = Enum.Font.SourceSansSemibold
  116. PrintWorkspaceChild.Text = "PrintWorkspaceDescendants"
  117. PrintWorkspaceChild.TextColor3 = Color3.new(1, 0.666667, 0)
  118. PrintWorkspaceChild.TextScaled = true
  119. PrintWorkspaceChild.TextSize = 14
  120. PrintWorkspaceChild.TextWrapped = true
  121. PrintWorkspaceChild.MouseButton1Down:connect(function()
  122. local ting2 = game.workspace:GetChildren()
  123.  
  124. for i,v in pairs(ting2) do
  125. warn(i, v)
  126. end
  127. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  128. Text = "DevGui: Printed! Check f9 to see them ".. game.Players.LocalPlayer.Name;
  129. Font = Enum.Font.SourceSansBold;
  130. Color = Color3.new(255, 170, 0);
  131. FontSize = Enum.FontSize.Size96;
  132. })
  133. end)
  134.  
  135. CopyDevForm.Name = "CopyDevForm"
  136. CopyDevForm.Parent = Main
  137. CopyDevForm.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  138. CopyDevForm.BorderColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  139. CopyDevForm.BorderSizePixel = 2
  140. CopyDevForm.Position = UDim2.new(0.604166687, 0, 0.204379559, 0)
  141. CopyDevForm.Size = UDim2.new(0, 170, 0, 40)
  142. CopyDevForm.Font = Enum.Font.SourceSansSemibold
  143. CopyDevForm.Text = "DevFormLink"
  144. CopyDevForm.TextColor3 = Color3.new(1, 0.666667, 0)
  145. CopyDevForm.TextScaled = true
  146. CopyDevForm.TextSize = 14
  147. CopyDevForm.TextWrapped = true
  148. CopyDevForm.MouseButton1Down:connect(function()
  149. print("https://devforum.roblox.com/")
  150. setclipboard(tostring("https://devforum.roblox.com/"))
  151. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  152. Text = "DevGui: Copied Link to clipboard. If your exploit doesnt support this, then check f9 to see them. Enjoy!";
  153. Font = Enum.Font.SourceSansBold;
  154. Color = Color3.new(255, 170, 0);
  155. FontSize = Enum.FontSize.Size96;
  156. })
  157. end)
  158.  
  159. CopyLuaLearning.Name = "CopyLuaLearning"
  160. CopyLuaLearning.Parent = Main
  161. CopyLuaLearning.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  162. CopyLuaLearning.BorderColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  163. CopyLuaLearning.BorderSizePixel = 2
  164. CopyLuaLearning.Position = UDim2.new(0.604166687, 0, 0.401459873, 0)
  165. CopyLuaLearning.Size = UDim2.new(0, 170, 0, 40)
  166. CopyLuaLearning.Font = Enum.Font.SourceSansSemibold
  167. CopyLuaLearning.Text = "LuaLearningLink"
  168. CopyLuaLearning.TextColor3 = Color3.new(1, 0.666667, 0)
  169. CopyLuaLearning.TextScaled = true
  170. CopyLuaLearning.TextSize = 14
  171. CopyLuaLearning.TextWrapped = true
  172. CopyLuaLearning.MouseButton1Down:connect(function()
  173. print("https://bit.ly/2VzfShE")
  174. setclipboard(tostring("https://bit.ly/2VzfShE"))
  175. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  176. Text = "DevGui: Copied Link to clipboard. If your exploit doesnt support this, then check f9 to see them. Enjoy!";
  177. Font = Enum.Font.SourceSansBold;
  178. Color = Color3.new(255, 170, 0);
  179. FontSize = Enum.FontSize.Size96;
  180. })
  181. end)
  182. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement