NasuiAlexandra

Whitelist GUI *NOT FE*

Aug 4th, 2022
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.83 KB | None | 0 0
  1.  
  2.  
  3. local WhitelistGUINOTFE = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local title = Instance.new("TextLabel")
  6. local credit = Instance.new("TextLabel")
  7. local MainScrollingFrame = Instance.new("ScrollingFrame")
  8. local decalspam = Instance.new("TextButton")
  9. local setskybox = Instance.new("TextButton")
  10. local fly = Instance.new("TextButton")
  11. local infiniteyield = Instance.new("TextButton")
  12.  
  13.  
  14.  
  15. WhitelistGUINOTFE.Name = "Whitelist GUI **NOT FE**"
  16. WhitelistGUINOTFE.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17. WhitelistGUINOTFE.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18. WhitelistGUINOTFE.ResetOnSpawn = false
  19.  
  20. Main.Name = "Main"
  21. Main.Parent = WhitelistGUINOTFE
  22. Main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  23. Main.BorderSizePixel = 0
  24. Main.Position = UDim2.new(0.278873235, 0, 0.188118815, 0)
  25. Main.Size = UDim2.new(0, 314, 0, 314)
  26. Main.Active = true
  27. Main.Draggable = true
  28.  
  29. title.Name = "title"
  30. title.Parent = Main
  31. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  32. title.BackgroundTransparency = 1.000
  33. title.Size = UDim2.new(0, 314, 0, 43)
  34. title.Font = Enum.Font.SciFi
  35. title.Text = "Whitelist GUI"
  36. title.TextColor3 = Color3.fromRGB(0, 0, 0)
  37. title.TextSize = 41.000
  38.  
  39. credit.Name = "credit"
  40. credit.Parent = Main
  41. credit.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  42. credit.BackgroundTransparency = 1.000
  43. credit.Position = UDim2.new(0, 0, 0.89808917, 0)
  44. credit.Size = UDim2.new(0, 314, 0, 32)
  45. credit.Font = Enum.Font.SciFi
  46. credit.Text = "Credit by: WhitelistNull"
  47. credit.TextColor3 = Color3.fromRGB(0, 0, 0)
  48. credit.TextSize = 32.000
  49.  
  50. MainScrollingFrame.Name = "MainScrollingFrame"
  51. MainScrollingFrame.Parent = Main
  52. MainScrollingFrame.Active = true
  53. MainScrollingFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  54. MainScrollingFrame.BackgroundTransparency = 1.000
  55. MainScrollingFrame.BorderSizePixel = 0
  56. MainScrollingFrame.Position = UDim2.new(0, 0, 0.13694267, 0)
  57. MainScrollingFrame.Size = UDim2.new(0, 314, 0, 239)
  58.  
  59. decalspam.Name = "decalspam"
  60. decalspam.Parent = MainScrollingFrame
  61. decalspam.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  62. decalspam.BackgroundTransparency = 1.000
  63. decalspam.BorderColor3 = Color3.fromRGB(27, 42, 53)
  64. decalspam.Position = UDim2.new(0.254777074, 0, 0, 0)
  65. decalspam.Size = UDim2.new(0, 154, 0, 45)
  66. decalspam.Font = Enum.Font.SciFi
  67. decalspam.Text = "Decal Spam"
  68. decalspam.TextColor3 = Color3.fromRGB(0, 0, 0)
  69. decalspam.TextSize = 26.000
  70.  
  71. function decalspamClick()
  72.     function exPro(root)
  73.         for _, v in pairs(root:GetChildren()) do
  74.             if v:IsA("Decal") and v.Texture ~= "http://www.roblox.com/asset/?id=2114473" then
  75.                 v.Parent = nil
  76.             elseif v:IsA("BasePart") then
  77.                 v.Material = "Plastic"
  78.                 v.Transparency = 0
  79.                 local One = Instance.new("Decal", v)
  80.                 local Two = Instance.new("Decal", v)
  81.                 local Three = Instance.new("Decal", v)
  82.                 local Four = Instance.new("Decal", v)
  83.                 local Five = Instance.new("Decal", v)
  84.                 local Six = Instance.new("Decal", v)
  85.                 One.Texture = "http://www.roblox.com/asset/?id=2114473"
  86.                 Two.Texture = "http://www.roblox.com/asset/?id=2114473"
  87.                 Three.Texture = "http://www.roblox.com/asset/?id=2114473"
  88.                 Four.Texture = "http://www.roblox.com/asset/?id=2114473"
  89.                 Five.Texture = "http://www.roblox.com/asset/?id=2114473"
  90.                 Six.Texture = "http://www.roblox.com/asset/?id=2114473"
  91.                 One.Face = "Front"
  92.                 Two.Face = "Back"
  93.                 Three.Face = "Right"
  94.                 Four.Face = "Left"
  95.                 Five.Face = "Top"
  96.                 Six.Face = "Bottom"
  97.             end
  98.             exPro(v)
  99.         end
  100.     end
  101.     function asdf(root)
  102.         for _, v in pairs(root:GetChildren()) do
  103.             asdf(v)
  104.         end
  105.     end
  106.     exPro(game.Workspace)
  107.     asdf(game.Workspace)
  108. end
  109.  
  110. decalspam.MouseButton1Down:connect(decalspamClick)
  111.  
  112. setskybox.Name = "setskybox"
  113. setskybox.Parent = MainScrollingFrame
  114. setskybox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  115. setskybox.BackgroundTransparency = 1.000
  116. setskybox.BorderColor3 = Color3.fromRGB(27, 42, 53)
  117. setskybox.Position = UDim2.new(0.254777074, 0, 0.11942675, 0)
  118. setskybox.Size = UDim2.new(0, 154, 0, 45)
  119. setskybox.Font = Enum.Font.SciFi
  120. setskybox.Text = "Set Skybox"
  121. setskybox.TextColor3 = Color3.fromRGB(0, 0, 0)
  122. setskybox.TextSize = 26.000
  123.  
  124. function setskyboxClick()
  125.     s = Instance.new("Sky")
  126.     s.Name = "Sky"
  127.     s.Parent = game.Lighting
  128.     s.SkyboxBk = "http://www.roblox.com/asset/?id=2114473"
  129.     s.SkyboxDn = "http://www.roblox.com/asset/?id=2114473"
  130.     s.SkyboxFt = "http://www.roblox.com/asset/?id=2114473"
  131.     s.SkyboxLf = "http://www.roblox.com/asset/?id=2114473"
  132.     s.SkyboxRt = "http://www.roblox.com/asset/?id=2114473"
  133.     s.SkyboxUp = "http://www.roblox.com/asset/?id=2114473"
  134.     game.Lighting.TimeOfDay = 12
  135. end
  136.  
  137. setskybox.MouseButton1Down:connect(setskyboxClick)
  138.  
  139. fly.Name = "fly"
  140. fly.Parent = MainScrollingFrame
  141. fly.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  142. fly.BackgroundTransparency = 1.000
  143. fly.BorderColor3 = Color3.fromRGB(27, 42, 53)
  144. fly.Position = UDim2.new(0.254777074, 0, 0.253184706, 0)
  145. fly.Size = UDim2.new(0, 154, 0, 45)
  146. fly.Font = Enum.Font.SciFi
  147. fly.Text = "Fly"
  148. fly.TextColor3 = Color3.fromRGB(0, 0, 0)
  149. fly.TextSize = 26.000
  150. fly.MouseButton1Down:Connect(function()
  151.     loadstring(game:HttpGet("https://pastebin.com/raw/QSN5v7Ta"))()
  152. end)
  153.  
  154. infiniteyield.Name = "infiniteyield"
  155. infiniteyield.Parent = MainScrollingFrame
  156. infiniteyield.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  157. infiniteyield.BackgroundTransparency = 1.000
  158. infiniteyield.BorderColor3 = Color3.fromRGB(27, 42, 53)
  159. infiniteyield.Position = UDim2.new(0.254777074, 0, 0.401273876, 0)
  160. infiniteyield.Size = UDim2.new(0, 154, 0, 45)
  161. infiniteyield.Font = Enum.Font.SciFi
  162. infiniteyield.Text = "Infinite Yield"
  163. infiniteyield.TextColor3 = Color3.fromRGB(0, 0, 0)
  164. infiniteyield.TextSize = 26.000
  165. infiniteyield.MouseButton1Down:Connect(function()
  166.     loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  167. end)
Add Comment
Please, Sign In to add comment