-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] -- Patikrinkime ar žaidimas užsikrovė local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local Mouse = LocalPlayer:GetMouse() -- Sukuriame GUI meniu local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "TornadoCarGui" ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 200, 0, 150) Frame.Position = UDim2.new(0, 50, 0, 50) Frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Frame.BorderSizePixel = 0 Frame.Active = true Frame.Draggable = true Frame.Parent = ScreenGui local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 35) Title.BackgroundColor3 = Color3.fromRGB(45, 45, 45) Title.TextColor3 = Color3.fromRGB(255, 255, 255)) Title.Text = "Tornado Car Menu" Title.TextSize = 16 Title.Font = Enum.Font.SourceSansBold Title.Parent = Frame local ToggleButton = Instance.new("TextButton") ToggleButton.Size = UDim2.new(0.8, 0, 0, 40) ToggleButton.Position = UDim2.new(0.1, 0, 0, 55) ToggleButton.BackgroundColor3 = Color3.fromRGB(0, 170, 255) ToggleButton.TextColor3 = Color3.fromRGB(255, 255, 255) ToggleButton.Text = "Įjungti taikymą (OFF)" ToggleButton.TextSize = 14 ToggleButton.Font = Enum.Font.SourceSansBold ToggleButton.Parent = Frame local active = false local selectedCar = nil ToggleButton.MouseButton1Click:Connect(function() active = not active if active then ToggleButton.Text = "Įjungti taikymą (ON)" ToggleButton.BackgroundColor3 = Color3.fromRGB(0, 255, 100) else ToggleButton.Text = "Įjungti taikymą (OFF)" ToggleButton.BackgroundColor3 = Color3.fromRGB(0, 170, 255) selectedCar = nil end end) -- Paspaudimo logika Mouse.Button1Down:Connect(function() if not active then return end local target = Mouse.Target if target and target.Parent then -- Bandome rasti mašinos pagrindinę dalį (Modelį su VehicleSeat arba Humanoid) local carModel = target.Parent if carModel:FindFirstChild("VehicleSeat") or carModel:IsA("Model") then selectedCar = carModel -- Sukuriame "tornado" efektą – pridedame greitį ir sukimą local rootPart = selectedCar.PrimaryPart or selectedCar:FindFirstChildWhichIsA("BasePart") if rootPart then -- Suteikiame mašinai didelį impulsą į viršų ir šoną rootPart.Velocity = Vector3.new(math.random(-50, 50), 150, math.random(-50, 50)) -- Sukimosi jėga (Angular Velocity) local bv = Instance.new("BodyAngularVelocity") bv.MaxTorque = Vector3.new(500000, 500000, 500000) bv.AngularVelocity = Vector3.new(math.random(-20, 20), 50, math.random(-20, 20)) bv.Parent = rootPart task.delay(1.5, function() if bv then bv:Destroy() end end) end end end end)