Advertisement
Ham-Bur-Ger

Untitled

Jun 17th, 2021
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.88 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local MudGUI = Instance.new("ScreenGui")
  7. local lpFrame = Instance.new("Frame")
  8. local main = Instance.new("Frame")
  9. local button = Instance.new("TextButton")
  10. local notificationframe = Instance.new("Frame")
  11. local title = Instance.new("TextLabel")
  12. local text = Instance.new("TextLabel")
  13.  
  14. --Properties:
  15.  
  16. MudGUI.Name = "MudGUI"
  17. MudGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  18. MudGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19.  
  20. lpFrame.Name = "lpFrame"
  21. lpFrame.Parent = MudGUI
  22. lpFrame.BackgroundColor3 = Color3.fromRGB(226, 2, 255)
  23. lpFrame.BorderSizePixel = 0
  24. lpFrame.Position = UDim2.new(0.332356066, 0, 0.0260177087, 0)
  25. lpFrame.Selectable = true
  26. lpFrame.Size = UDim2.new(0, 147, 0, 29)
  27. lpFrame.ZIndex = 2
  28.  
  29. main.Name = "main"
  30. main.Parent = lpFrame
  31. main.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
  32. main.BackgroundTransparency = 0.350
  33. main.BorderSizePixel = 0
  34. main.ClipsDescendants = true
  35. main.Position = UDim2.new(0, 0, 1.18349695, 0)
  36. main.Size = UDim2.new(0, 147, 0, 271)
  37.  
  38. button.Name = "button"
  39. button.Parent = lpFrame
  40. button.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  41. button.BackgroundTransparency = 1.000
  42. button.Position = UDim2.new(0.0748299286, 0, 0.206896558, 0)
  43. button.Size = UDim2.new(0, 128, 0, 16)
  44. button.Font = Enum.Font.SourceSansBold
  45. button.Text = "Local Player"
  46. button.TextColor3 = Color3.fromRGB(255, 255, 255)
  47. button.TextSize = 25.000
  48. button.TextWrapped = true
  49.  
  50. notificationframe.Name = "notificationframe"
  51. notificationframe.Parent = MudGUI
  52. notificationframe.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
  53. notificationframe.BackgroundTransparency = 0.350
  54. notificationframe.BorderSizePixel = 0
  55. notificationframe.Position = UDim2.new(0.845000029, 0, 1.10000002, 0)
  56. notificationframe.Size = UDim2.new(0, 186, 0, 127)
  57.  
  58. title.Name = "title"
  59. title.Parent = notificationframe
  60. title.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
  61. title.BorderSizePixel = 0
  62. title.Size = UDim2.new(0, 186, 0, 33)
  63. title.Font = Enum.Font.SourceSansBold
  64. title.Text = "NOTIFICATION"
  65. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  66. title.TextSize = 25.000
  67. title.TextWrapped = true
  68.  
  69. text.Name = "text"
  70. text.Parent = notificationframe
  71. text.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  72. text.BackgroundTransparency = 1.000
  73. text.BorderSizePixel = 0
  74. text.Position = UDim2.new(0.0591397844, 0, 0.307086617, 0)
  75. text.Size = UDim2.new(0, 166, 0, 82)
  76. text.Font = Enum.Font.SourceSansLight
  77. text.Text = "Mud GUI has loaded, to toggle the gui on and off press 'P' on your keyboard"
  78. text.TextColor3 = Color3.fromRGB(255, 255, 255)
  79. text.TextSize = 20.000
  80. text.TextWrapped = true
  81.  
  82. -- Scripts:
  83.  
  84. local function AGFUGV_fake_script() -- lpFrame.LocalScript
  85. local script = Instance.new('LocalScript', lpFrame)
  86.  
  87. -- // Variables \\ --
  88.  
  89. local button = script.Parent.button
  90. local frame = script.Parent.main
  91.  
  92. -- // Script \\ --
  93.  
  94. button.MouseButton2Click:Connect(function()
  95. if frame.Size == UDim2.new(0, 147,0, 271) then
  96. frame:TweenSize(UDim2.new(0, 147,0, 0),"InOut","Linear",.3,false)
  97. else if frame.Size == UDim2.new(0, 147,0, 0) then
  98. frame:TweenSize(UDim2.new(0, 147,0, 271),"InOut","Linear",.3,false)
  99. end
  100. end
  101. end)
  102. end
  103. coroutine.wrap(AGFUGV_fake_script)()
  104. local function HOAXRX_fake_script() -- MudGUI.LocalScript
  105. local script = Instance.new('LocalScript', MudGUI)
  106.  
  107. local notify = script.Parent.notificationframe
  108. visible = notify.Visible == true
  109.  
  110. while visible == true do
  111. notify:TweenPosition(UDim2.new(0.871, 0,0.782, 0),"InOut","Linear",.5,true)
  112. wait (5) do
  113. notify:TweenPosition(UDim2.new(0.871, 0,1.1, 0),"InOut","Linear",.5,true)
  114. wait (5) do
  115. notify:Destroy()
  116. end
  117. end
  118. end
  119. end
  120. coroutine.wrap(HOAXRX_fake_script)()
  121. local function BPRT_fake_script() -- MudGUI.LocalScript
  122. local script = Instance.new('LocalScript', MudGUI)
  123.  
  124.  
  125. end
  126. coroutine.wrap(BPRT_fake_script)()
  127.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement