Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local admin = Instance.new("ScreenGui")
  7. local main = Instance.new("Frame")
  8. local name = Instance.new("TextLabel")
  9. local exitbutton = Instance.new("TextButton")
  10. local commands = Instance.new("ScrollingFrame")
  11. local fly = Instance.new("TextLabel")
  12.  
  13. --Properties:
  14.  
  15. admin.Name = "admin"
  16. admin.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17.  
  18. main.Name = "main"
  19. main.Parent = admin
  20. main.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  21. main.BorderColor3 = Color3.new(0.976471, 0.694118, 0.0352941)
  22. main.BorderSizePixel = 6
  23. main.Position = UDim2.new(0.303645819, 0, 0.297297299, 0)
  24. main.Size = UDim2.new(0, 687, 0, 234)
  25. main.Visible = false
  26.  
  27. name.Name = "name"
  28. name.Parent = main
  29. name.BackgroundColor3 = Color3.new(0.976471, 0.694118, 0.0352941)
  30. name.BorderSizePixel = 0
  31. name.Position = UDim2.new(-0.00873362459, 0, -0.0940170959, 0)
  32. name.Size = UDim2.new(0, 699, 0, 32)
  33. name.Font = Enum.Font.SourceSansBold
  34. name.Text = " πŸŽƒsp00ky admin πŸŽƒ"
  35. name.TextColor3 = Color3.new(0, 0, 0)
  36. name.TextSize = 27
  37.  
  38. exitbutton.Name = "exit button"
  39. exitbutton.Parent = main
  40. exitbutton.BackgroundColor3 = Color3.new(1, 0.439216, 0.376471)
  41. exitbutton.BorderSizePixel = 0
  42. exitbutton.Position = UDim2.new(0.959243119, 0, -0.0811965764, 0)
  43. exitbutton.Size = UDim2.new(0, 28, 0, 26)
  44. exitbutton.Font = Enum.Font.Cartoon
  45. exitbutton.Text = ""
  46. exitbutton.TextColor3 = Color3.new(0, 0, 0)
  47. exitbutton.TextSize = 14
  48.  
  49. commands.Name = "commands"
  50. commands.Parent = main
  51. commands.BackgroundColor3 = Color3.new(0.196078, 0.192157, 0.196078)
  52. commands.BorderSizePixel = 0
  53. commands.Position = UDim2.new(0.343522549, 0, 0.0897435918, 0)
  54. commands.Size = UDim2.new(0, 423, 0, 205)
  55.  
  56. fly.Name = "fly"
  57. fly.Parent = commands
  58. fly.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  59. fly.BorderSizePixel = 0
  60. fly.Position = UDim2.new(0.0212765951, 0, 0.0240409207, 0)
  61. fly.Size = UDim2.new(0, 393, 0, 26)
  62. fly.Font = Enum.Font.SourceSansBold
  63. fly.Text = "1:Fly | makes you fly"
  64. fly.TextColor3 = Color3.new(1, 1, 1)
  65. fly.TextSize = 15
  66. fly.TextXAlignment = Enum.TextXAlignment.Left
  67.  
  68. -- Scripts:
  69.  
  70. local function LKZCF_fake_script() -- main.blur/open
  71. --local script = Instance.new('LocalScript', main)
  72.  
  73. local frame = main--script.Parent.Parent.main
  74. local hotkey = Enum.KeyCode.RightControl
  75. local UIS = game:GetService("UserInputService")
  76. local open = true
  77. blur = Instance.new("BlurEffect", game.Lighting)
  78. blur.Name = "Blur"
  79. blur.Size = 0
  80. UIS.InputBegan:Connect(function(key, gp)
  81. if key.KeyCode == hotkey then
  82. if open == true then
  83. blur.Size = 0
  84. open = false
  85. frame.Visible = open
  86. elseif open == false then
  87. blur.Size = 35
  88. open = true
  89. frame.Visible = open
  90. end
  91. end
  92. end)
  93.  
  94.  
  95.  
  96.  
  97. end
  98. coroutine.wrap(LKZCF_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement