Advertisement
pitrioptixiop

Roblox | Baldi cloudy copter script

Aug 29th, 2018
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.17 KB | None | 0 0
  1. --made this quick
  2. wait(2)
  3. lp = owner
  4. char = lp.Character
  5. gc = char:GetChildren()
  6. for i=1, #gc do
  7. if gc[i].ClassName == "Part" then
  8. gc[i].Transparency = 1
  9. end
  10. if gc[i].ClassName == "Hat" or gc[i].ClassName == "Accessory" or gc[i].ClassName == "Shirt" or gc[i].ClassName == "Pants" or gc[i].ClassName == "ShirtGraphic" then
  11. gc[i]:Destroy()
  12. end
  13. end
  14. decalpart = Instance.new("Part",char)
  15. decalpart.Size = Vector3.new(0.5,5,8)
  16. decalpart.Anchored = true
  17. decalpart.CanCollide = false
  18. decalpart.Transparency = 1
  19. dleft = Instance.new("Decal",decalpart)
  20. dleft.Texture = "http://www.roblox.com/asset/?id=2239761836"
  21. dleft.Face = Enum.NormalId.Left
  22. dright = Instance.new("Decal",decalpart)
  23. dright.Texture = "http://www.roblox.com/asset/?id=2283211829"
  24. dright.Face = Enum.NormalId.Right
  25. char.Head:FindFirstChildOfClass("Decal"):Destroy()
  26. tool = Instance.new("Tool",lp.Backpack)
  27. tool.RequiresHandle = false
  28. tool.Name = "Go up"
  29. tool.Equipped:connect(function()
  30. char:FindFirstChildOfClass("Humanoid").HipHeight = 100
  31. end)
  32. tool.Unequipped:connect(function()
  33. char:FindFirstChildOfClass("Humanoid").HipHeight = 0
  34. end)
  35. while true do
  36. wait(0.01)
  37. decalpart.CFrame = char.Head.CFrame
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement