Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. if workspace.FilteringEnabled == true then
  2. game.StarterGui:SetCore('SendNotification', {Icon = "http://www.roblox.com/asset/?id=1986619360"; Duration = 5; Title='Filtering Enabled'; Text='Filtering is Enabled'})
  3. else
  4. game.StarterGui:SetCore('SendNotification', {Icon = "http://www.roblox.com/asset/?id=1986619360"; Duration = 5; Title='Filtering Disabled'; Text='Filtering is Disabled'})
  5. end
  6.  
  7.  
  8. --this script will give you a vashta logo on the bottom left of your screen
  9. function sandbox(var,func)
  10. local env = getfenv(func)
  11. local newenv = setmetatable({},{
  12. __index = function(self,k)
  13. if k=="script" then
  14. return var
  15. else
  16. return env[k]
  17. end
  18. end,
  19. })
  20. setfenv(func,newenv)
  21. return func
  22. end
  23. cors = {}
  24. mas = Instance.new("Model",game:GetService("Lighting"))
  25. ScreenGui0 = Instance.new("ScreenGui")
  26. ImageLabel1 = Instance.new("ImageLabel")
  27. ScreenGui0.Name = "Logo"
  28. ScreenGui0.Parent = mas
  29. ImageLabel1.Name = "img"
  30. ImageLabel1.Parent = ScreenGui0
  31. ImageLabel1.Position = UDim2.new(0.00210970547, 8, 0.948504984, -24)
  32. ImageLabel1.Size = UDim2.new(0, 48, 0, 48)
  33. ImageLabel1.BackgroundTransparency = 1
  34. ImageLabel1.Image = "rbxassetid://1986619360"
  35. for i,v in pairs(mas:GetChildren()) do
  36. v.Parent = game.CoreGui
  37. pcall(function() v:MakeJoints() end)
  38. end
  39. mas:Destroy()
  40. for i,v in pairs(cors) do
  41. spawn(function()
  42. pcall(v)
  43. end)
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement