Advertisement
pastebinnerrrr

Invisible script v1.3

Dec 27th, 2024
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.81 KB | None | 0 0
  1. --[[
  2.  
  3. ██ ███ ██ ██ ██ ██ ███████ ██████ ██████ ██████ ███ ██ ███████
  4. ██ ████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████ ██ ██
  5. ██ ██ ██ ██ ██ ██ ██ ███████ ██ ██ ██████ ██ ██ ██ ██ ██ █████
  6. ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
  7. ██ ██ ████ ████ ██ ███████ ██████ ██ ██ ██████ ██ ████ ███████
  8.  
  9. SKY REANIMATE
  10.  
  11. ]]
  12. -- ╭---------------Colors----------------------------╮
  13. --[[ |]] local red = BrickColor.Red() --|
  14. --[[ |]] local black = BrickColor.Black() --|
  15. --[[ |]] local blue = BrickColor.Blue() --|
  16. --[[ |]] local Yeller = BrickColor.Yellow()--|
  17. --[[ |]] local white = BrickColor.White() --|
  18. -- ╰-------------------------------------------------╯
  19.  
  20. -- ╭---------------CONTROLS-------------------╮
  21. --[[ |]] local speed = 1 --|
  22. --[[ |]] local Outline = true --|
  23. --[[ |]] local Invis = true --|
  24. --[[ |]] local PartCheck = true --| -- KEEP ON TRUE
  25. --[[ |]] local DroneColor = red --| -- you can change tis
  26. --[[ |]]----------------------------------------|
  27. --[[ | Adjust Controls if u want | ]]
  28. -- ╰------------------------------------------╯
  29. local cam = game.Workspace.CurrentCamera
  30. local StarterGui = game:GetService("StarterGui")
  31. StarterGui:SetCore("SendNotification",{
  32. Title = "⚙️ Settings Applied ⚙️",
  33. Text = "Please wait...",
  34. Duration = 5
  35. })
  36. wait(5)
  37. StarterGui:SetCore("SendNotification",{
  38. Title = "Reanimating",
  39. Text = "Invisible drone",
  40. Duration = 5
  41. })
  42. wait(1)
  43. if PartCheck == true then
  44. local StarterGui = game:GetService("StarterGui")
  45. StarterGui:SetCore("SendNotification",{
  46. Title = "Checking for Left Over parts",
  47. Text = "Please wait",
  48. Duration = 5
  49. })
  50. wait(5)
  51.  
  52. local find = game.Workspace:FindFirstChild("InvisibleDrone")
  53. if find then
  54. game.Workspace.InvisibleDrone:Destroy()
  55. StarterGui:SetCore("SendNotification",{
  56. Title = "Parts Found!",
  57. Text = "Destroyed Cloned Parts ✅",
  58. Duration = 5
  59. })
  60. else
  61. StarterGui:SetCore("SendNotification",{
  62. Title = "Cloned Part Not found",
  63. Text = "Your Good btw this doesent matter | No Parts found ❌",
  64. Duration = 5
  65. })
  66. end
  67. end
  68. wait(1)
  69. local playa = game.Players.LocalPlayer
  70. local cha = playa.Character
  71. local Part0 = Instance.new("Part")
  72. Part0.Parent = game.Workspace
  73. Part0.CFrame = CFrame.new(0,99,0)
  74. Part0.Size = Vector3.new(2, 2, 1)
  75. Part0.BrickColor = DroneColor
  76. Part0.BottomSurface = Enum.SurfaceType.Smooth
  77. Part0.TopSurface = Enum.SurfaceType.Smooth
  78. game.Workspace.CurrentCamera.CameraSubject = Part0
  79. Part0.Anchored = true
  80. Part0.Name = "InvisibleDrone"
  81.  
  82. UserInput = game:GetService("UserInputService")
  83. local mouse = playa:GetMouse()
  84. local w = false
  85. local a = false
  86. local s = false
  87. local d = false
  88. mouse.KeyDown:Connect(function(key)
  89. if key == "w" then
  90. w = true
  91. end
  92. if key == "a" then
  93. a = true
  94. end
  95. if key == "s" then
  96. s = true
  97. end
  98. if key == "d" then
  99. d = true
  100. end
  101. end)
  102. mouse.KeyUp:Connect(function(key)
  103. if key == "w" then
  104. w = false
  105. end
  106. if key == "a" then
  107. a = false
  108. end
  109. if key == "s" then
  110. s = false
  111. end
  112. if key == "d" then
  113. d = false
  114. end
  115. end)
  116. game:GetService("RunService").Heartbeat:Connect(function()
  117. if w then
  118. Part0.Position = Part0.Position + workspace.CurrentCamera.CFrame.LookVector * speed
  119. end
  120. if a then
  121. Part0.Position = Part0.Position - workspace.CurrentCamera.CFrame.RightVector * speed
  122. end
  123. if s then
  124. Part0.Position = Part0.Position - workspace.CurrentCamera.CFrame.LookVector * speed
  125. end
  126. if d then
  127. Part0.Position = Part0.Position + workspace.CurrentCamera.CFrame.RightVector * speed
  128. end
  129. end)
  130.  
  131. local ScreenGui0 = Instance.new("ScreenGui")
  132. local TextButton1 = Instance.new("TextButton")
  133. local TextButton2 = Instance.new("TextButton")
  134. local TextButton3 = Instance.new("TextButton")
  135. local TextButton4 = Instance.new("TextButton")
  136. ScreenGui0.Parent = game.Players.LocalPlayer.PlayerGui
  137. TextButton1.Name = "w"
  138. TextButton1.Parent = ScreenGui0
  139. TextButton1.Position = UDim2.new(0.121266574, 0, 0.433840096, 0)
  140. TextButton1.Size = UDim2.new(0, 66, 0, 50)
  141. TextButton1.BackgroundColor = BrickColor.new("Really black")
  142. TextButton1.BackgroundColor3 = Color3.new(0, 0, 0)
  143. TextButton1.BorderColor = BrickColor.new("Really black")
  144. TextButton1.BorderColor3 = Color3.new(0, 0, 0)
  145. TextButton1.BorderSizePixel = 0
  146. TextButton1.Font = Enum.Font.SourceSans
  147. TextButton1.FontSize = Enum.FontSize.Size14
  148. TextButton1.Text = "W"
  149. TextButton1.TextColor = BrickColor.new("Institutional white")
  150. TextButton1.TextColor3 = Color3.new(1, 1, 1)
  151. TextButton1.TextSize = 14
  152. TextButton2.Name = "d"
  153. TextButton2.Parent = ScreenGui0
  154. TextButton2.Position = UDim2.new(0.222221553, 0, 0.650676787, 0)
  155. TextButton2.Size = UDim2.new(0, 66, 0, 50)
  156. TextButton2.BackgroundColor = BrickColor.new("Really black")
  157. TextButton2.BackgroundColor3 = Color3.new(0, 0, 0)
  158. TextButton2.BorderColor = BrickColor.new("Really black")
  159. TextButton2.BorderColor3 = Color3.new(0, 0, 0)
  160. TextButton2.BorderSizePixel = 0
  161. TextButton2.Font = Enum.Font.SourceSans
  162. TextButton2.FontSize = Enum.FontSize.Size14
  163. TextButton2.Text = "D"
  164. TextButton2.TextColor = BrickColor.new("Institutional white")
  165. TextButton2.TextColor3 = Color3.new(1, 1, 1)
  166. TextButton2.TextSize = 14
  167. TextButton3.Name = "S"
  168. TextButton3.Parent = ScreenGui0
  169. TextButton3.Position = UDim2.new(0.121266574, 0, 0.650676787, 0)
  170. TextButton3.Size = UDim2.new(0, 66, 0, 50)
  171. TextButton3.BackgroundColor = BrickColor.new("Really black")
  172. TextButton3.BackgroundColor3 = Color3.new(0, 0, 0)
  173. TextButton3.BorderColor = BrickColor.new("Really black")
  174. TextButton3.BorderColor3 = Color3.new(0, 0, 0)
  175. TextButton3.BorderSizePixel = 0
  176. TextButton3.Font = Enum.Font.SourceSans
  177. TextButton3.FontSize = Enum.FontSize.Size14
  178. TextButton3.Text = "S"
  179. TextButton3.TextColor = BrickColor.new("Institutional white")
  180. TextButton3.TextColor3 = Color3.new(1, 1, 1)
  181. TextButton3.TextSize = 14
  182. TextButton4.Name = "a"
  183. TextButton4.Parent = ScreenGui0
  184. TextButton4.Position = UDim2.new(0.0216758493, 0, 0.650676787, 0)
  185. TextButton4.Size = UDim2.new(0, 66, 0, 50)
  186. TextButton4.BackgroundColor = BrickColor.new("Really black")
  187. TextButton4.BackgroundColor3 = Color3.new(0, 0, 0)
  188. TextButton4.BorderColor = BrickColor.new("Really black")
  189. TextButton4.BorderColor3 = Color3.new(0, 0, 0)
  190. TextButton4.BorderSizePixel = 0
  191. TextButton4.Font = Enum.Font.SourceSans
  192. TextButton4.FontSize = Enum.FontSize.Size14
  193. TextButton4.Text = "A"
  194. TextButton4.TextColor = BrickColor.new("Institutional white")
  195. TextButton4.TextColor3 = Color3.new(1, 1, 1)
  196. TextButton4.TextSize = 14
  197. ScreenGui0.ResetOnSpawn = true
  198. ScreenGui0.Enabled = true
  199. local keyw = false
  200. local keya = false
  201. local keys = false
  202. local keyd = false
  203. TextButton1.MouseButton1Down:Connect(function()
  204. keyw = true
  205. end)
  206. TextButton2.MouseButton1Down:Connect(function()
  207. keyd = true
  208. end)
  209. TextButton3.MouseButton1Down:Connect(function()
  210. keys = true
  211. end)
  212. TextButton4.MouseButton1Down:Connect(function()
  213. keya = true
  214. end)
  215.  
  216.  
  217. TextButton1.MouseButton1Up:Connect(function()
  218. keyw = false
  219. end)
  220. TextButton2.MouseButton1Up:Connect(function()
  221. keyd = false
  222. end)
  223. TextButton3.MouseButton1Up:Connect(function()
  224. keys = false
  225. end)
  226. TextButton4.MouseButton1Up:Connect(function()
  227. keya = false
  228. end)
  229.  
  230. game:GetService("RunService").Heartbeat:Connect(function()
  231. if keyw then
  232. Part0.Position = Part0.Position + workspace.CurrentCamera.CFrame.LookVector * speed
  233. end
  234. if keya then
  235. Part0.Position = Part0.Position - workspace.CurrentCamera.CFrame.RightVector * speed
  236. end
  237. if keys then
  238. Part0.Position = Part0.Position - workspace.CurrentCamera.CFrame.LookVector * speed
  239. end
  240. if keyd then
  241. Part0.Position = Part0.Position + workspace.CurrentCamera.CFrame.RightVector * speed
  242. end
  243. end)
  244.  
  245. if Outline == true then
  246. local highlighter = Instance.new("Highlight")
  247. highlighter.Parent = Part0
  248. highlighter.Adornee = Part0
  249. highlighter.FillColor = Color3.fromRGB(255, 255, 255)
  250. highlighter.FillTransparency = 0.5
  251. highlighter.OutlineTransparency = 0
  252. end
  253. if Invis == true then
  254. while true do
  255. wait(1)
  256. cha.Head.CFrame = CFrame.new(0,999,999)
  257. end
  258. end
  259.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement