Advertisement
HaxRoblox

LuaMemberRoblox

Oct 1st, 2016
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2. Char = game.Players.LocalPlayer.Character
  3.  
  4.  
  5. local H = Instance.new('Part' ,game.Workspace)
  6. H.Size = Vector3.new(3,3,3)
  7. H.Anchored = true
  8. H.CanCollide = false
  9. H.Name = 'LuaStaff'
  10. local B = Instance.new('Decal' ,game.Workspace.LuaStaff)
  11. B.Name = 'LuaLogo'
  12. B.Face = 'Bottom'
  13. B.Texture = 'rbxassetid://513633987'
  14. local F = Instance.new('Decal' ,game.Workspace.LuaStaff)
  15. F.Name = 'LuaLogo'
  16. F.Face = 'Front'
  17. F.Texture = 'rbxassetid://513633987'
  18. local L = Instance.new('Decal' ,game.Workspace.LuaStaff)
  19. L.Name = 'LuaLogo'
  20. L.Face = 'Left'
  21. L.Texture = 'rbxassetid://513633987'
  22. local R = Instance.new('Decal' ,game.Workspace.LuaStaff)
  23. R.Name = 'LuaLogo'
  24. R.Face = 'Right'
  25. R.Texture = 'rbxassetid://513633987'
  26. local Ba = Instance.new('Decal' ,game.Workspace.LuaStaff)
  27. Ba.Name = 'LuaLogo'
  28. Ba.Face = 'Back'
  29. Ba.Texture = 'rbxassetid://513633987'
  30. local T = Instance.new('Decal' ,game.Workspace.LuaStaff)
  31. T.Name = 'LuaLogo'
  32. T.Face = 'Top'
  33. T.Texture = 'rbxassetid://513633987'
  34. local N = Instance.new('SelectionBox' ,game.Workspace.LuaStaff)
  35. N.Adornee = game.Workspace.LuaStaff
  36. N.Color3 = Color3.new(0, 176, 225)
  37. N.LineThickness = 0.05
  38.  
  39. while true do wait(0.0001)
  40. H.Position = Char.Head.Position + Vector3.new(0,4,0)
  41. H.Rotation = H.Rotation + Vector3.new(-3,0,3)
  42. if Char.Humanoid.Health <1 then
  43. game.Workspace.LuaStaff:Destroy()
  44. end
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement