Advertisement
SubScripts

Test

May 15th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.21 KB | None | 0 0
  1. -- Instances:
  2. local hack = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local TextBox = Instance.new("TextBox")
  5. local TextButton = Instance.new("TextButton")
  6. --Properties:
  7. hack.Name = "hack"
  8. hack.Parent = owner:WaitForChild("PlayerGui")
  9.  
  10. Frame.Parent = hack
  11. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  12. Frame.Size = UDim2.new(0, 161, 0, 154)
  13.  
  14. TextBox.Parent = Frame
  15. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  16. TextBox.Size = UDim2.new(0, 151, 0, 100)
  17. TextBox.Font = Enum.Font.SourceSans
  18. TextBox.Text = ""
  19. TextBox.TextColor3 = Color3.new(0, 0, 0)
  20. TextBox.TextSize = 14
  21.  
  22. TextButton.Parent = Frame
  23. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  24. TextButton.Position = UDim2.new(0, 0, 0.675324678, 0)
  25. TextButton.Size = UDim2.new(0, 161, 0, 44)
  26. TextButton.Font = Enum.Font.SourceSans
  27. TextButton.Text = "Run"
  28. TextButton.TextColor3 = Color3.new(0, 0, 0)
  29. TextButton.TextSize = 14
  30. -- Scripts:
  31. function SCRIPT_RZPF88_FAKESCRIPT() -- TextButton.Script
  32.     local script = Instance.new('Script')
  33.     script.Parent = TextButton
  34.     script.Parent.MouseButton1Click:Connect(function()
  35.         loadstring(script.Parent.Parent.TextBox.Text)
  36.     end)
  37.  
  38. end
  39. coroutine.resume(coroutine.create(SCRIPT_RZPF88_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement