Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. MainColor = "Bright blue"
  2. Name = "xSoulStealerx"
  3.  
  4. Plrs = game:GetService("Players")
  5.  
  6. me = Plrs[Name]
  7. char = me.Character
  8. Modelname = "xDragon"
  9. PetName = "xDragon"
  10. Toolname = "Dragon"
  11. Surfaces = {"FrontSurface", "BackSurface", "TopSurface", "BottomSurface", "LeftSurface", "RightSurface"}
  12. necko = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  13. selected = false
  14. Hurt = false
  15. Deb = true
  16. Able = true
  17. Prop = {Damage = 30}
  18.  
  19. ToolIcon = ""
  20. MouseIc = ""
  21. MouseDo = ""
  22.  
  23. Add = {
  24. Sphere = function(P)
  25. local m = Instance.new("SpecialMesh",P)
  26. m.MeshType = "Sphere"
  27. return m
  28. end,
  29. BF = function(P)
  30. local bf = Instance.new("BodyForce",P)
  31. bf.force = Vector3.new(0, P:GetMass()*187, 0)
  32. return bf
  33. end,
  34. BP = function(P)
  35. local bp = Instance.new("BodyPosition",P)
  36. bp.maxForce = Vector3.new(math.huge, 0, math.huge)
  37. bp.P = 14000
  38. return bp
  39. end,
  40. BG = function(P)
  41. local bg = Instance.new("BodyGyro",P)
  42. bg.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  43. bg.P = 14000
  44. return bg
  45. end,
  46. Mesh = function(P, ID, x, y, z)
  47. local m = Instance.new("SpecialMesh")
  48. m.MeshId = ID
  49. m.Scale = Vector3.new(x, y, z)
  50. m.Parent = P
  51. return m
  52. end,
  53. Sound = function(P, ID, vol, pitch)
  54. local s = Instance.new("Sound")
  55. s.SoundId = ID
  56. s.Volume = vol
  57. s.Pitch = pitch
  58. s.Parent = P
  59. return s
  60. end
  61. }
  62.  
  63. function find(tab, arg)
  64. local ah = nil
  65. for i,v in pairs(tab) do
  66. if v == arg then
  67. ah = v
  68. end
  69. end
  70. return ah
  71. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement