Advertisement
JkleoMDS

Eofks GUI by me (WORKING SCRIPT EXUCUTOR)

Feb 7th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. ---don wana gut a sript exucutor?
  2. ---go to this link:https://www.roblox.com/library/1394793614/Eofks-Free-GUI
  3. -- Objects
  4.  
  5. local EOfks = Instance.new("ScreenGui")
  6. local Frame = Instance.new("Frame")
  7. local ScriptBox = Instance.new("TextBox")
  8. local Exucute = Instance.new("TextButton")
  9. local TextLabel = Instance.new("TextLabel")
  10.  
  11. -- Properties
  12.  
  13. EOfks.Name = "EOfks"
  14. EOfks.Parent = game.PlayerGui
  15.  
  16. Frame.Parent = EOfks
  17. Frame.BackgroundColor3 = Color3.new(0.333333, 0, 0.498039)
  18. Frame.Position = UDim2.new(0, 46, 0, 78)
  19. Frame.Size = UDim2.new(0, 234, 0, 350)
  20.  
  21. ScriptBox.Name = "ScriptBox"
  22. ScriptBox.Parent = Frame
  23. ScriptBox.BackgroundColor3 = Color3.new(1, 1, 1)
  24. ScriptBox.Position = UDim2.new(0, 17, 0, 33)
  25. ScriptBox.Size = UDim2.new(0, 200, 0, 183)
  26. ScriptBox.Font = Enum.Font.SourceSans
  27. ScriptBox.Text = "Enter Script Here"
  28. ScriptBox.TextSize = 14
  29.  
  30. Exucute.Name = "Exucute"
  31. Exucute.Parent = Frame
  32. Exucute.BackgroundColor3 = Color3.new(0, 1, 0)
  33. Exucute.Position = UDim2.new(0, 17, 0, 229)
  34. Exucute.Size = UDim2.new(0, 200, 0, 28)
  35. Exucute.AutoButtonColor = false
  36. Exucute.Font = Enum.Font.SourceSans
  37. Exucute.Text = "Exucute"
  38. Exucute.TextSize = 14
  39.  
  40.  
  41. TextLabel.Parent = Frame
  42. TextLabel.BackgroundColor3 = Color3.new(0, 1, 1)
  43. TextLabel.Size = UDim2.new(0, 234, 0, 31)
  44. TextLabel.Font = Enum.Font.SourceSans
  45. TextLabel.Text = "EFOKS LEAKED BY JKLEOMDS"
  46. TextLabel.TextSize = 14
  47.  
  48. Exucute.MouseButton1Click:connect(function()
  49. loadstring(script.Parent.Parent.ScriptBox.Text)()
  50. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement