The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Fe Mouse Part script pastebin roblox
By Fe Mouse Part on 2024-09-22 08:00 am | Syntax: LUA | Views: 12



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. -- ROBLOX FE PART + MOUSE FE SCRIPT
  2. -- Made by Rolevote.
  3. -- EXECUTE THIS SCRIPT ONCE PER SERVER
  4. local player = game.Players.LocalPlayer.Character
  5. local mouse = game.Players.LocalPlayer:GetMouse()
  6. local key = game:GetService("UserInputService")
  7.  
  8. BodyAngularVelocity = true -- Want the Part/Handle to spin really fast Crazy!
  9. local keyyy = Enum.KeyCode.Q -- Key to run it on part
  10.  
  11.  
  12. local y = 5.7
  13. local y2 = 7.2
  14. local P = 1000000
  15. local V = Vector3.new(100000,100000,100000)
  16. local SBT = Instance.new("SelectionBox")
  17. SBT.Name = "SB"
  18. SBT.Parent = player.HumanoidRootPart
  19. SBT.Adornee = player.HumanoidRootPart
  20. SBT.Color3 = Color3.new(0,0,0)
  21.  
  22. while wait(.3) do
  23. key.InputBegan:Connect(function(k)
  24.  if k.KeyCode == keyyy then
  25.  local handle = mouse.Target
  26.  if handle.Anchored == false then
  27.  wait(.3)
  28.  handle.Position = handle.Position + Vector3.new(0,1,0)
  29.  local BP = Instance.new("BodyPosition")
  30.  BP.Name = "BP"
  31.  BP.Parent = handle
  32.  BP.P = P
  33.  BP.MaxForce = V
  34.  local SB = Instance.new("SelectionBox")
  35.  SB.Name = "SB"
  36.  SB.Parent = handle
  37.  SB.Adornee = handle
  38.  local colour = math.random(1,7)
  39.     if colour == 1 then
  40.  SB.Color3 = Color3.new(255,0,0)
  41.     end
  42.     if colour == 2 then
  43.  SB.Color3 = Color3.new(255,170,0)
  44.     end
  45.     if colour == 3 then
  46.  SB.Color3 = Color3.new(255,255,0)
  47.     end
  48.     if colour == 4 then
  49.  SB.Color3 = Color3.new(0,255,0)
  50.     end
  51.     if colour == 5 then
  52.  SB.Color3 = Color3.new(0,170,255)
  53.     end
  54.     if colour == 6 then
  55.  SB.Color3 = Color3.new(170,0,255)
  56.     end
  57.     if colour == 7 then
  58.  SB.Color3 = Color3.new(0,0,0)
  59.     end
  60.  player.Torso.Anchored = true
  61.  if BodyAngularVelocity == true then
  62.   local BAV = Instance.new("BodyAngularVelocity")
  63.   BAV.Name = "BAV""BP",true) then
  64.   handle.CanCollide = false
  65.   end
  66.   BP.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,y,0)
  67.      wait(.3)
  68.   if handle:FindFirstChild("BP",true) then
  69.      handle.CanCollide = false
  70.   end
  71.       BP.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,y2,0)
  72.    end
  73.   end
  74.     end
  75.  end)
  76. end



  • Recent Roblox Scripts