BingoIsaac

Untitled

Oct 27th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local a = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextButton = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. a.Name = "a"
  14. a.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. a.Enabled = false
  16.  
  17. Frame.Parent = a
  18. Frame.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  19. Frame.BorderSizePixel = 5
  20. Frame.Position = UDim2.new(0.278128952, 0, 0.406344414, 0)
  21. Frame.Size = UDim2.new(0, 350, 0, 124)
  22.  
  23. TextLabel.Parent = Frame
  24. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  25. TextLabel.BackgroundTransparency = 1
  26. TextLabel.Size = UDim2.new(0, 350, 0, 30)
  27. TextLabel.Font = Enum.Font.GothamSemibold
  28. TextLabel.Text = "Abort so u dont get banned"
  29. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  30. TextLabel.TextScaled = true
  31. TextLabel.TextSize = 14
  32. TextLabel.TextWrapped = true
  33.  
  34. TextButton.Parent = Frame
  35. TextButton.BackgroundColor3 = Color3.new(1, 0, 0)
  36. TextButton.BorderSizePixel = 0
  37. TextButton.Position = UDim2.new(0.214285716, 0, 0.387096763, 0)
  38. TextButton.Size = UDim2.new(0, 200, 0, 50)
  39. TextButton.Font = Enum.Font.GothamSemibold
  40. TextButton.Text = "Abort"
  41. TextButton.TextColor3 = Color3.new(0, 0, 0)
  42. TextButton.TextScaled = true
  43. TextButton.TextSize = 14
  44. TextButton.TextWrapped = true
  45.  
  46. -- Scripts:
  47.  
  48. local function JTTV_fake_script() -- TextButton.LocalScript
  49. local script = Instance.new('LocalScript', TextButton)
  50.  
  51. local player = game.Players.LocalPlayer
  52. script.Parent.MouseButton1Click:Connect(function()
  53. player:Kick("Successfully aborted. Hope you don't get banned.")
  54. end)
  55. end
  56. coroutine.wrap(JTTV_fake_script)()
  57. local function UAUF_fake_script() -- a.draggable
  58. local script = Instance.new('Script', a)
  59.  
  60. local frame = script.Parent.Frame -- change riskexeui to whatever frame you want to make draggable
  61.  
  62. frame.Draggable = true
  63. frame.Selectable = true
  64. frame.Active = true
  65. frame.RobloxLocked = false
  66. end
  67. coroutine.wrap(UAUF_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment