Advertisement
Guest User

Untitled

a guest
May 28th, 2018
2,201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1.  
  2. Script 1 - The Levitation Script
  3. local Character = "PUT YOUR NAME HERE"
  4. local lev = 236 / 1.2
  5. local grav = .7
  6.  
  7. function dataGetMass(number)
  8. local totalMass = 0
  9. local p = workspace[Character]:GetChildren()
  10.  
  11. for i = 1, #p do
  12.  
  13. if p[i]:IsA("Part") == true then
  14. totalMass = totalMass + p[i]:GetMass()
  15.  
  16. elseif p[i]:IsA("Hat") == true then
  17. totalMass = totalMass + p[i].Handle:GetMass()
  18.  
  19. end
  20. end
  21.  
  22. return totalMass
  23.  
  24. end
  25.  
  26. local bf = Instance.new("BodyForce")
  27. bf.Parent = game.Workspace[Character]Head
  28. bf.force = Vector3.new(0, dataGetMass(number) * lev * grav, 0)
  29. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  30. Script 2 - The Invisibility Script
  31. local Character = "PUT YOUR NAME HERE"
  32. for i, v in ipairs(workspace[Character]:GetChildren()) do
  33. if v:IsA("Hat") == true then
  34. v.Handle.Transparency = 1
  35. end
  36. end
  37.  
  38. if workspace[Character]Head:FindFirstChild("face") ~= nil then
  39. workspace[Character]Head.face.Texture = ""
  40. elseif workspace[Character]Head:FindFirstChild("face") == nil then
  41. print("No face detected. O_O")
  42. end
  43.  
  44. if workspace[Character]:FindFirstChild("Shirt Graphic") ~= nil then
  45. workspace[Character]Torso.roblox.Texture = ""
  46. elseif p == nil then
  47. print("No Shirt Grpahic detected.")
  48. end
  49.  
  50. for i, v in ipairs(workspace[Character]:GetChildren()) do
  51. if v:IsA("Part") == true or v:IsA("TrussPart") == true then
  52. v.Transparency = 1
  53. end
  54. end
  55. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  56. Script 3 - The Invincibility Script
  57. local Character = "whydopeopelfly"
  58. local f = Instance.new("ForceField")
  59. f.Parent = workspace[Character]
  60. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  61. Script 4a - AFK
  62. local Character = "whydopeopelfly HERE"
  63. game.Players[Character]Character.Parent = game.Lighting
  64. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  65. Script 4b - Un AFK
  66. local Character = "PUT whydopeopelfly"
  67. game.Players[Character]Character.Parent = workspace
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement