Advertisement
BobMe

Untitled

Oct 13th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. local plr = game.Players.LocalPlayer
  2. local Player = plr.Character
  3.  
  4. if Player.Humanoid.Parent ~= game.workspace.Memo1332 then
  5. print("No sir! Only the edited owner is allowed to use this, yep, yep!")
  6. Player.Humanoid.Health = 0
  7. end
  8.  
  9. if Player.Humanoid.Parent == game.workspace.Memo1332 then
  10. print("Welcome back to rammer's Vis, Memo!")
  11. end
  12.  
  13. local t = tick()
  14. local rot = 0
  15. local blurs = {}
  16. cube = Instance.new("Part", Player)
  17. cube.Size = Vector3.new(.5, .5, .5)
  18. cube.Shape = "Block"
  19. cube.Material = "Neon"
  20. cube.Anchored = true
  21. cube.CanCollide = true
  22. cube.BrickColor = BrickColor.new("Black")
  23. cube.TopSurface, cube.BottomSurface, cube.LeftSurface, cube.RightSurface, cube.FrontSurface, cube.BottomSurface = 10, 10, 10, 10, 10, 10
  24. oldSize = cube.Size
  25. song = Instance.new("Sound", cube)
  26. song.Volume = 1
  27. song.Pitch = 1
  28. song.Looped = true
  29. game:GetService("RunService").RenderStepped:connect(function()
  30. t = t + 0.5
  31. rot = rot + 1
  32. if rot == 360 then
  33. rot = 0
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement