Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextBox = Instance.new("TextBox")
  7. local execute = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9. --Properties:
  10. ScreenGui.Parent = game.CoreGui
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.Active = true
  15. Frame.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  16. Frame.Position = UDim2.new(0.550623059, 0, 0.0716147125, 0)
  17. Frame.Size = UDim2.new(0, 395, 0, 209)
  18. Frame.Draggable = true
  19.  
  20. TextBox.Parent = Frame
  21. TextBox.BackgroundColor3 = Color3.new(0.333333, 0, 0.498039)
  22. TextBox.Size = UDim2.new(0, 395, 0, 87)
  23. TextBox.Font = Enum.Font.SourceSans
  24. TextBox.Text = ""
  25. TextBox.TextColor3 = Color3.new(0, 0, 0)
  26. TextBox.TextSize = 14
  27.  
  28. execute.Name = "execute"
  29. execute.Parent = Frame
  30. execute.BackgroundColor3 = Color3.new(0, 1, 1)
  31. execute.Position = UDim2.new(0, 0, 0.412703514, 0)
  32. execute.Size = UDim2.new(1.00000012, 0, 0.124000005, 0)
  33. execute.Font = Enum.Font.SourceSans
  34. execute.Text = "execute"
  35. execute.TextColor3 = Color3.new(0, 0, 0)
  36. execute.TextSize = 14
  37.  
  38. TextLabel.Parent = Frame
  39. TextLabel.BackgroundColor3 = Color3.new(0, 0.666667, 0.498039)
  40. TextLabel.Size = UDim2.new(0, 395, 0, 37)
  41. TextLabel.Font = Enum.Font.SourceSans
  42. TextLabel.Text = "Sp00ky's SS executor"
  43. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  44. TextLabel.TextScaled = true
  45. TextLabel.TextSize = 14
  46. TextLabel.TextWrapped = true
  47.  
  48. execute.MouseButton1Click:connect(function()
  49. game.ReplicatedStorage.RemoteEvent:FireServer(TextBox.Text)
  50. end)
  51.  
  52. local remote = script.Parent.gay -- your remote
  53.  
  54. remote.OnServerEvent:Connect(function(idk, lol) -- function for your executor
  55. require(script.Loadstring)(lol)() -- this code so it actally executes requires and things
  56. end)-- end) meaning this is the end of the script return function
  57.  
  58. local execute = script.Parent.Parent.execute
  59. local text = script.Parent.Parent("Put require here!")
  60. local remote = script.Parent.gay
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement